context-forge
Version:
AI orchestration platform with autonomous teams, enhancement planning, migration tools, 25+ slash commands, checkpoints & hooks. Multi-IDE: Claude, Cursor, Windsurf, Cline, Copilot
106 lines (70 loc) • 1.58 kB
Markdown
# Validation Report - {{projectName}}
Generated: {{timestamp}}
## Summary
{{#if overallSuccess}}
✅ **All validation checks passed!**
{{else}}
❌ **Some validation checks failed.**
{{/if}}
- Total Commands: {{summary.total}}
- Passed: {{summary.passed}}
- Failed: {{summary.failed}}
{{#if summary.skipped}}
- Skipped: {{summary.skipped}}
{{/if}}
## Detailed Results
{{#each results}}
### {{level}}
{{#if success}}
✅ **PASSED** ({{duration}}ms)
{{else}}
❌ **FAILED** ({{duration}}ms)
{{/if}}
**Command:** `{{command}}`
{{#if output}}
<details>
<summary>Output</summary>
```
{{output}}
```
</details>
{{/if}}
{{#if error}}
<details>
<summary>Error Details</summary>
```
{{error}}
```
</details>
{{/if}}
{{/each}}
## Action Items
{{#unless overallSuccess}}
### Failed Checks
Please address the following issues:
{{#each results}}
{{#unless success}}
- **{{level}}**: Fix errors from `{{command}}`
{{/unless}}
{{/each}}
{{/unless}}
### Next Steps
1. {{#if overallSuccess}}Continue with deployment or next feature{{else}}Fix all failing checks{{/if}}
2. Run validation again after fixes
3. Ensure all tests have adequate coverage
4. Review security scan results if applicable
## Validation Commands Reference
You can run individual validation levels:
```bash
# Syntax checking
context-forge validate --levels syntax
# Linting
context-forge validate --levels lint
# Tests
context-forge validate --levels tests
# Full validation
context-forge validate --all
```
_This report was generated by Context Forge validation system._