claude-code-workflow 6.3.48 → 6.3.49
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/CLAUDE.md +6 -8
- package/.claude/agents/action-planning-agent.md +28 -45
- package/.claude/agents/cli-lite-planning-agent.md +93 -1
- package/.claude/agents/code-developer.md +144 -27
- package/.claude/commands/ccw-coordinator.md +175 -21
- package/.claude/commands/ccw-debug.md +832 -0
- package/.claude/commands/ccw.md +90 -9
- package/.claude/commands/cli/cli-init.md +1 -0
- package/.claude/commands/issue/convert-to-plan.md +718 -0
- package/.claude/commands/issue/from-brainstorm.md +382 -0
- package/.claude/commands/memory/tips.md +332 -0
- package/.claude/commands/workflow/analyze-with-file.md +804 -0
- package/.claude/commands/workflow/brainstorm/auto-parallel.md +18 -43
- package/.claude/commands/workflow/brainstorm/role-analysis.md +705 -0
- package/.claude/commands/workflow/brainstorm-with-file.md +1153 -0
- package/.claude/commands/workflow/debug-with-file.md +7 -5
- package/.claude/commands/workflow/execute.md +6 -4
- package/.claude/commands/workflow/lite-plan.md +2 -2
- package/.claude/commands/workflow/plan-verify.md +162 -327
- package/.claude/commands/workflow/plan.md +162 -26
- package/.claude/commands/workflow/replan.md +78 -2
- package/.claude/commands/workflow/{review-fix.md → review-cycle-fix.md} +6 -6
- package/.claude/commands/workflow/review-module-cycle.md +2 -2
- package/.claude/commands/workflow/review-session-cycle.md +2 -2
- package/.claude/commands/workflow/tools/conflict-resolution.md +16 -26
- package/.claude/commands/workflow/tools/context-gather.md +81 -118
- package/.claude/commands/workflow/tools/task-generate-agent.md +94 -10
- package/.claude/skills/ccw-help/command.json +4 -4
- package/.claude/skills/lite-skill-generator/SKILL.md +650 -0
- package/.claude/skills/lite-skill-generator/templates/simple-skill.md +68 -0
- package/.claude/skills/lite-skill-generator/templates/style-guide.md +64 -0
- package/.claude/skills/skill-generator/SKILL.md +277 -85
- package/.claude/skills/skill-generator/phases/01-requirements-discovery.md +4 -15
- package/.claude/skills/skill-generator/phases/02-structure-generation.md +72 -17
- package/.claude/skills/skill-generator/phases/03-phase-generation.md +218 -51
- package/.claude/skills/skill-generator/phases/04-specs-templates.md +111 -41
- package/.claude/skills/skill-generator/phases/05-validation.md +139 -56
- package/.claude/skills/skill-generator/templates/autonomous-action.md +78 -268
- package/.claude/skills/skill-generator/templates/autonomous-orchestrator.md +14 -0
- package/.claude/skills/skill-generator/templates/code-analysis-action.md +12 -0
- package/.claude/skills/skill-generator/templates/llm-action.md +12 -0
- package/.claude/skills/skill-generator/templates/script-template.md +368 -0
- package/.claude/skills/skill-generator/templates/sequential-phase.md +14 -0
- package/.claude/skills/skill-generator/templates/skill-md.md +14 -0
- package/.claude/skills/skill-tuning/SKILL.md +130 -266
- package/.claude/skills/skill-tuning/phases/orchestrator.md +95 -283
- package/.claude/skills/skill-tuning/specs/problem-taxonomy.md +90 -198
- package/.claude/skills/skill-tuning/specs/tuning-strategies.md +193 -1345
- package/.claude/workflows/cli-templates/schemas/plan-verify-agent-schema.json +47 -0
- package/.claude/workflows/cli-templates/schemas/verify-json-schema.json +158 -0
- package/.claude/workflows/cli-tools-usage.md +1 -1
- package/.codex/AGENTS.md +1 -3
- package/.codex/prompts/analyze-with-file.md +607 -0
- package/.codex/prompts/brainstorm-to-cycle.md +455 -0
- package/.codex/prompts/brainstorm-with-file.md +933 -0
- package/.codex/prompts/debug-with-file.md +15 -20
- package/.codex/skills/ccw-cli-tools/SKILL.md +559 -0
- package/ccw/dist/commands/cli.d.ts.map +1 -1
- package/ccw/dist/commands/cli.js +29 -5
- package/ccw/dist/commands/cli.js.map +1 -1
- package/ccw/dist/commands/issue.d.ts +2 -0
- package/ccw/dist/commands/issue.d.ts.map +1 -1
- package/ccw/dist/commands/issue.js +62 -20
- package/ccw/dist/commands/issue.js.map +1 -1
- package/ccw/dist/config/litellm-api-config-manager.d.ts.map +1 -1
- package/ccw/dist/config/litellm-api-config-manager.js +5 -3
- package/ccw/dist/config/litellm-api-config-manager.js.map +1 -1
- package/ccw/dist/config/litellm-provider-models.d.ts +73 -0
- package/ccw/dist/config/litellm-provider-models.d.ts.map +1 -0
- package/ccw/dist/config/litellm-provider-models.js +172 -0
- package/ccw/dist/config/litellm-provider-models.js.map +1 -0
- package/ccw/dist/config/provider-models.d.ts +25 -51
- package/ccw/dist/config/provider-models.d.ts.map +1 -1
- package/ccw/dist/config/provider-models.js +84 -149
- package/ccw/dist/config/provider-models.js.map +1 -1
- package/ccw/dist/config/storage-paths.d.ts.map +1 -1
- package/ccw/dist/config/storage-paths.js +23 -5
- package/ccw/dist/config/storage-paths.js.map +1 -1
- package/ccw/dist/core/auth/csrf-middleware.js +3 -3
- package/ccw/dist/core/auth/csrf-middleware.js.map +1 -1
- package/ccw/dist/core/dashboard-generator.d.ts.map +1 -1
- package/ccw/dist/core/dashboard-generator.js +3 -1
- package/ccw/dist/core/dashboard-generator.js.map +1 -1
- package/ccw/dist/core/routes/claude-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/claude-routes.js +206 -14
- package/ccw/dist/core/routes/claude-routes.js.map +1 -1
- package/ccw/dist/core/routes/cli-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/cli-routes.js.map +1 -1
- package/ccw/dist/core/routes/commands-routes.d.ts +7 -0
- package/ccw/dist/core/routes/commands-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/commands-routes.js +480 -0
- package/ccw/dist/core/routes/commands-routes.js.map +1 -0
- package/ccw/dist/core/routes/model-routes.d.ts +11 -0
- package/ccw/dist/core/routes/model-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/model-routes.js +112 -0
- package/ccw/dist/core/routes/model-routes.js.map +1 -0
- package/ccw/dist/core/routes/nav-status-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/nav-status-routes.js +84 -1
- package/ccw/dist/core/routes/nav-status-routes.js.map +1 -1
- package/ccw/dist/core/routes/provider-routes.d.ts +11 -0
- package/ccw/dist/core/routes/provider-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/provider-routes.js +67 -0
- package/ccw/dist/core/routes/provider-routes.js.map +1 -0
- package/ccw/dist/core/routes/skills-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/skills-routes.js +219 -7
- package/ccw/dist/core/routes/skills-routes.js.map +1 -1
- package/ccw/dist/core/routes/system-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/system-routes.js +58 -6
- package/ccw/dist/core/routes/system-routes.js.map +1 -1
- package/ccw/dist/core/server.d.ts.map +1 -1
- package/ccw/dist/core/server.js +13 -0
- package/ccw/dist/core/server.js.map +1 -1
- package/ccw/dist/mcp-server/index.js +2 -2
- package/ccw/dist/mcp-server/index.js.map +1 -1
- package/ccw/dist/tools/claude-cli-tools.d.ts +48 -11
- package/ccw/dist/tools/claude-cli-tools.d.ts.map +1 -1
- package/ccw/dist/tools/claude-cli-tools.js +146 -50
- package/ccw/dist/tools/claude-cli-tools.js.map +1 -1
- package/ccw/dist/tools/cli-config-manager.d.ts +1 -13
- package/ccw/dist/tools/cli-config-manager.d.ts.map +1 -1
- package/ccw/dist/tools/cli-config-manager.js +3 -27
- package/ccw/dist/tools/cli-config-manager.js.map +1 -1
- package/ccw/dist/tools/cli-executor-core.d.ts.map +1 -1
- package/ccw/dist/tools/cli-executor-core.js +7 -2
- package/ccw/dist/tools/cli-executor-core.js.map +1 -1
- package/ccw/dist/tools/cli-executor-state.d.ts.map +1 -1
- package/ccw/dist/tools/cli-history-store.d.ts +11 -0
- package/ccw/dist/tools/cli-history-store.d.ts.map +1 -1
- package/ccw/dist/tools/cli-history-store.js +82 -2
- package/ccw/dist/tools/cli-history-store.js.map +1 -1
- package/ccw/dist/tools/command-registry.d.ts +7 -0
- package/ccw/dist/tools/command-registry.d.ts.map +1 -1
- package/ccw/dist/tools/command-registry.js +14 -1
- package/ccw/dist/tools/command-registry.js.map +1 -1
- package/ccw/dist/tools/generate-module-docs.d.ts.map +1 -1
- package/ccw/dist/tools/generate-module-docs.js +11 -7
- package/ccw/dist/tools/generate-module-docs.js.map +1 -1
- package/ccw/dist/tools/litellm-executor.d.ts +1 -0
- package/ccw/dist/tools/litellm-executor.d.ts.map +1 -1
- package/ccw/dist/tools/litellm-executor.js +11 -9
- package/ccw/dist/tools/litellm-executor.js.map +1 -1
- package/ccw/dist/types/skill-types.d.ts +97 -0
- package/ccw/dist/types/skill-types.d.ts.map +1 -0
- package/ccw/dist/types/skill-types.js +6 -0
- package/ccw/dist/types/skill-types.js.map +1 -0
- package/ccw/src/commands/cli.ts +36 -5
- package/ccw/src/commands/issue.ts +81 -26
- package/ccw/src/config/litellm-api-config-manager.ts +5 -3
- package/ccw/src/config/litellm-provider-models.ts +222 -0
- package/ccw/src/config/provider-models.ts +91 -190
- package/ccw/src/config/storage-paths.ts +20 -5
- package/ccw/src/core/auth/csrf-middleware.ts +3 -3
- package/ccw/src/core/dashboard-generator.ts +3 -1
- package/ccw/src/core/routes/claude-routes.ts +233 -15
- package/ccw/src/core/routes/cli-routes.ts +2 -3
- package/ccw/src/core/routes/commands-routes.ts +620 -0
- package/ccw/src/core/routes/nav-status-routes.ts +95 -1
- package/ccw/src/core/routes/provider-routes.ts +78 -0
- package/ccw/src/core/routes/skills-routes.ts +266 -45
- package/ccw/src/core/routes/system-routes.ts +102 -50
- package/ccw/src/core/server.ts +13 -0
- package/ccw/src/mcp-server/index.ts +2 -2
- package/ccw/src/templates/dashboard-css/18-cli-settings.css +35 -0
- package/ccw/src/templates/dashboard-css/37-commands.css +193 -0
- package/ccw/src/templates/dashboard-js/components/navigation.js +4 -0
- package/ccw/src/templates/dashboard-js/i18n.js +116 -0
- package/ccw/src/templates/dashboard-js/views/cli-manager.js +249 -4
- package/ccw/src/templates/dashboard-js/views/commands-manager.js +503 -0
- package/ccw/src/templates/dashboard-js/views/issue-manager.js +7 -7
- package/ccw/src/templates/dashboard-js/views/mcp-manager.js +2 -7
- package/ccw/src/templates/dashboard-js/views/skills-manager.js +164 -23
- package/ccw/src/templates/dashboard.html +7 -0
- package/ccw/src/tools/claude-cli-tools.ts +170 -56
- package/ccw/src/tools/cli-config-manager.ts +2 -33
- package/ccw/src/tools/cli-executor-core.ts +8 -2
- package/ccw/src/tools/cli-history-store.ts +92 -2
- package/ccw/src/tools/command-registry.ts +16 -1
- package/ccw/src/tools/generate-module-docs.ts +11 -7
- package/ccw/src/tools/litellm-executor.ts +13 -9
- package/ccw/src/types/skill-types.ts +99 -0
- package/package.json +1 -1
- package/.claude/commands/enhance-prompt.md +0 -93
- package/.claude/commands/memory/code-map-memory.md +0 -687
- package/.claude/commands/memory/docs.md +0 -615
- package/.claude/commands/memory/load-skill-memory.md +0 -182
- package/.claude/commands/memory/skill-memory.md +0 -525
- package/.claude/commands/memory/swagger-docs.md +0 -773
- package/.claude/commands/memory/tech-research-rules.md +0 -310
- package/.claude/commands/memory/workflow-skill-memory.md +0 -517
- package/.claude/commands/task/breakdown.md +0 -208
- package/.claude/commands/task/create.md +0 -152
- package/.claude/commands/task/execute.md +0 -270
- package/.claude/commands/task/replan.md +0 -441
- package/.claude/commands/version.md +0 -254
- package/.claude/commands/workflow/action-plan-verify.md +0 -485
- package/.claude/commands/workflow/brainstorm/api-designer.md +0 -587
- package/.claude/commands/workflow/brainstorm/data-architect.md +0 -220
- package/.claude/commands/workflow/brainstorm/product-manager.md +0 -200
- package/.claude/commands/workflow/brainstorm/product-owner.md +0 -200
- package/.claude/commands/workflow/brainstorm/scrum-master.md +0 -200
- package/.claude/commands/workflow/brainstorm/subject-matter-expert.md +0 -200
- package/.claude/commands/workflow/brainstorm/system-architect.md +0 -389
- package/.claude/commands/workflow/brainstorm/ui-designer.md +0 -221
- package/.claude/commands/workflow/brainstorm/ux-expert.md +0 -221
- package/.claude/commands/workflow/debug.md +0 -331
- package/.claude/commands/workflow/develop-with-file.md +0 -1044
- package/.claude/skills/ccw-loop/README.md +0 -303
- package/.claude/skills/skill-generator/templates/script-bash.md +0 -277
- package/.claude/skills/skill-generator/templates/script-python.md +0 -198
- package/.codex/prompts/debug.md +0 -318
- package/ccw/src/core/routes/mcp-routes.ts.backup +0 -549
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "Plan Verification Agent Schema",
|
|
4
|
+
"description": "Defines dimensions, severity rules, and CLI templates for plan verification agent",
|
|
5
|
+
|
|
6
|
+
"dimensions": {
|
|
7
|
+
"A": { "name": "User Intent Alignment", "tier": 1, "severity": "CRITICAL",
|
|
8
|
+
"checks": ["Goal Alignment", "Scope Drift", "Success Criteria Match", "Intent Conflicts"] },
|
|
9
|
+
"B": { "name": "Requirements Coverage", "tier": 1, "severity": "CRITICAL",
|
|
10
|
+
"checks": ["Orphaned Requirements", "Unmapped Tasks", "NFR Coverage Gaps"] },
|
|
11
|
+
"C": { "name": "Consistency Validation", "tier": 1, "severity": "CRITICAL",
|
|
12
|
+
"checks": ["Requirement Conflicts", "Architecture Drift", "Terminology Drift", "Data Model Inconsistency"] },
|
|
13
|
+
"D": { "name": "Dependency Integrity", "tier": 2, "severity": "HIGH",
|
|
14
|
+
"checks": ["Circular Dependencies", "Missing Dependencies", "Broken Dependencies", "Logical Ordering"] },
|
|
15
|
+
"E": { "name": "Synthesis Alignment", "tier": 2, "severity": "HIGH",
|
|
16
|
+
"checks": ["Priority Conflicts", "Success Criteria Mismatch", "Risk Mitigation Gaps"] },
|
|
17
|
+
"F": { "name": "Task Specification Quality", "tier": 3, "severity": "MEDIUM",
|
|
18
|
+
"checks": ["Ambiguous Focus Paths", "Underspecified Acceptance", "Missing Artifacts", "Weak Flow Control"] },
|
|
19
|
+
"G": { "name": "Duplication Detection", "tier": 4, "severity": "LOW",
|
|
20
|
+
"checks": ["Overlapping Task Scope", "Redundant Coverage"] },
|
|
21
|
+
"H": { "name": "Feasibility Assessment", "tier": 4, "severity": "LOW",
|
|
22
|
+
"checks": ["Complexity Misalignment", "Resource Conflicts", "Skill Gap Risks"] }
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
"tiers": {
|
|
26
|
+
"1": { "dimensions": ["A", "B", "C"], "priority": "CRITICAL", "limit": null, "rule": "analysis-review-architecture" },
|
|
27
|
+
"2": { "dimensions": ["D", "E"], "priority": "HIGH", "limit": 15, "rule": "analysis-diagnose-bug-root-cause" },
|
|
28
|
+
"3": { "dimensions": ["F"], "priority": "MEDIUM", "limit": 20, "rule": "analysis-analyze-code-patterns" },
|
|
29
|
+
"4": { "dimensions": ["G", "H"], "priority": "LOW", "limit": 15, "rule": "analysis-analyze-code-patterns" }
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
"severity_rules": {
|
|
33
|
+
"CRITICAL": ["User intent violation", "Synthesis authority violation", "Zero coverage", "Circular/broken deps"],
|
|
34
|
+
"HIGH": ["NFR gaps", "Priority conflicts", "Missing risk mitigation"],
|
|
35
|
+
"MEDIUM": ["Terminology drift", "Missing refs", "Weak flow control"],
|
|
36
|
+
"LOW": ["Style improvements", "Minor redundancy"]
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"quality_gate": {
|
|
40
|
+
"BLOCK_EXECUTION": { "condition": "critical > 0", "emoji": "🛑" },
|
|
41
|
+
"PROCEED_WITH_FIXES": { "condition": "critical == 0 && high > 0", "emoji": "⚠️" },
|
|
42
|
+
"PROCEED_WITH_CAUTION": { "condition": "critical == 0 && high == 0 && medium > 0", "emoji": "✅" },
|
|
43
|
+
"PROCEED": { "condition": "only low or none", "emoji": "✅" }
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
"token_budget": { "total_findings": 50, "early_exit": "CRITICAL > 0 in Tier 1 → skip Tier 3-4" }
|
|
47
|
+
}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "Plan Verification Findings Schema",
|
|
4
|
+
"description": "Schema for plan verification findings output from cli-explore-agent",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": [
|
|
7
|
+
"session_id",
|
|
8
|
+
"timestamp",
|
|
9
|
+
"verification_tiers_completed",
|
|
10
|
+
"findings",
|
|
11
|
+
"summary"
|
|
12
|
+
],
|
|
13
|
+
"properties": {
|
|
14
|
+
"session_id": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "Workflow session ID (e.g., WFS-20250127-143000)",
|
|
17
|
+
"pattern": "^WFS-[0-9]{8}-[0-9]{6}$"
|
|
18
|
+
},
|
|
19
|
+
"timestamp": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "ISO 8601 timestamp when verification was completed",
|
|
22
|
+
"format": "date-time"
|
|
23
|
+
},
|
|
24
|
+
"verification_tiers_completed": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"description": "List of verification tiers completed (e.g., ['Tier 1', 'Tier 2'])",
|
|
27
|
+
"items": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"enum": ["Tier 1", "Tier 2", "Tier 3", "Tier 4"]
|
|
30
|
+
},
|
|
31
|
+
"minItems": 1,
|
|
32
|
+
"maxItems": 4
|
|
33
|
+
},
|
|
34
|
+
"findings": {
|
|
35
|
+
"type": "array",
|
|
36
|
+
"description": "Array of all findings across all dimensions",
|
|
37
|
+
"items": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": [
|
|
40
|
+
"id",
|
|
41
|
+
"dimension",
|
|
42
|
+
"dimension_name",
|
|
43
|
+
"severity",
|
|
44
|
+
"location",
|
|
45
|
+
"summary",
|
|
46
|
+
"recommendation"
|
|
47
|
+
],
|
|
48
|
+
"properties": {
|
|
49
|
+
"id": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"description": "Unique finding ID prefixed by severity (C1, H1, M1, L1)",
|
|
52
|
+
"pattern": "^[CHML][0-9]+$"
|
|
53
|
+
},
|
|
54
|
+
"dimension": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Verification dimension identifier",
|
|
57
|
+
"enum": ["A", "B", "C", "D", "E", "F", "G", "H"]
|
|
58
|
+
},
|
|
59
|
+
"dimension_name": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"description": "Human-readable dimension name",
|
|
62
|
+
"enum": [
|
|
63
|
+
"User Intent Alignment",
|
|
64
|
+
"Requirements Coverage Analysis",
|
|
65
|
+
"Consistency Validation",
|
|
66
|
+
"Dependency Integrity",
|
|
67
|
+
"Synthesis Alignment",
|
|
68
|
+
"Task Specification Quality",
|
|
69
|
+
"Duplication Detection",
|
|
70
|
+
"Feasibility Assessment"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"severity": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"description": "Severity level of the finding",
|
|
76
|
+
"enum": ["CRITICAL", "HIGH", "MEDIUM", "LOW"]
|
|
77
|
+
},
|
|
78
|
+
"location": {
|
|
79
|
+
"type": "array",
|
|
80
|
+
"description": "Array of locations where issue was found (e.g., 'IMPL_PLAN.md:L45', 'task:IMPL-1.2', 'synthesis:FR-03')",
|
|
81
|
+
"items": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"minItems": 1
|
|
85
|
+
},
|
|
86
|
+
"summary": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"description": "Concise summary of the issue (1-2 sentences)",
|
|
89
|
+
"minLength": 10,
|
|
90
|
+
"maxLength": 500
|
|
91
|
+
},
|
|
92
|
+
"recommendation": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"description": "Actionable recommendation to resolve the issue",
|
|
95
|
+
"minLength": 10,
|
|
96
|
+
"maxLength": 500
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"summary": {
|
|
102
|
+
"type": "object",
|
|
103
|
+
"description": "Aggregate summary of verification results",
|
|
104
|
+
"required": [
|
|
105
|
+
"critical_count",
|
|
106
|
+
"high_count",
|
|
107
|
+
"medium_count",
|
|
108
|
+
"low_count",
|
|
109
|
+
"total_findings",
|
|
110
|
+
"coverage_percentage",
|
|
111
|
+
"recommendation"
|
|
112
|
+
],
|
|
113
|
+
"properties": {
|
|
114
|
+
"critical_count": {
|
|
115
|
+
"type": "integer",
|
|
116
|
+
"description": "Number of critical severity findings",
|
|
117
|
+
"minimum": 0
|
|
118
|
+
},
|
|
119
|
+
"high_count": {
|
|
120
|
+
"type": "integer",
|
|
121
|
+
"description": "Number of high severity findings",
|
|
122
|
+
"minimum": 0
|
|
123
|
+
},
|
|
124
|
+
"medium_count": {
|
|
125
|
+
"type": "integer",
|
|
126
|
+
"description": "Number of medium severity findings",
|
|
127
|
+
"minimum": 0
|
|
128
|
+
},
|
|
129
|
+
"low_count": {
|
|
130
|
+
"type": "integer",
|
|
131
|
+
"description": "Number of low severity findings",
|
|
132
|
+
"minimum": 0
|
|
133
|
+
},
|
|
134
|
+
"total_findings": {
|
|
135
|
+
"type": "integer",
|
|
136
|
+
"description": "Total number of findings",
|
|
137
|
+
"minimum": 0
|
|
138
|
+
},
|
|
139
|
+
"coverage_percentage": {
|
|
140
|
+
"type": "number",
|
|
141
|
+
"description": "Percentage of synthesis requirements covered by tasks (0-100)",
|
|
142
|
+
"minimum": 0,
|
|
143
|
+
"maximum": 100
|
|
144
|
+
},
|
|
145
|
+
"recommendation": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Quality gate recommendation",
|
|
148
|
+
"enum": [
|
|
149
|
+
"BLOCK_EXECUTION",
|
|
150
|
+
"PROCEED_WITH_FIXES",
|
|
151
|
+
"PROCEED_WITH_CAUTION",
|
|
152
|
+
"PROCEED"
|
|
153
|
+
]
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
package/.codex/AGENTS.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Codex Code Guidelines
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
## Code Quality Standards
|
|
4
5
|
|
|
5
6
|
### Code Quality
|
|
@@ -21,11 +22,8 @@
|
|
|
21
22
|
- Graceful degradation
|
|
22
23
|
- Don't expose sensitive info
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
25
|
## Core Principles
|
|
27
26
|
|
|
28
|
-
|
|
29
27
|
**Incremental Progress**:
|
|
30
28
|
- Small, testable changes
|
|
31
29
|
- Commit working code frequently
|