@accelerationguy/accel 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +19 -0
- package/LICENSE +33 -0
- package/README.md +275 -0
- package/bin/install.js +661 -0
- package/docs/getting-started.md +164 -0
- package/docs/module-guide.md +139 -0
- package/modules/drive/LICENSE +21 -0
- package/modules/drive/PAUL-VS-GSD.md +171 -0
- package/modules/drive/README.md +555 -0
- package/modules/drive/assets/terminal.svg +67 -0
- package/modules/drive/bin/install.js +210 -0
- package/modules/drive/integration.js +76 -0
- package/modules/drive/package.json +38 -0
- package/modules/drive/src/commands/add-phase.md +36 -0
- package/modules/drive/src/commands/apply.md +83 -0
- package/modules/drive/src/commands/assumptions.md +37 -0
- package/modules/drive/src/commands/audit.md +57 -0
- package/modules/drive/src/commands/complete-milestone.md +36 -0
- package/modules/drive/src/commands/config.md +175 -0
- package/modules/drive/src/commands/consider-issues.md +41 -0
- package/modules/drive/src/commands/discover.md +48 -0
- package/modules/drive/src/commands/discuss-milestone.md +33 -0
- package/modules/drive/src/commands/discuss.md +34 -0
- package/modules/drive/src/commands/flows.md +73 -0
- package/modules/drive/src/commands/handoff.md +201 -0
- package/modules/drive/src/commands/help.md +525 -0
- package/modules/drive/src/commands/init.md +54 -0
- package/modules/drive/src/commands/map-codebase.md +34 -0
- package/modules/drive/src/commands/milestone.md +34 -0
- package/modules/drive/src/commands/pause.md +44 -0
- package/modules/drive/src/commands/plan-fix.md +216 -0
- package/modules/drive/src/commands/plan.md +36 -0
- package/modules/drive/src/commands/progress.md +138 -0
- package/modules/drive/src/commands/register.md +29 -0
- package/modules/drive/src/commands/remove-phase.md +37 -0
- package/modules/drive/src/commands/research-phase.md +209 -0
- package/modules/drive/src/commands/research.md +47 -0
- package/modules/drive/src/commands/resume.md +49 -0
- package/modules/drive/src/commands/status.md +78 -0
- package/modules/drive/src/commands/unify.md +87 -0
- package/modules/drive/src/commands/verify.md +60 -0
- package/modules/drive/src/references/checkpoints.md +234 -0
- package/modules/drive/src/references/context-management.md +219 -0
- package/modules/drive/src/references/git-strategy.md +206 -0
- package/modules/drive/src/references/loop-phases.md +254 -0
- package/modules/drive/src/references/plan-format.md +263 -0
- package/modules/drive/src/references/quality-principles.md +152 -0
- package/modules/drive/src/references/research-quality-control.md +247 -0
- package/modules/drive/src/references/sonarqube-integration.md +244 -0
- package/modules/drive/src/references/specialized-workflow-integration.md +186 -0
- package/modules/drive/src/references/subagent-criteria.md +179 -0
- package/modules/drive/src/references/tdd.md +219 -0
- package/modules/drive/src/references/work-units.md +161 -0
- package/modules/drive/src/rules/commands.md +108 -0
- package/modules/drive/src/rules/references.md +107 -0
- package/modules/drive/src/rules/style.md +123 -0
- package/modules/drive/src/rules/templates.md +51 -0
- package/modules/drive/src/rules/workflows.md +133 -0
- package/modules/drive/src/templates/CONTEXT.md +88 -0
- package/modules/drive/src/templates/DEBUG.md +164 -0
- package/modules/drive/src/templates/DISCOVERY.md +148 -0
- package/modules/drive/src/templates/HANDOFF.md +77 -0
- package/modules/drive/src/templates/ISSUES.md +93 -0
- package/modules/drive/src/templates/MILESTONES.md +167 -0
- package/modules/drive/src/templates/PLAN.md +328 -0
- package/modules/drive/src/templates/PROJECT.md +219 -0
- package/modules/drive/src/templates/RESEARCH.md +130 -0
- package/modules/drive/src/templates/ROADMAP.md +328 -0
- package/modules/drive/src/templates/SPECIAL-FLOWS.md +70 -0
- package/modules/drive/src/templates/STATE.md +210 -0
- package/modules/drive/src/templates/SUMMARY.md +221 -0
- package/modules/drive/src/templates/UAT-ISSUES.md +139 -0
- package/modules/drive/src/templates/codebase/architecture.md +259 -0
- package/modules/drive/src/templates/codebase/concerns.md +329 -0
- package/modules/drive/src/templates/codebase/conventions.md +311 -0
- package/modules/drive/src/templates/codebase/integrations.md +284 -0
- package/modules/drive/src/templates/codebase/stack.md +190 -0
- package/modules/drive/src/templates/codebase/structure.md +287 -0
- package/modules/drive/src/templates/codebase/testing.md +484 -0
- package/modules/drive/src/templates/config.md +181 -0
- package/modules/drive/src/templates/milestone-archive.md +236 -0
- package/modules/drive/src/templates/milestone-context.md +190 -0
- package/modules/drive/src/templates/paul-json.md +147 -0
- package/modules/drive/src/vector-config/PAUL +26 -0
- package/modules/drive/src/vector-config/PAUL.manifest +11 -0
- package/modules/drive/src/workflows/apply-phase.md +393 -0
- package/modules/drive/src/workflows/audit-plan.md +344 -0
- package/modules/drive/src/workflows/complete-milestone.md +479 -0
- package/modules/drive/src/workflows/configure-special-flows.md +283 -0
- package/modules/drive/src/workflows/consider-issues.md +172 -0
- package/modules/drive/src/workflows/create-milestone.md +268 -0
- package/modules/drive/src/workflows/debug.md +292 -0
- package/modules/drive/src/workflows/discovery.md +187 -0
- package/modules/drive/src/workflows/discuss-milestone.md +245 -0
- package/modules/drive/src/workflows/discuss-phase.md +231 -0
- package/modules/drive/src/workflows/init-project.md +698 -0
- package/modules/drive/src/workflows/map-codebase.md +459 -0
- package/modules/drive/src/workflows/pause-work.md +259 -0
- package/modules/drive/src/workflows/phase-assumptions.md +181 -0
- package/modules/drive/src/workflows/plan-phase.md +385 -0
- package/modules/drive/src/workflows/quality-gate.md +263 -0
- package/modules/drive/src/workflows/register-manifest.md +107 -0
- package/modules/drive/src/workflows/research.md +241 -0
- package/modules/drive/src/workflows/resume-project.md +200 -0
- package/modules/drive/src/workflows/roadmap-management.md +334 -0
- package/modules/drive/src/workflows/transition-phase.md +368 -0
- package/modules/drive/src/workflows/unify-phase.md +290 -0
- package/modules/drive/src/workflows/verify-work.md +241 -0
- package/modules/forge/README.md +281 -0
- package/modules/forge/bin/install.js +200 -0
- package/modules/forge/package.json +32 -0
- package/modules/forge/skillsmith/rules/checklists-rules.md +42 -0
- package/modules/forge/skillsmith/rules/context-rules.md +43 -0
- package/modules/forge/skillsmith/rules/entry-point-rules.md +44 -0
- package/modules/forge/skillsmith/rules/frameworks-rules.md +43 -0
- package/modules/forge/skillsmith/rules/tasks-rules.md +52 -0
- package/modules/forge/skillsmith/rules/templates-rules.md +43 -0
- package/modules/forge/skillsmith/skillsmith.md +82 -0
- package/modules/forge/skillsmith/tasks/audit.md +277 -0
- package/modules/forge/skillsmith/tasks/discover.md +145 -0
- package/modules/forge/skillsmith/tasks/distill.md +276 -0
- package/modules/forge/skillsmith/tasks/scaffold.md +349 -0
- package/modules/forge/specs/checklists.md +193 -0
- package/modules/forge/specs/context.md +223 -0
- package/modules/forge/specs/entry-point.md +320 -0
- package/modules/forge/specs/frameworks.md +228 -0
- package/modules/forge/specs/rules.md +245 -0
- package/modules/forge/specs/tasks.md +344 -0
- package/modules/forge/specs/templates.md +335 -0
- package/modules/forge/terminal.svg +70 -0
- package/modules/ignition/README.md +245 -0
- package/modules/ignition/bin/install.js +184 -0
- package/modules/ignition/checklists/planning-quality.md +55 -0
- package/modules/ignition/data/application/config.md +21 -0
- package/modules/ignition/data/application/guide.md +51 -0
- package/modules/ignition/data/application/skill-loadout.md +11 -0
- package/modules/ignition/data/campaign/config.md +18 -0
- package/modules/ignition/data/campaign/guide.md +36 -0
- package/modules/ignition/data/campaign/skill-loadout.md +10 -0
- package/modules/ignition/data/client/config.md +18 -0
- package/modules/ignition/data/client/guide.md +36 -0
- package/modules/ignition/data/client/skill-loadout.md +11 -0
- package/modules/ignition/data/utility/config.md +18 -0
- package/modules/ignition/data/utility/guide.md +31 -0
- package/modules/ignition/data/utility/skill-loadout.md +8 -0
- package/modules/ignition/data/workflow/config.md +19 -0
- package/modules/ignition/data/workflow/guide.md +41 -0
- package/modules/ignition/data/workflow/skill-loadout.md +10 -0
- package/modules/ignition/integration.js +54 -0
- package/modules/ignition/package.json +35 -0
- package/modules/ignition/seed.md +81 -0
- package/modules/ignition/tasks/add-type.md +164 -0
- package/modules/ignition/tasks/graduate.md +182 -0
- package/modules/ignition/tasks/ideate.md +221 -0
- package/modules/ignition/tasks/launch.md +137 -0
- package/modules/ignition/tasks/status.md +71 -0
- package/modules/ignition/templates/planning-application.md +193 -0
- package/modules/ignition/templates/planning-campaign.md +138 -0
- package/modules/ignition/templates/planning-client.md +149 -0
- package/modules/ignition/templates/planning-utility.md +112 -0
- package/modules/ignition/templates/planning-workflow.md +125 -0
- package/modules/ignition/terminal.svg +74 -0
- package/modules/mission-control/CONTEXT-CONTINUITY-SPEC.md +293 -0
- package/modules/mission-control/CONTEXT-ENGINEERING-GUIDE.md +282 -0
- package/modules/mission-control/README.md +91 -0
- package/modules/mission-control/assets/terminal.svg +80 -0
- package/modules/mission-control/examples/entities.example.json +133 -0
- package/modules/mission-control/examples/projects.example.json +318 -0
- package/modules/mission-control/examples/state.example.json +183 -0
- package/modules/mission-control/examples/vector.example.json +245 -0
- package/modules/mission-control/mission-control/checklists/install-verification.md +46 -0
- package/modules/mission-control/mission-control/frameworks/framework-registry.md +83 -0
- package/modules/mission-control/mission-control/mission-control.md +83 -0
- package/modules/mission-control/mission-control/tasks/insights.md +73 -0
- package/modules/mission-control/mission-control/tasks/install.md +194 -0
- package/modules/mission-control/mission-control/tasks/status.md +125 -0
- package/modules/mission-control/schemas/entities.schema.json +89 -0
- package/modules/mission-control/schemas/projects.schema.json +221 -0
- package/modules/mission-control/schemas/state.schema.json +108 -0
- package/modules/mission-control/schemas/vector.schema.json +200 -0
- package/modules/momentum/README.md +678 -0
- package/modules/momentum/bin/install.js +563 -0
- package/modules/momentum/integration.js +131 -0
- package/modules/momentum/package.json +42 -0
- package/modules/momentum/schemas/entities.schema.json +89 -0
- package/modules/momentum/schemas/projects.schema.json +221 -0
- package/modules/momentum/schemas/state.schema.json +108 -0
- package/modules/momentum/src/commands/audit-claude-md.md +31 -0
- package/modules/momentum/src/commands/audit.md +33 -0
- package/modules/momentum/src/commands/groom.md +35 -0
- package/modules/momentum/src/commands/history.md +27 -0
- package/modules/momentum/src/commands/pulse.md +33 -0
- package/modules/momentum/src/commands/scaffold.md +33 -0
- package/modules/momentum/src/commands/status.md +28 -0
- package/modules/momentum/src/commands/surface-convert.md +35 -0
- package/modules/momentum/src/commands/surface-create.md +34 -0
- package/modules/momentum/src/commands/surface-list.md +27 -0
- package/modules/momentum/src/commands/vector-hygiene.md +33 -0
- package/modules/momentum/src/framework/context/momentum-principles.md +71 -0
- package/modules/momentum/src/framework/frameworks/audit-strategies.md +53 -0
- package/modules/momentum/src/framework/frameworks/satellite-registration.md +44 -0
- package/modules/momentum/src/framework/tasks/audit-claude-md.md +68 -0
- package/modules/momentum/src/framework/tasks/audit.md +64 -0
- package/modules/momentum/src/framework/tasks/groom.md +164 -0
- package/modules/momentum/src/framework/tasks/history.md +34 -0
- package/modules/momentum/src/framework/tasks/pulse.md +83 -0
- package/modules/momentum/src/framework/tasks/scaffold.md +202 -0
- package/modules/momentum/src/framework/tasks/status.md +35 -0
- package/modules/momentum/src/framework/tasks/surface-convert.md +143 -0
- package/modules/momentum/src/framework/tasks/surface-create.md +184 -0
- package/modules/momentum/src/framework/tasks/surface-list.md +42 -0
- package/modules/momentum/src/framework/tasks/vector-hygiene.md +160 -0
- package/modules/momentum/src/framework/templates/workspace-json.md +96 -0
- package/modules/momentum/src/hooks/_template.py +129 -0
- package/modules/momentum/src/hooks/active-hook.py +178 -0
- package/modules/momentum/src/hooks/backlog-hook.py +115 -0
- package/modules/momentum/src/hooks/mission-control-insights.py +169 -0
- package/modules/momentum/src/hooks/momentum-pulse-check.py +351 -0
- package/modules/momentum/src/hooks/operator.py +53 -0
- package/modules/momentum/src/hooks/psmm-injector.py +67 -0
- package/modules/momentum/src/hooks/satellite-detection.py +248 -0
- package/modules/momentum/src/packages/momentum-mcp/index.js +119 -0
- package/modules/momentum/src/packages/momentum-mcp/package.json +10 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/entities.js +226 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/operator.js +106 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/projects.js +322 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/psmm.js +206 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/state.js +199 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/surfaces.js +404 -0
- package/modules/momentum/src/skill/momentum.md +111 -0
- package/modules/momentum/src/tasks/groom.md +164 -0
- package/modules/momentum/src/templates/operator.json +66 -0
- package/modules/momentum/src/templates/workspace.json +111 -0
- package/modules/momentum/terminal.svg +77 -0
- package/modules/radar/README.md +1552 -0
- package/modules/radar/commands/audit.md +233 -0
- package/modules/radar/commands/guardrails.md +194 -0
- package/modules/radar/commands/init.md +207 -0
- package/modules/radar/commands/playbook.md +176 -0
- package/modules/radar/commands/remediate.md +156 -0
- package/modules/radar/commands/report.md +172 -0
- package/modules/radar/commands/resume.md +176 -0
- package/modules/radar/commands/status.md +148 -0
- package/modules/radar/commands/transform.md +205 -0
- package/modules/radar/commands/validate.md +177 -0
- package/modules/radar/docs/ARCHITECTURE.md +336 -0
- package/modules/radar/docs/GETTING-STARTED.md +287 -0
- package/modules/radar/docs/standards/agents.md +197 -0
- package/modules/radar/docs/standards/commands.md +250 -0
- package/modules/radar/docs/standards/domains.md +191 -0
- package/modules/radar/docs/standards/personas.md +211 -0
- package/modules/radar/docs/standards/rules.md +218 -0
- package/modules/radar/docs/standards/runtime.md +445 -0
- package/modules/radar/docs/standards/schemas.md +269 -0
- package/modules/radar/docs/standards/tools.md +273 -0
- package/modules/radar/docs/standards/workflows.md +254 -0
- package/modules/radar/docs/terminal.svg +72 -0
- package/modules/radar/docs/validation/convention-compliance-report.md +183 -0
- package/modules/radar/docs/validation/cross-reference-report.md +195 -0
- package/modules/radar/docs/validation/validation-summary.md +118 -0
- package/modules/radar/docs/validation/version-manifest.yaml +363 -0
- package/modules/radar/install.sh +711 -0
- package/modules/radar/integration.js +53 -0
- package/modules/radar/src/core/agents/architect.md +25 -0
- package/modules/radar/src/core/agents/compliance-officer.md +25 -0
- package/modules/radar/src/core/agents/data-engineer.md +25 -0
- package/modules/radar/src/core/agents/devils-advocate.md +22 -0
- package/modules/radar/src/core/agents/performance-engineer.md +25 -0
- package/modules/radar/src/core/agents/principal-engineer.md +23 -0
- package/modules/radar/src/core/agents/reality-gap-analyst.md +22 -0
- package/modules/radar/src/core/agents/security-engineer.md +25 -0
- package/modules/radar/src/core/agents/senior-app-engineer.md +25 -0
- package/modules/radar/src/core/agents/sre.md +25 -0
- package/modules/radar/src/core/agents/staff-engineer.md +23 -0
- package/modules/radar/src/core/agents/test-engineer.md +25 -0
- package/modules/radar/src/core/personas/architect.md +111 -0
- package/modules/radar/src/core/personas/compliance-officer.md +104 -0
- package/modules/radar/src/core/personas/data-engineer.md +113 -0
- package/modules/radar/src/core/personas/devils-advocate.md +105 -0
- package/modules/radar/src/core/personas/performance-engineer.md +119 -0
- package/modules/radar/src/core/personas/principal-engineer.md +119 -0
- package/modules/radar/src/core/personas/reality-gap-analyst.md +111 -0
- package/modules/radar/src/core/personas/security-engineer.md +108 -0
- package/modules/radar/src/core/personas/senior-app-engineer.md +111 -0
- package/modules/radar/src/core/personas/sre.md +117 -0
- package/modules/radar/src/core/personas/staff-engineer.md +109 -0
- package/modules/radar/src/core/personas/test-engineer.md +109 -0
- package/modules/radar/src/core/workflows/disagreement-resolution.md +183 -0
- package/modules/radar/src/core/workflows/phase-0-context.md +148 -0
- package/modules/radar/src/core/workflows/phase-1-reconnaissance.md +169 -0
- package/modules/radar/src/core/workflows/phase-2-domain-audits.md +190 -0
- package/modules/radar/src/core/workflows/phase-3-cross-domain.md +177 -0
- package/modules/radar/src/core/workflows/phase-4-adversarial-review.md +165 -0
- package/modules/radar/src/core/workflows/phase-5-report.md +189 -0
- package/modules/radar/src/core/workflows/phase-checkpoint.md +222 -0
- package/modules/radar/src/core/workflows/session-handoff.md +152 -0
- package/modules/radar/src/domains/00-context.md +201 -0
- package/modules/radar/src/domains/01-architecture.md +248 -0
- package/modules/radar/src/domains/02-data.md +224 -0
- package/modules/radar/src/domains/03-correctness.md +230 -0
- package/modules/radar/src/domains/04-security.md +274 -0
- package/modules/radar/src/domains/05-compliance.md +228 -0
- package/modules/radar/src/domains/06-testing.md +228 -0
- package/modules/radar/src/domains/07-reliability.md +246 -0
- package/modules/radar/src/domains/08-performance.md +247 -0
- package/modules/radar/src/domains/09-maintainability.md +271 -0
- package/modules/radar/src/domains/10-operability.md +250 -0
- package/modules/radar/src/domains/11-change-risk.md +246 -0
- package/modules/radar/src/domains/12-team-risk.md +221 -0
- package/modules/radar/src/domains/13-risk-synthesis.md +202 -0
- package/modules/radar/src/rules/agent-boundaries.md +78 -0
- package/modules/radar/src/rules/disagreement-protocol.md +76 -0
- package/modules/radar/src/rules/epistemic-hygiene.md +78 -0
- package/modules/radar/src/schemas/confidence.md +185 -0
- package/modules/radar/src/schemas/disagreement.md +238 -0
- package/modules/radar/src/schemas/finding.md +287 -0
- package/modules/radar/src/schemas/report-section.md +150 -0
- package/modules/radar/src/schemas/signal.md +108 -0
- package/modules/radar/src/tools/checkov.md +463 -0
- package/modules/radar/src/tools/git-history.md +581 -0
- package/modules/radar/src/tools/gitleaks.md +447 -0
- package/modules/radar/src/tools/grype.md +611 -0
- package/modules/radar/src/tools/semgrep.md +378 -0
- package/modules/radar/src/tools/sonarqube.md +550 -0
- package/modules/radar/src/tools/syft.md +539 -0
- package/modules/radar/src/tools/trivy.md +439 -0
- package/modules/radar/src/transform/agents/change-risk-modeler.md +24 -0
- package/modules/radar/src/transform/agents/execution-validator.md +24 -0
- package/modules/radar/src/transform/agents/guardrail-generator.md +24 -0
- package/modules/radar/src/transform/agents/pedagogy-agent.md +24 -0
- package/modules/radar/src/transform/agents/remediation-architect.md +24 -0
- package/modules/radar/src/transform/personas/change-risk-modeler.md +95 -0
- package/modules/radar/src/transform/personas/execution-validator.md +95 -0
- package/modules/radar/src/transform/personas/guardrail-generator.md +103 -0
- package/modules/radar/src/transform/personas/pedagogy-agent.md +105 -0
- package/modules/radar/src/transform/personas/remediation-architect.md +95 -0
- package/modules/radar/src/transform/rules/change-risk-rules.md +87 -0
- package/modules/radar/src/transform/rules/safety-governance.md +87 -0
- package/modules/radar/src/transform/schemas/change-risk.md +139 -0
- package/modules/radar/src/transform/schemas/intervention-level.md +207 -0
- package/modules/radar/src/transform/schemas/playbook.md +205 -0
- package/modules/radar/src/transform/schemas/verification-plan.md +134 -0
- package/modules/radar/src/transform/workflows/phase-6-remediation.md +148 -0
- package/modules/radar/src/transform/workflows/phase-7-risk-validation.md +161 -0
- package/modules/radar/src/transform/workflows/phase-8-execution-planning.md +159 -0
- package/modules/radar/src/transform/workflows/transform-safety.md +158 -0
- package/modules/vector/.vector-template/sessions/.gitkeep +0 -0
- package/modules/vector/.vector-template/vector.json +72 -0
- package/modules/vector/AUDIT-CLAUDEMD.md +154 -0
- package/modules/vector/INSTALL.md +185 -0
- package/modules/vector/LICENSE +21 -0
- package/modules/vector/README.md +409 -0
- package/modules/vector/VECTOR-BLOCK.md +57 -0
- package/modules/vector/assets/terminal.svg +68 -0
- package/modules/vector/bin/install.js +455 -0
- package/modules/vector/bin/migrate-v1-to-v2.sh +492 -0
- package/modules/vector/commands/help.md +46 -0
- package/modules/vector/hooks/vector-hook.py +775 -0
- package/modules/vector/mcp/index.js +118 -0
- package/modules/vector/mcp/package.json +10 -0
- package/modules/vector/mcp/tools/decisions.js +269 -0
- package/modules/vector/mcp/tools/domains.js +361 -0
- package/modules/vector/mcp/tools/staging.js +252 -0
- package/modules/vector/mcp/tools/vector-json.js +647 -0
- package/modules/vector/package.json +38 -0
- package/modules/vector/schemas/vector.schema.json +237 -0
- package/package.json +39 -0
- package/shared/branding/branding.js +70 -0
- package/shared/config/defaults.json +59 -0
- package/shared/events/README.md +175 -0
- package/shared/events/event-bus.js +134 -0
- package/shared/events/event_bus.py +255 -0
- package/shared/events/integrations.js +161 -0
- package/shared/events/schemas/audit-complete.schema.json +21 -0
- package/shared/events/schemas/phase-progress.schema.json +23 -0
- package/shared/events/schemas/plan-created.schema.json +21 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
# Cross-Reference Integrity Report
|
|
2
|
+
|
|
3
|
+
**Date:** 2026-02-19
|
|
4
|
+
**Scope:** All 90 Radar spec files across 8 component types
|
|
5
|
+
**Validator:** Phase 8 End-to-End Validation (08-01)
|
|
6
|
+
|
|
7
|
+
## Executive Summary
|
|
8
|
+
|
|
9
|
+
- **Total references checked:** 358
|
|
10
|
+
- **Valid references:** 352
|
|
11
|
+
- **Broken references:** 6
|
|
12
|
+
- **Root causes:** 3 distinct issues
|
|
13
|
+
|
|
14
|
+
All broken references are minor ID/path mismatches — no missing files or structural gaps.
|
|
15
|
+
|
|
16
|
+
## Results by Category
|
|
17
|
+
|
|
18
|
+
### 1. Agent → Persona References (17 checked)
|
|
19
|
+
|
|
20
|
+
| Agent | Persona Reference | Status |
|
|
21
|
+
|-------|------------------|--------|
|
|
22
|
+
| architect | architect | PASS |
|
|
23
|
+
| compliance-officer | compliance-officer | PASS |
|
|
24
|
+
| data-engineer | data-engineer | PASS |
|
|
25
|
+
| devils-advocate | devils-advocate | PASS |
|
|
26
|
+
| performance-engineer | performance-engineer | PASS |
|
|
27
|
+
| principal-engineer | principal-engineer | PASS |
|
|
28
|
+
| reality-gap-analyst | reality-gap-analyst | PASS |
|
|
29
|
+
| security-engineer | security-engineer | PASS |
|
|
30
|
+
| senior-app-engineer | senior-app-engineer | PASS |
|
|
31
|
+
| sre | sre | PASS |
|
|
32
|
+
| staff-engineer | staff-engineer | PASS |
|
|
33
|
+
| test-engineer | test-engineer | PASS |
|
|
34
|
+
| change-risk-modeler | change-risk-modeler | PASS |
|
|
35
|
+
| execution-validator | execution-validator | PASS |
|
|
36
|
+
| guardrail-generator | guardrail-generator | PASS |
|
|
37
|
+
| pedagogy-agent | pedagogy-agent | PASS |
|
|
38
|
+
| remediation-architect | remediation-architect | PASS |
|
|
39
|
+
|
|
40
|
+
**Result: 17/17 PASS**
|
|
41
|
+
|
|
42
|
+
### 2. Agent → Domain References (30 checked)
|
|
43
|
+
|
|
44
|
+
All domain number references (00-13) across 17 agents resolve to existing domain files.
|
|
45
|
+
|
|
46
|
+
**Result: 30/30 PASS**
|
|
47
|
+
|
|
48
|
+
### 3. Agent → Tool References (44 checked)
|
|
49
|
+
|
|
50
|
+
All tool IDs (sonarqube, semgrep, trivy, gitleaks, checkov, syft, grype, git-history) resolve to existing files.
|
|
51
|
+
|
|
52
|
+
**Result: 44/44 PASS**
|
|
53
|
+
|
|
54
|
+
### 4. Agent → Schema References (61 checked)
|
|
55
|
+
|
|
56
|
+
All schema references (finding, disagreement, confidence, signal, report-section, change-risk, intervention-level, playbook, verification-plan) resolve to existing files in src/schemas/ or src/transform/schemas/.
|
|
57
|
+
|
|
58
|
+
**Result: 61/61 PASS**
|
|
59
|
+
|
|
60
|
+
### 5. Agent → Rule References (46 checked)
|
|
61
|
+
|
|
62
|
+
All rule references (epistemic-hygiene, disagreement-protocol, agent-boundaries, safety-governance, change-risk-rules) resolve to existing files.
|
|
63
|
+
|
|
64
|
+
**Result: 46/46 PASS**
|
|
65
|
+
|
|
66
|
+
### 6. Workflow → Agent/Workflow References (33 checked)
|
|
67
|
+
|
|
68
|
+
| Workflow | Status | Notes |
|
|
69
|
+
|----------|--------|-------|
|
|
70
|
+
| phase-0-context.md | PASS | |
|
|
71
|
+
| phase-1-reconnaissance.md | PASS | Tool-only (no agents) |
|
|
72
|
+
| phase-2-domain-audits.md | PASS | All 8 domain agents verified |
|
|
73
|
+
| phase-3-cross-domain.md | PASS | |
|
|
74
|
+
| phase-4-adversarial-review.md | PASS | |
|
|
75
|
+
| phase-5-report.md | PASS | |
|
|
76
|
+
| session-handoff.md | PASS | Dynamic references |
|
|
77
|
+
| disagreement-resolution.md | PASS | |
|
|
78
|
+
| phase-6-remediation.md | **FAIL** | Wrong report path |
|
|
79
|
+
| phase-7-risk-validation.md | **FAIL** | Wrong schema path |
|
|
80
|
+
| phase-8-execution-planning.md | PASS | |
|
|
81
|
+
| transform-safety.md | **FAIL** | Wrong schema path |
|
|
82
|
+
|
|
83
|
+
**Result: 30/33 PASS, 3 FAIL**
|
|
84
|
+
|
|
85
|
+
### 7. Command → Workflow References (24 checked)
|
|
86
|
+
|
|
87
|
+
All 8 commands reference existing workflow files in their execution_context sections.
|
|
88
|
+
|
|
89
|
+
**Result: 24/24 PASS**
|
|
90
|
+
|
|
91
|
+
### 8. Domain → Tool Affinities (41 checked)
|
|
92
|
+
|
|
93
|
+
| Domain | Status | Notes |
|
|
94
|
+
|--------|--------|-------|
|
|
95
|
+
| 00-context | PASS | |
|
|
96
|
+
| 01-architecture | PASS | |
|
|
97
|
+
| 02-data | PASS | |
|
|
98
|
+
| 03-correctness | PASS | |
|
|
99
|
+
| 04-security | PASS | Syft+Grype listed as combined (both files exist) |
|
|
100
|
+
| 05-compliance | PASS | |
|
|
101
|
+
| 06-testing | PASS | |
|
|
102
|
+
| 07-reliability | PASS | |
|
|
103
|
+
| 08-performance | PASS | |
|
|
104
|
+
| 09-maintainability | PASS | |
|
|
105
|
+
| 10-operability | PASS | |
|
|
106
|
+
| 11-change-risk | **FAIL** | `syft-grype` doesn't match any tool file |
|
|
107
|
+
| 12-team-risk | PASS | |
|
|
108
|
+
| 13-risk-synthesis | PASS | |
|
|
109
|
+
|
|
110
|
+
**Result: 40/41 PASS, 1 FAIL**
|
|
111
|
+
|
|
112
|
+
### 9. Domain → owner_agents (14 checked)
|
|
113
|
+
|
|
114
|
+
| Domain | owner_agents Value | Status | Notes |
|
|
115
|
+
|--------|-------------------|--------|-------|
|
|
116
|
+
| 00 | principal-engineer | PASS | |
|
|
117
|
+
| 01 | architect | PASS | |
|
|
118
|
+
| 02 | data-engineer | PASS | |
|
|
119
|
+
| 03 | senior-application-engineer | **FAIL** | Should be `senior-app-engineer` |
|
|
120
|
+
| 04 | security-engineer | PASS | |
|
|
121
|
+
| 05 | compliance-officer | PASS | |
|
|
122
|
+
| 06 | test-engineer | PASS | |
|
|
123
|
+
| 07 | sre | PASS | |
|
|
124
|
+
| 08 | performance-engineer | PASS | |
|
|
125
|
+
| 09 | senior-application-engineer | **FAIL** | Should be `senior-app-engineer` |
|
|
126
|
+
| 10 | sre | PASS | |
|
|
127
|
+
| 11 | staff-engineer | PASS | |
|
|
128
|
+
| 12 | staff-engineer | PASS | |
|
|
129
|
+
| 13 | principal-engineer | PASS | |
|
|
130
|
+
|
|
131
|
+
**Result: 12/14 PASS, 2 FAIL**
|
|
132
|
+
|
|
133
|
+
## Broken References Detail
|
|
134
|
+
|
|
135
|
+
### Issue 1: Domain owner_agents ID mismatch (BLOCKER)
|
|
136
|
+
|
|
137
|
+
**Root cause:** Domains 03 and 09 use `senior-application-engineer` but the canonical agent ID is `senior-app-engineer`.
|
|
138
|
+
|
|
139
|
+
| File | Field | Current Value | Correct Value |
|
|
140
|
+
|------|-------|---------------|---------------|
|
|
141
|
+
| src/domains/03-correctness.md | owner_agents | senior-application-engineer | senior-app-engineer |
|
|
142
|
+
| src/domains/09-maintainability.md | owner_agents | senior-application-engineer | senior-app-engineer |
|
|
143
|
+
|
|
144
|
+
**Fix:** Update frontmatter in both domain files.
|
|
145
|
+
|
|
146
|
+
### Issue 2: Transform workflow schema path (BLOCKER)
|
|
147
|
+
|
|
148
|
+
**Root cause:** Two transform workflows reference `src/transform/schemas/confidence.md` which doesn't exist. The confidence schema lives at `src/schemas/confidence.md` (shared).
|
|
149
|
+
|
|
150
|
+
| File | Reference | Correct Path |
|
|
151
|
+
|------|-----------|--------------|
|
|
152
|
+
| src/transform/workflows/phase-7-risk-validation.md | @src/transform/schemas/confidence.md | @src/schemas/confidence.md |
|
|
153
|
+
| src/transform/workflows/transform-safety.md | @src/transform/schemas/confidence.md | @src/schemas/confidence.md |
|
|
154
|
+
|
|
155
|
+
**Fix:** Update references to point to correct shared schema path.
|
|
156
|
+
|
|
157
|
+
### Issue 3: Transform workflow report path (BLOCKER)
|
|
158
|
+
|
|
159
|
+
**Root cause:** phase-6-remediation.md references `.radar/reports/REPORT.md` but Phase 5 output is `.radar/report/Radar-REPORT.md`.
|
|
160
|
+
|
|
161
|
+
| File | Reference | Correct Path |
|
|
162
|
+
|------|-----------|--------------|
|
|
163
|
+
| src/transform/workflows/phase-6-remediation.md | @.radar/reports/REPORT.md | @.radar/report/Radar-REPORT.md |
|
|
164
|
+
|
|
165
|
+
**Fix:** Update runtime path reference.
|
|
166
|
+
|
|
167
|
+
### Issue 4: Domain tool affinity combined ID (WARNING)
|
|
168
|
+
|
|
169
|
+
**Root cause:** Domain 11 uses `syft-grype` as a single tool ID, but they're separate files (`syft.md` and `grype.md`).
|
|
170
|
+
|
|
171
|
+
| File | Current Value | Suggested Fix |
|
|
172
|
+
|------|---------------|---------------|
|
|
173
|
+
| src/domains/11-change-risk.md | syft-grype | Split into `syft` and `grype` rows |
|
|
174
|
+
|
|
175
|
+
**Severity:** Warning — the intent is clear and both tools exist, but the combined ID doesn't resolve to a file.
|
|
176
|
+
|
|
177
|
+
## Summary
|
|
178
|
+
|
|
179
|
+
| Category | Checked | Passed | Failed |
|
|
180
|
+
|----------|---------|--------|--------|
|
|
181
|
+
| Agent → Persona | 17 | 17 | 0 |
|
|
182
|
+
| Agent → Domain | 30 | 30 | 0 |
|
|
183
|
+
| Agent → Tool | 44 | 44 | 0 |
|
|
184
|
+
| Agent → Schema | 61 | 61 | 0 |
|
|
185
|
+
| Agent → Rule | 46 | 46 | 0 |
|
|
186
|
+
| Workflow → Refs | 33 | 30 | 3 |
|
|
187
|
+
| Command → Workflow | 24 | 24 | 0 |
|
|
188
|
+
| Domain → Tools | 41 | 40 | 1 |
|
|
189
|
+
| Domain → owner_agents | 14 | 12 | 2 |
|
|
190
|
+
| **TOTAL** | **310** | **304** | **6** |
|
|
191
|
+
|
|
192
|
+
All 17 agent assembly manifests are fully valid — the composition model (persona + domains + tools + schemas + rules) is structurally sound. Issues are limited to domain frontmatter and transform workflow references.
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
*Generated: 2026-02-19 — Phase 8 End-to-End Validation*
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# Radar v0.1.0 Validation Summary
|
|
2
|
+
|
|
3
|
+
**Date:** 2026-02-19
|
|
4
|
+
**Phase:** 8 — End-to-End Validation
|
|
5
|
+
**Verdict: PASS — v0.1.0 ready for release**
|
|
6
|
+
|
|
7
|
+
## Executive Summary
|
|
8
|
+
|
|
9
|
+
The complete Radar specification set (90 files, 14,992 lines across 8 component types) has been validated for cross-reference integrity, convention compliance, and compositional correctness. Six cross-reference issues were found and fixed during validation. All 90 files pass convention compliance. The specification set is internally consistent and ready for version-lock.
|
|
10
|
+
|
|
11
|
+
## Component Inventory
|
|
12
|
+
|
|
13
|
+
| Component Type | Location | Files | Lines |
|
|
14
|
+
|---------------|----------|-------|-------|
|
|
15
|
+
| Domains | src/domains/ | 14 | ~3,400 |
|
|
16
|
+
| Rules (shared) | src/rules/ | 3 | ~400 |
|
|
17
|
+
| Rules (transform) | src/transform/rules/ | 2 | ~250 |
|
|
18
|
+
| Schemas (shared) | src/schemas/ | 5 | ~1,200 |
|
|
19
|
+
| Schemas (transform) | src/transform/schemas/ | 4 | ~800 |
|
|
20
|
+
| Tools | src/tools/ | 8 | ~4,000 |
|
|
21
|
+
| Personas (core) | src/core/personas/ | 12 | ~1,200 |
|
|
22
|
+
| Personas (transform) | src/transform/personas/ | 5 | ~500 |
|
|
23
|
+
| Agents (core) | src/core/agents/ | 12 | ~600 |
|
|
24
|
+
| Agents (transform) | src/transform/agents/ | 5 | ~250 |
|
|
25
|
+
| Workflows (core) | src/core/workflows/ | 8 | ~1,200 |
|
|
26
|
+
| Workflows (transform) | src/transform/workflows/ | 4 | ~600 |
|
|
27
|
+
| Commands (core) | src/core/commands/ | 4 | ~650 |
|
|
28
|
+
| Commands (transform) | src/transform/commands/ | 4 | ~700 |
|
|
29
|
+
| **TOTAL** | | **90** | **~14,992** |
|
|
30
|
+
|
|
31
|
+
## Validation Results
|
|
32
|
+
|
|
33
|
+
### 1. Cross-Reference Integrity
|
|
34
|
+
|
|
35
|
+
**310 references checked across 9 categories. 6 issues found and fixed.**
|
|
36
|
+
|
|
37
|
+
| Category | Checked | Result |
|
|
38
|
+
|----------|---------|--------|
|
|
39
|
+
| Agent → Persona | 17 | PASS |
|
|
40
|
+
| Agent → Domain | 30 | PASS |
|
|
41
|
+
| Agent → Tool | 44 | PASS |
|
|
42
|
+
| Agent → Schema | 61 | PASS |
|
|
43
|
+
| Agent → Rule | 46 | PASS |
|
|
44
|
+
| Workflow → Agent/Workflow | 33 | 3 fixed |
|
|
45
|
+
| Command → Workflow | 24 | PASS |
|
|
46
|
+
| Domain → Tool Affinities | 41 | 1 fixed |
|
|
47
|
+
| Domain → owner_agents | 14 | 2 fixed |
|
|
48
|
+
|
|
49
|
+
**Issues fixed:**
|
|
50
|
+
1. Domains 03, 09: `senior-application-engineer` → `senior-app-engineer` (ID mismatch)
|
|
51
|
+
2. transform-safety.md: `src/transform/schemas/confidence.md` → `src/schemas/confidence.md` (wrong path)
|
|
52
|
+
3. phase-6-remediation.md: `.radar/reports/REPORT.md` → `.radar/report/Radar-REPORT.md` (wrong path)
|
|
53
|
+
4. Domain 11: `syft-grype` split into `syft` and `grype` (unresolvable combined ID)
|
|
54
|
+
|
|
55
|
+
**Post-fix: 310/310 references valid.**
|
|
56
|
+
|
|
57
|
+
### 2. Convention Compliance
|
|
58
|
+
|
|
59
|
+
**90/90 files pass all convention checks.**
|
|
60
|
+
|
|
61
|
+
| Component Type | Files | Passed | Failed |
|
|
62
|
+
|---------------|-------|--------|--------|
|
|
63
|
+
| Domains | 14 | 14 | 0 |
|
|
64
|
+
| Rules | 5 | 5 | 0 |
|
|
65
|
+
| Schemas | 9 | 9 | 0 |
|
|
66
|
+
| Tools | 8 | 8 | 0 |
|
|
67
|
+
| Personas | 17 | 17 | 0 |
|
|
68
|
+
| Agents | 17 | 17 | 0 |
|
|
69
|
+
| Workflows | 12 | 12 | 0 |
|
|
70
|
+
| Commands | 8 | 8 | 0 |
|
|
71
|
+
|
|
72
|
+
**Observations (non-blocking):**
|
|
73
|
+
- All 5 rule files use priority `critical` — `quality` and `guidance` levels defined but unused
|
|
74
|
+
- Transform agents extend schemas with `layer_a_input` — consistent, intentional
|
|
75
|
+
- sonarqube.md has extra top-level heading — cosmetic only
|
|
76
|
+
|
|
77
|
+
### 3. Composition Correctness
|
|
78
|
+
|
|
79
|
+
All 17 agent assembly manifests correctly compose:
|
|
80
|
+
- Persona references resolve to existing persona files with matching IDs
|
|
81
|
+
- Domain assignments match domain owner_agents (bidirectional)
|
|
82
|
+
- Tool assignments align with domain tool affinity tables
|
|
83
|
+
- Schema contracts (output, confidence, signal_input) resolve to existing schemas
|
|
84
|
+
- Rule sets appropriate per agent type (core vs transform)
|
|
85
|
+
|
|
86
|
+
### 4. Version-Lock Manifest
|
|
87
|
+
|
|
88
|
+
- **File:** docs/validation/version-manifest.yaml
|
|
89
|
+
- **Entries:** 90 (all spec files)
|
|
90
|
+
- **Hash algorithm:** SHA-256
|
|
91
|
+
- **Version:** 0.1.0
|
|
92
|
+
|
|
93
|
+
## v0.1.0 Readiness
|
|
94
|
+
|
|
95
|
+
| Criterion | Status |
|
|
96
|
+
|-----------|--------|
|
|
97
|
+
| All 8 component types delivered | PASS |
|
|
98
|
+
| Cross-references resolve (post-fix) | PASS |
|
|
99
|
+
| Convention compliance (all 90 files) | PASS |
|
|
100
|
+
| Agent composition validated | PASS |
|
|
101
|
+
| Version-lock manifest created | PASS |
|
|
102
|
+
| No open blockers | PASS |
|
|
103
|
+
| No deferred issues | PASS |
|
|
104
|
+
|
|
105
|
+
**Radar v0.1.0 specification set is validated and ready for release.**
|
|
106
|
+
|
|
107
|
+
## Scope Note
|
|
108
|
+
|
|
109
|
+
This validation covers the specification set — the 90 markdown files that define Radar's multi-agent audit system. Runtime implementation (actually orchestrating Claude Code sessions to execute audits on real codebases) is a future milestone requiring:
|
|
110
|
+
- Session orchestration layer (launching/managing agent sessions)
|
|
111
|
+
- Tool execution runtime (running SonarQube, Semgrep, etc.)
|
|
112
|
+
- Artifact persistence layer (.radar/ directory management)
|
|
113
|
+
- Report generation engine
|
|
114
|
+
|
|
115
|
+
The specifications are the blueprints. The runtime is the construction.
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
*Generated: 2026-02-19 — Phase 8 End-to-End Validation*
|
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Radar v0.1.0 Version-Lock Manifest
|
|
3
|
+
# Generated: 2026-02-19
|
|
4
|
+
# Purpose: Content-hash inventory for reproducibility and change detection
|
|
5
|
+
|
|
6
|
+
aegis_version: "0.1.0"
|
|
7
|
+
generated: "2026-02-19"
|
|
8
|
+
total_files: 90
|
|
9
|
+
total_lines: 14992
|
|
10
|
+
hash_algorithm: sha256
|
|
11
|
+
|
|
12
|
+
domains:
|
|
13
|
+
- path: src/domains/00-context.md
|
|
14
|
+
id: domain-00
|
|
15
|
+
name: Context & Intent
|
|
16
|
+
sha256: 48ccd12f2d99765772dee21ef9b97f7c8b45396e8e256631e624f3f018982438
|
|
17
|
+
- path: src/domains/01-architecture.md
|
|
18
|
+
id: domain-01
|
|
19
|
+
name: Architecture & System Design
|
|
20
|
+
sha256: fed13e147b14dbdf741896055bb96ee5ab5ff0c6ebd1159431d589c19d102b0d
|
|
21
|
+
- path: src/domains/02-data.md
|
|
22
|
+
id: domain-02
|
|
23
|
+
name: Data & State Integrity
|
|
24
|
+
sha256: 65205e84074599b0e29d3829c3fe6960449a4e78d3e4461ac9dab3c5000957d8
|
|
25
|
+
- path: src/domains/03-correctness.md
|
|
26
|
+
id: domain-03
|
|
27
|
+
name: Correctness & Logic
|
|
28
|
+
sha256: 74b8984bd050e227c179f73cce936284b3240deca0985870a307be8fea7ecd2d
|
|
29
|
+
- path: src/domains/04-security.md
|
|
30
|
+
id: domain-04
|
|
31
|
+
name: Security
|
|
32
|
+
sha256: 38ecf3917b026620d1d461e59910faf1e2a5312dcacf7d137a2f2aa062334a7f
|
|
33
|
+
- path: src/domains/05-compliance.md
|
|
34
|
+
id: domain-05
|
|
35
|
+
name: Compliance Privacy & Governance
|
|
36
|
+
sha256: 6fe77ddb121ed3040c7a5348fd12c96278781a9a5858cbf1991786180258328a
|
|
37
|
+
- path: src/domains/06-testing.md
|
|
38
|
+
id: domain-06
|
|
39
|
+
name: Testing Strategy & Verification
|
|
40
|
+
sha256: bdc3b3fb1c65f089395dcf5ffab8b1e544026b4da8f6947098d888ee797197e6
|
|
41
|
+
- path: src/domains/07-reliability.md
|
|
42
|
+
id: domain-07
|
|
43
|
+
name: Reliability & Resilience
|
|
44
|
+
sha256: 1a3d3fa82eaec8cdee259e5794904159d73a72a1b7f655226967a743a433c259
|
|
45
|
+
- path: src/domains/08-performance.md
|
|
46
|
+
id: domain-08
|
|
47
|
+
name: Scalability & Performance
|
|
48
|
+
sha256: d25a623c45fd7cbe2a7a3de3171c9122350a73b3d6a1b776ca6f65515dad99d1
|
|
49
|
+
- path: src/domains/09-maintainability.md
|
|
50
|
+
id: domain-09
|
|
51
|
+
name: Maintainability & Code Health
|
|
52
|
+
sha256: 609d46a137f0f3c090859f48b94f27945286b6e3072ffbe3895908da4e047bdb
|
|
53
|
+
- path: src/domains/10-operability.md
|
|
54
|
+
id: domain-10
|
|
55
|
+
name: Operability & Developer Experience
|
|
56
|
+
sha256: 4e714ec092f6fb840f4ae4b6b96b6634eeec3722574f13b90a385f806eec8862
|
|
57
|
+
- path: src/domains/11-change-risk.md
|
|
58
|
+
id: domain-11
|
|
59
|
+
name: Change Risk & Evolvability
|
|
60
|
+
sha256: d7db8a33254b3499dba131aacdc301c92dd6c0540c1c9f89df3b3045eccf2719
|
|
61
|
+
- path: src/domains/12-team-risk.md
|
|
62
|
+
id: domain-12
|
|
63
|
+
name: Team Ownership & Knowledge Risk
|
|
64
|
+
sha256: 1b2e05cd564cb80683b9722c9d47caeeac6288e0fad02f9a35e909a327ac4f40
|
|
65
|
+
- path: src/domains/13-risk-synthesis.md
|
|
66
|
+
id: domain-13
|
|
67
|
+
name: Risk Synthesis & Forecasting
|
|
68
|
+
sha256: 2c2cb59d42d88817f3a0cc66cbd97db67bb97ee4640f811297723990885ae755
|
|
69
|
+
|
|
70
|
+
rules:
|
|
71
|
+
- path: src/rules/epistemic-hygiene.md
|
|
72
|
+
id: epistemic-hygiene
|
|
73
|
+
name: Epistemic Hygiene
|
|
74
|
+
sha256: 1c6decd45693a0d085c347d70432969664858b5064661fdb4b17f80d713c5cb2
|
|
75
|
+
- path: src/rules/disagreement-protocol.md
|
|
76
|
+
id: disagreement-protocol
|
|
77
|
+
name: Disagreement Protocol
|
|
78
|
+
sha256: 1988f70dd03f4535994c133ae3ac40a3735515db654e205f902d9061c7b3956a
|
|
79
|
+
- path: src/rules/agent-boundaries.md
|
|
80
|
+
id: agent-boundaries
|
|
81
|
+
name: Agent Boundaries
|
|
82
|
+
sha256: bc6774bbef67370dfcb1af15f770943d22d148a212adbb8acc5da4d608b6bbb9
|
|
83
|
+
- path: src/transform/rules/safety-governance.md
|
|
84
|
+
id: safety-governance
|
|
85
|
+
name: Safety Governance
|
|
86
|
+
sha256: 37dc9d4eb0016f3df602ae91d5beb41b98da74df2a898c4c972678db1355b17f
|
|
87
|
+
- path: src/transform/rules/change-risk-rules.md
|
|
88
|
+
id: change-risk-rules
|
|
89
|
+
name: Change Risk Rules
|
|
90
|
+
sha256: 8441a62e44262eede36e060949fcc22d904ab8852f7c7e8f646be06dcf4c4053
|
|
91
|
+
|
|
92
|
+
schemas:
|
|
93
|
+
- path: src/schemas/finding.md
|
|
94
|
+
id: finding
|
|
95
|
+
name: Epistemic Finding
|
|
96
|
+
sha256: 6ca5899e5a126d98d1d396eb9eb612684f48a6633538d116c72b0b9aff44b551
|
|
97
|
+
- path: src/schemas/disagreement.md
|
|
98
|
+
id: disagreement
|
|
99
|
+
name: Disagreement Record
|
|
100
|
+
sha256: c4b367499fea589061ac956e8e503b357f786f57a99abeaf254d44f21f19fe74
|
|
101
|
+
- path: src/schemas/confidence.md
|
|
102
|
+
id: confidence
|
|
103
|
+
name: Confidence Vector
|
|
104
|
+
sha256: 5e5026f534bb1ad0cb38878c59d122f491af79f2cad602d807cd0f26ee8b115b
|
|
105
|
+
- path: src/schemas/signal.md
|
|
106
|
+
id: signal
|
|
107
|
+
name: Signal
|
|
108
|
+
sha256: 14ed61f58e3e7cd890b321843ec2a48144b3bc2be72ec73972a8f8f817aa2401
|
|
109
|
+
- path: src/schemas/report-section.md
|
|
110
|
+
id: report-section
|
|
111
|
+
name: Report Section
|
|
112
|
+
sha256: 27cb5ba6561e14458c4a6e44043b9d75e65c8455084505a42746fd59ab8e56e2
|
|
113
|
+
- path: src/transform/schemas/change-risk.md
|
|
114
|
+
id: change-risk
|
|
115
|
+
name: Change Risk Assessment
|
|
116
|
+
sha256: e104b5d74ae655527b89d4f01ea8f3b98a11afc61cbb99f120b628a018a8cd94
|
|
117
|
+
- path: src/transform/schemas/intervention-level.md
|
|
118
|
+
id: intervention-level
|
|
119
|
+
name: Intervention Level
|
|
120
|
+
sha256: 8ef3689a0ec90f88d804c3c772738d6ad2eb3d155447c947c50e30e274d1bb34
|
|
121
|
+
- path: src/transform/schemas/playbook.md
|
|
122
|
+
id: playbook
|
|
123
|
+
name: Remediation Playbook
|
|
124
|
+
sha256: f2c24cce8f9681e7a6f785f609043482cbc2d698e4dab72bc29827294c613d32
|
|
125
|
+
- path: src/transform/schemas/verification-plan.md
|
|
126
|
+
id: verification-plan
|
|
127
|
+
name: Verification Plan
|
|
128
|
+
sha256: 20522a4c10ea44a801d0e03aae33382c9bc105caafd5ba91040b7e24ad359e7c
|
|
129
|
+
|
|
130
|
+
tools:
|
|
131
|
+
- path: src/tools/sonarqube.md
|
|
132
|
+
id: sonarqube
|
|
133
|
+
name: SonarQube
|
|
134
|
+
sha256: 4a8885265dd1de17422ccd4cda385408fa4af905ca8b5e6101444f1dbbd58193
|
|
135
|
+
- path: src/tools/semgrep.md
|
|
136
|
+
id: semgrep
|
|
137
|
+
name: Semgrep
|
|
138
|
+
sha256: 34abb31f81c1ae06429e06fd93ab614aeb1be9d26d7f1c5536459c7735d5ec08
|
|
139
|
+
- path: src/tools/trivy.md
|
|
140
|
+
id: trivy
|
|
141
|
+
name: Trivy
|
|
142
|
+
sha256: e2ce98f25d8d6e09bb1120f80ad96d45b375404716b9ccb2363ab62631b26123
|
|
143
|
+
- path: src/tools/gitleaks.md
|
|
144
|
+
id: gitleaks
|
|
145
|
+
name: Gitleaks
|
|
146
|
+
sha256: f470525e10e56c3a949e7447c24c5058ce91eb073b7e8d790d5d8ebe98b155bf
|
|
147
|
+
- path: src/tools/checkov.md
|
|
148
|
+
id: checkov
|
|
149
|
+
name: Checkov
|
|
150
|
+
sha256: b7e12abf859a919ec783f240091e7aa37b1dde40659b08e4750c02a3bdcf9fd0
|
|
151
|
+
- path: src/tools/syft.md
|
|
152
|
+
id: syft
|
|
153
|
+
name: Syft
|
|
154
|
+
sha256: 85c575f41c4fa4ee2200a66ebaff1048854ea7b8e8c86a09d4a4f3800d6103e7
|
|
155
|
+
- path: src/tools/grype.md
|
|
156
|
+
id: grype
|
|
157
|
+
name: Grype
|
|
158
|
+
sha256: 52add1905a142f99e1fc346485a1a929e9b82835b30c36582635b574971c7359
|
|
159
|
+
- path: src/tools/git-history.md
|
|
160
|
+
id: git-history
|
|
161
|
+
name: Git History Miner
|
|
162
|
+
sha256: 4e71feec44d54694d03a7d3b0ae60d3d5974f95c0fa03bb9b5abb7567310b16e
|
|
163
|
+
|
|
164
|
+
core_personas:
|
|
165
|
+
- path: src/core/personas/principal-engineer.md
|
|
166
|
+
id: principal-engineer
|
|
167
|
+
name: Principal Engineer
|
|
168
|
+
sha256: e2b6355757fa89975cf110d30f1ef69608d5654495f7e7d285ee4adf00b42647
|
|
169
|
+
- path: src/core/personas/architect.md
|
|
170
|
+
id: architect
|
|
171
|
+
name: Architect
|
|
172
|
+
sha256: 282e43ebe016047870edd58efc999b9c454da0b95826433472a0d2767c190796
|
|
173
|
+
- path: src/core/personas/data-engineer.md
|
|
174
|
+
id: data-engineer
|
|
175
|
+
name: Data Engineer
|
|
176
|
+
sha256: 465e0558f0d2a13d42bf98824c5a95fa4c4b9036039584ed679037e7b9fd9cf2
|
|
177
|
+
- path: src/core/personas/security-engineer.md
|
|
178
|
+
id: security-engineer
|
|
179
|
+
name: Security Engineer
|
|
180
|
+
sha256: 0a42f47cd8f4b95abd29bde196f34f6ac3a1f9e77526d75bcb80608b30802ceb
|
|
181
|
+
- path: src/core/personas/compliance-officer.md
|
|
182
|
+
id: compliance-officer
|
|
183
|
+
name: Compliance Officer
|
|
184
|
+
sha256: 12a81d42ebbbd88a3cc31f027bb0bc32a16d3047f7fa6e85701bc60f415208c1
|
|
185
|
+
- path: src/core/personas/senior-app-engineer.md
|
|
186
|
+
id: senior-app-engineer
|
|
187
|
+
name: Senior Application Engineer
|
|
188
|
+
sha256: 1b22ffa1749e1e67332b78ecea8be65f2c8b0e706ea82f668a0a00519d7e6e38
|
|
189
|
+
- path: src/core/personas/sre.md
|
|
190
|
+
id: sre
|
|
191
|
+
name: SRE
|
|
192
|
+
sha256: 07d86384952538d159c558e501367ebf16ed3eddfc38b16ad4b8f2fc196e1ba1
|
|
193
|
+
- path: src/core/personas/performance-engineer.md
|
|
194
|
+
id: performance-engineer
|
|
195
|
+
name: Performance Engineer
|
|
196
|
+
sha256: f60abce2413f6fbe224c4a7c4010d44eb6b6d34926e1966bfd56e068a9a850ef
|
|
197
|
+
- path: src/core/personas/test-engineer.md
|
|
198
|
+
id: test-engineer
|
|
199
|
+
name: Test Engineer
|
|
200
|
+
sha256: a708b78a64ade1e9805d4370b09ae610f8e157e6ab34b7223258799437234472
|
|
201
|
+
- path: src/core/personas/staff-engineer.md
|
|
202
|
+
id: staff-engineer
|
|
203
|
+
name: Staff Engineer
|
|
204
|
+
sha256: 5c92b668e2f8752d7a92f18706be12e04dbc64ba4efc54bf8013e20a6e3c083d
|
|
205
|
+
- path: src/core/personas/reality-gap-analyst.md
|
|
206
|
+
id: reality-gap-analyst
|
|
207
|
+
name: Reality Gap Analyst
|
|
208
|
+
sha256: 50f358af8dda6a701c3460fd28d9b921b3686d68d25fb1f3c1f7a475db1796b3
|
|
209
|
+
- path: src/core/personas/devils-advocate.md
|
|
210
|
+
id: devils-advocate
|
|
211
|
+
name: "Devil's Advocate Reviewer"
|
|
212
|
+
sha256: 78c0e6c3131b6df63f37ba9e04a8071e392135e1c4b3c0e15cafe8dab2e6a4f8
|
|
213
|
+
|
|
214
|
+
transform_personas:
|
|
215
|
+
- path: src/transform/personas/remediation-architect.md
|
|
216
|
+
id: remediation-architect
|
|
217
|
+
name: Remediation Architect
|
|
218
|
+
sha256: 7963d37cbcb6e3383d1c997abeec316b5c77a7a60dc11050ccd3b2ee5168961f
|
|
219
|
+
- path: src/transform/personas/change-risk-modeler.md
|
|
220
|
+
id: change-risk-modeler
|
|
221
|
+
name: Change Risk Modeler
|
|
222
|
+
sha256: cb258e76d14456938fcbb66bcc86607f1fe4e6685bad5057bbfafa9250e3d499
|
|
223
|
+
- path: src/transform/personas/pedagogy-agent.md
|
|
224
|
+
id: pedagogy-agent
|
|
225
|
+
name: Pedagogy Agent
|
|
226
|
+
sha256: 4666918a4d909ad55de011839ae2880069ffa857a838b9e4970afd75db30aec8
|
|
227
|
+
- path: src/transform/personas/guardrail-generator.md
|
|
228
|
+
id: guardrail-generator
|
|
229
|
+
name: Guardrail Generator
|
|
230
|
+
sha256: 38ff209bea350f3f095a2f0038f4eec36ba6f33e53ffc0dc553cbb5c6397ec05
|
|
231
|
+
- path: src/transform/personas/execution-validator.md
|
|
232
|
+
id: execution-validator
|
|
233
|
+
name: Execution Validator
|
|
234
|
+
sha256: 1b9927bcf61b29943b20c881a50a5b59af85a2a5e6e359a6201c55a7b4277155
|
|
235
|
+
|
|
236
|
+
core_agents:
|
|
237
|
+
- path: src/core/agents/principal-engineer.md
|
|
238
|
+
id: principal-engineer
|
|
239
|
+
sha256: b8496eb315c599053365b0312fda4179363baea9fbcc27257a990f23b1e058af
|
|
240
|
+
- path: src/core/agents/architect.md
|
|
241
|
+
id: architect
|
|
242
|
+
sha256: e25895eae0367a9ec2fef622e7bcea655f97f5f2aad0c108839245b61257ac5c
|
|
243
|
+
- path: src/core/agents/data-engineer.md
|
|
244
|
+
id: data-engineer
|
|
245
|
+
sha256: a92d63f431e3bf636abf4c8cb17c4f3cb9b0da19ffc77b7fc6db0d3decfe7004
|
|
246
|
+
- path: src/core/agents/security-engineer.md
|
|
247
|
+
id: security-engineer
|
|
248
|
+
sha256: 4ae207c6143b3dcb6827983165db1be08117173df72450991f1b6635ac11cca9
|
|
249
|
+
- path: src/core/agents/compliance-officer.md
|
|
250
|
+
id: compliance-officer
|
|
251
|
+
sha256: 284c61142294252b0bba73b4616f27ad9b7898e2eb23cfed94f3fb2229f97f35
|
|
252
|
+
- path: src/core/agents/senior-app-engineer.md
|
|
253
|
+
id: senior-app-engineer
|
|
254
|
+
sha256: 657ec815c25335d48d8b97e62d227fcf6870fb92d06f575be8a6e7ea2ec84ef4
|
|
255
|
+
- path: src/core/agents/sre.md
|
|
256
|
+
id: sre
|
|
257
|
+
sha256: 1d7c8c2b556c442d5c6279084a7fe7815020c8655e2154dc468c6aa7c8cbefdd
|
|
258
|
+
- path: src/core/agents/performance-engineer.md
|
|
259
|
+
id: performance-engineer
|
|
260
|
+
sha256: 525c771b3f61897f306c9daf9eadc87523d95dbadc55915d29b067489edb9641
|
|
261
|
+
- path: src/core/agents/test-engineer.md
|
|
262
|
+
id: test-engineer
|
|
263
|
+
sha256: 8ca1763b12fc7452543190ba2f66f4cafd6b3e2c9783b441cd61e7506fb2ffc2
|
|
264
|
+
- path: src/core/agents/staff-engineer.md
|
|
265
|
+
id: staff-engineer
|
|
266
|
+
sha256: 1e04755987608865190611bd4f0705fb71cb3a5b05aae44ee4b91b0e7d105f49
|
|
267
|
+
- path: src/core/agents/reality-gap-analyst.md
|
|
268
|
+
id: reality-gap-analyst
|
|
269
|
+
sha256: c142296f48b5d9c82f178058e90aadeb97841c0d4272ad8afa6c0e33b5b40d05
|
|
270
|
+
- path: src/core/agents/devils-advocate.md
|
|
271
|
+
id: devils-advocate
|
|
272
|
+
sha256: 63375d0b04942160305a5757ee7ee31e8cc65defd548af6a8b8cd578e0ea803c
|
|
273
|
+
|
|
274
|
+
transform_agents:
|
|
275
|
+
- path: src/transform/agents/remediation-architect.md
|
|
276
|
+
id: remediation-architect
|
|
277
|
+
sha256: ca69b488361a850f6f8cfb9611cd007343058d8f24c27368089a18688c1d03d9
|
|
278
|
+
- path: src/transform/agents/change-risk-modeler.md
|
|
279
|
+
id: change-risk-modeler
|
|
280
|
+
sha256: 62081835bccde5698c0c71eacb4fa028065698a70ca8193d6141ccf1c4679b6c
|
|
281
|
+
- path: src/transform/agents/pedagogy-agent.md
|
|
282
|
+
id: pedagogy-agent
|
|
283
|
+
sha256: ad1aa5c905d02e95aee46b73c1f37ce2cda7cbfebfda32a8a31f7ebd7ab78e44
|
|
284
|
+
- path: src/transform/agents/guardrail-generator.md
|
|
285
|
+
id: guardrail-generator
|
|
286
|
+
sha256: 759616a1ab70964d5e6f004141c1d37d51f387c3e57d8d7f7b4127b61bd1e274
|
|
287
|
+
- path: src/transform/agents/execution-validator.md
|
|
288
|
+
id: execution-validator
|
|
289
|
+
sha256: c2cd7298263b6fac8d1cd81cf1a013a12cb9a595fe2905b244e32be6b5df1db3
|
|
290
|
+
|
|
291
|
+
core_workflows:
|
|
292
|
+
- path: src/core/workflows/phase-0-context.md
|
|
293
|
+
sha256: 0359bb124495c2255b185b2854fdf2f0f661fe2dce5d652d65a86b68f2332429
|
|
294
|
+
- path: src/core/workflows/phase-1-reconnaissance.md
|
|
295
|
+
sha256: 2b4c7d2fce56ef15f0010afd58b994dc51a2b29f618a91064d7dc5983f37cb72
|
|
296
|
+
- path: src/core/workflows/phase-2-domain-audits.md
|
|
297
|
+
sha256: 7ee31722f642dcaf57afc06ad27f294e6db97506acd39832d14790f8a6ee3037
|
|
298
|
+
- path: src/core/workflows/phase-3-cross-domain.md
|
|
299
|
+
sha256: bd9650452579faa77c211f33c1db35d5be94ca610e1dfc1c4834a72ca6def1da
|
|
300
|
+
- path: src/core/workflows/phase-4-adversarial-review.md
|
|
301
|
+
sha256: cbc5466811116827f054e22483fa213a61d92b62f2365ded8c0d99fcc1f77646
|
|
302
|
+
- path: src/core/workflows/phase-5-report.md
|
|
303
|
+
sha256: 58ae414f4c6ca4cd5453f2c20100087bf264446f9b1a9a3ac2c30e25a2fa8afd
|
|
304
|
+
- path: src/core/workflows/session-handoff.md
|
|
305
|
+
sha256: 6ba6833d2d5280ae663da6c54fb47c12a6d72bac8ff306aefde15d968c5fd046
|
|
306
|
+
- path: src/core/workflows/disagreement-resolution.md
|
|
307
|
+
sha256: 5be2f269beddf6b68bc1eda21ed899d619e43d6cb59f7c5ecb861793fb0a06e4
|
|
308
|
+
|
|
309
|
+
core_commands:
|
|
310
|
+
- path: src/core/commands/audit.md
|
|
311
|
+
name: radar:audit
|
|
312
|
+
sha256: ae4068cfc9b32edc2b68545953166d8cf7f32bc11c92e9335add157680ba814b
|
|
313
|
+
- path: src/core/commands/resume.md
|
|
314
|
+
name: radar:resume
|
|
315
|
+
sha256: b8296612d7f7235860beb2a32984311fcb362ef8e32ac9273e5d956766bb291a
|
|
316
|
+
- path: src/core/commands/status.md
|
|
317
|
+
name: radar:status
|
|
318
|
+
sha256: 659f21993b808ffaaa21ef228ff5410954a9f2ce12d8de169fe631bc4b77255e
|
|
319
|
+
- path: src/core/commands/report.md
|
|
320
|
+
name: radar:report
|
|
321
|
+
sha256: 1541cfec30f70952ed2a97ae32c7d16e2078187e086e503fe07c0897ddf60d3f
|
|
322
|
+
|
|
323
|
+
transform_workflows:
|
|
324
|
+
- path: src/transform/workflows/phase-6-remediation.md
|
|
325
|
+
sha256: 0eab22270f45d4b0c6800126d7ca0764d073b4fe565f7af40be6cbd9fa606aee
|
|
326
|
+
- path: src/transform/workflows/phase-7-risk-validation.md
|
|
327
|
+
sha256: f5f031c7ee835ae51a57b9cb90208de3042f792da486125f7c9a5d285235ba5c
|
|
328
|
+
- path: src/transform/workflows/phase-8-execution-planning.md
|
|
329
|
+
sha256: b6e9b18436eaaffccbbb8d962d5e8c2831a19b797523218496eda256c8565c8d
|
|
330
|
+
- path: src/transform/workflows/transform-safety.md
|
|
331
|
+
sha256: 580cc406c9a865d952e748eaf7dc3f4f0a10b7b4154a35277dc6857853522ad5
|
|
332
|
+
|
|
333
|
+
transform_commands:
|
|
334
|
+
- path: src/transform/commands/transform.md
|
|
335
|
+
name: radar:transform
|
|
336
|
+
sha256: 8f8b518aa98262673d17726b2e45586a1aac9d687a9cb9190393f219116bd1ef
|
|
337
|
+
- path: src/transform/commands/remediate.md
|
|
338
|
+
name: radar:remediate
|
|
339
|
+
sha256: 473b76b39d03ff9cd859a4d2784ad650f0f501c210f98e00c95cae76d3c657ad
|
|
340
|
+
- path: src/transform/commands/playbook.md
|
|
341
|
+
name: radar:playbook
|
|
342
|
+
sha256: 9187b069a187950802579d6e99bd114a6193e49bac211ce699fa2db39d34da4b
|
|
343
|
+
- path: src/transform/commands/guardrails.md
|
|
344
|
+
name: radar:guardrails
|
|
345
|
+
sha256: ef4c09710722968a56c2fc7c88f62f53a9e024a0a17285a5864672c9fa0d3320
|
|
346
|
+
|
|
347
|
+
transform_schemas:
|
|
348
|
+
- path: src/transform/schemas/change-risk.md
|
|
349
|
+
id: change-risk
|
|
350
|
+
name: Change Risk Assessment
|
|
351
|
+
sha256: e104b5d74ae655527b89d4f01ea8f3b98a11afc61cbb99f120b628a018a8cd94
|
|
352
|
+
- path: src/transform/schemas/intervention-level.md
|
|
353
|
+
id: intervention-level
|
|
354
|
+
name: Intervention Level
|
|
355
|
+
sha256: 8ef3689a0ec90f88d804c3c772738d6ad2eb3d155447c947c50e30e274d1bb34
|
|
356
|
+
- path: src/transform/schemas/playbook.md
|
|
357
|
+
id: playbook
|
|
358
|
+
name: Remediation Playbook
|
|
359
|
+
sha256: f2c24cce8f9681e7a6f785f609043482cbc2d698e4dab72bc29827294c613d32
|
|
360
|
+
- path: src/transform/schemas/verification-plan.md
|
|
361
|
+
id: verification-plan
|
|
362
|
+
name: Verification Plan
|
|
363
|
+
sha256: 20522a4c10ea44a801d0e03aae33382c9bc105caafd5ba91040b7e24ad359e7c
|