claude-code-workflow 6.3.47 → 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.
Files changed (212) hide show
  1. package/.claude/CLAUDE.md +6 -8
  2. package/.claude/agents/action-planning-agent.md +28 -45
  3. package/.claude/agents/cli-lite-planning-agent.md +93 -1
  4. package/.claude/agents/code-developer.md +144 -27
  5. package/.claude/commands/ccw-coordinator.md +182 -24
  6. package/.claude/commands/ccw-debug.md +832 -0
  7. package/.claude/commands/ccw.md +90 -9
  8. package/.claude/commands/cli/cli-init.md +1 -0
  9. package/.claude/commands/issue/convert-to-plan.md +718 -0
  10. package/.claude/commands/issue/from-brainstorm.md +382 -0
  11. package/.claude/commands/memory/tips.md +332 -0
  12. package/.claude/commands/workflow/analyze-with-file.md +804 -0
  13. package/.claude/commands/workflow/brainstorm/auto-parallel.md +18 -43
  14. package/.claude/commands/workflow/brainstorm/role-analysis.md +705 -0
  15. package/.claude/commands/workflow/brainstorm-with-file.md +1153 -0
  16. package/.claude/commands/workflow/debug-with-file.md +7 -5
  17. package/.claude/commands/workflow/execute.md +6 -4
  18. package/.claude/commands/workflow/lite-plan.md +2 -2
  19. package/.claude/commands/workflow/plan-verify.md +162 -327
  20. package/.claude/commands/workflow/plan.md +162 -26
  21. package/.claude/commands/workflow/replan.md +78 -2
  22. package/.claude/commands/workflow/{review-fix.md → review-cycle-fix.md} +6 -6
  23. package/.claude/commands/workflow/review-module-cycle.md +2 -2
  24. package/.claude/commands/workflow/review-session-cycle.md +2 -2
  25. package/.claude/commands/workflow/tools/conflict-resolution.md +16 -26
  26. package/.claude/commands/workflow/tools/context-gather.md +81 -118
  27. package/.claude/commands/workflow/tools/task-generate-agent.md +94 -10
  28. package/.claude/skills/ccw-help/command.json +4 -4
  29. package/.claude/skills/lite-skill-generator/SKILL.md +650 -0
  30. package/.claude/skills/lite-skill-generator/templates/simple-skill.md +68 -0
  31. package/.claude/skills/lite-skill-generator/templates/style-guide.md +64 -0
  32. package/.claude/skills/skill-generator/SKILL.md +277 -85
  33. package/.claude/skills/skill-generator/phases/01-requirements-discovery.md +4 -15
  34. package/.claude/skills/skill-generator/phases/02-structure-generation.md +72 -17
  35. package/.claude/skills/skill-generator/phases/03-phase-generation.md +218 -51
  36. package/.claude/skills/skill-generator/phases/04-specs-templates.md +111 -41
  37. package/.claude/skills/skill-generator/phases/05-validation.md +139 -56
  38. package/.claude/skills/skill-generator/templates/autonomous-action.md +78 -268
  39. package/.claude/skills/skill-generator/templates/autonomous-orchestrator.md +14 -0
  40. package/.claude/skills/skill-generator/templates/code-analysis-action.md +12 -0
  41. package/.claude/skills/skill-generator/templates/llm-action.md +12 -0
  42. package/.claude/skills/skill-generator/templates/script-template.md +368 -0
  43. package/.claude/skills/skill-generator/templates/sequential-phase.md +14 -0
  44. package/.claude/skills/skill-generator/templates/skill-md.md +14 -0
  45. package/.claude/skills/skill-tuning/SKILL.md +130 -266
  46. package/.claude/skills/skill-tuning/phases/orchestrator.md +95 -283
  47. package/.claude/skills/skill-tuning/specs/problem-taxonomy.md +90 -198
  48. package/.claude/skills/skill-tuning/specs/tuning-strategies.md +193 -1345
  49. package/.claude/workflows/cli-templates/schemas/plan-verify-agent-schema.json +47 -0
  50. package/.claude/workflows/cli-templates/schemas/verify-json-schema.json +158 -0
  51. package/.claude/workflows/cli-tools-usage.md +1 -1
  52. package/.codex/AGENTS.md +1 -3
  53. package/.codex/prompts/analyze-with-file.md +607 -0
  54. package/.codex/prompts/brainstorm-to-cycle.md +455 -0
  55. package/.codex/prompts/brainstorm-with-file.md +933 -0
  56. package/.codex/prompts/debug-with-file.md +15 -20
  57. package/.codex/skills/ccw-cli-tools/SKILL.md +559 -0
  58. package/README.md +43 -0
  59. package/ccw/dist/commands/cli.d.ts.map +1 -1
  60. package/ccw/dist/commands/cli.js +29 -5
  61. package/ccw/dist/commands/cli.js.map +1 -1
  62. package/ccw/dist/commands/issue.d.ts +2 -0
  63. package/ccw/dist/commands/issue.d.ts.map +1 -1
  64. package/ccw/dist/commands/issue.js +62 -20
  65. package/ccw/dist/commands/issue.js.map +1 -1
  66. package/ccw/dist/config/litellm-api-config-manager.d.ts.map +1 -1
  67. package/ccw/dist/config/litellm-api-config-manager.js +5 -3
  68. package/ccw/dist/config/litellm-api-config-manager.js.map +1 -1
  69. package/ccw/dist/config/litellm-provider-models.d.ts +73 -0
  70. package/ccw/dist/config/litellm-provider-models.d.ts.map +1 -0
  71. package/ccw/dist/config/litellm-provider-models.js +172 -0
  72. package/ccw/dist/config/litellm-provider-models.js.map +1 -0
  73. package/ccw/dist/config/provider-models.d.ts +25 -51
  74. package/ccw/dist/config/provider-models.d.ts.map +1 -1
  75. package/ccw/dist/config/provider-models.js +84 -149
  76. package/ccw/dist/config/provider-models.js.map +1 -1
  77. package/ccw/dist/config/storage-paths.d.ts.map +1 -1
  78. package/ccw/dist/config/storage-paths.js +23 -5
  79. package/ccw/dist/config/storage-paths.js.map +1 -1
  80. package/ccw/dist/core/auth/csrf-middleware.js +3 -3
  81. package/ccw/dist/core/auth/csrf-middleware.js.map +1 -1
  82. package/ccw/dist/core/dashboard-generator.d.ts.map +1 -1
  83. package/ccw/dist/core/dashboard-generator.js +3 -1
  84. package/ccw/dist/core/dashboard-generator.js.map +1 -1
  85. package/ccw/dist/core/routes/claude-routes.d.ts.map +1 -1
  86. package/ccw/dist/core/routes/claude-routes.js +206 -14
  87. package/ccw/dist/core/routes/claude-routes.js.map +1 -1
  88. package/ccw/dist/core/routes/cli-routes.d.ts.map +1 -1
  89. package/ccw/dist/core/routes/cli-routes.js.map +1 -1
  90. package/ccw/dist/core/routes/commands-routes.d.ts +7 -0
  91. package/ccw/dist/core/routes/commands-routes.d.ts.map +1 -0
  92. package/ccw/dist/core/routes/commands-routes.js +480 -0
  93. package/ccw/dist/core/routes/commands-routes.js.map +1 -0
  94. package/ccw/dist/core/routes/model-routes.d.ts +11 -0
  95. package/ccw/dist/core/routes/model-routes.d.ts.map +1 -0
  96. package/ccw/dist/core/routes/model-routes.js +112 -0
  97. package/ccw/dist/core/routes/model-routes.js.map +1 -0
  98. package/ccw/dist/core/routes/nav-status-routes.d.ts.map +1 -1
  99. package/ccw/dist/core/routes/nav-status-routes.js +84 -1
  100. package/ccw/dist/core/routes/nav-status-routes.js.map +1 -1
  101. package/ccw/dist/core/routes/provider-routes.d.ts +11 -0
  102. package/ccw/dist/core/routes/provider-routes.d.ts.map +1 -0
  103. package/ccw/dist/core/routes/provider-routes.js +67 -0
  104. package/ccw/dist/core/routes/provider-routes.js.map +1 -0
  105. package/ccw/dist/core/routes/skills-routes.d.ts.map +1 -1
  106. package/ccw/dist/core/routes/skills-routes.js +219 -7
  107. package/ccw/dist/core/routes/skills-routes.js.map +1 -1
  108. package/ccw/dist/core/routes/system-routes.d.ts.map +1 -1
  109. package/ccw/dist/core/routes/system-routes.js +58 -6
  110. package/ccw/dist/core/routes/system-routes.js.map +1 -1
  111. package/ccw/dist/core/server.d.ts.map +1 -1
  112. package/ccw/dist/core/server.js +13 -0
  113. package/ccw/dist/core/server.js.map +1 -1
  114. package/ccw/dist/mcp-server/index.js +2 -2
  115. package/ccw/dist/mcp-server/index.js.map +1 -1
  116. package/ccw/dist/tools/claude-cli-tools.d.ts +48 -11
  117. package/ccw/dist/tools/claude-cli-tools.d.ts.map +1 -1
  118. package/ccw/dist/tools/claude-cli-tools.js +146 -50
  119. package/ccw/dist/tools/claude-cli-tools.js.map +1 -1
  120. package/ccw/dist/tools/cli-config-manager.d.ts +1 -13
  121. package/ccw/dist/tools/cli-config-manager.d.ts.map +1 -1
  122. package/ccw/dist/tools/cli-config-manager.js +3 -27
  123. package/ccw/dist/tools/cli-config-manager.js.map +1 -1
  124. package/ccw/dist/tools/cli-executor-core.d.ts.map +1 -1
  125. package/ccw/dist/tools/cli-executor-core.js +7 -2
  126. package/ccw/dist/tools/cli-executor-core.js.map +1 -1
  127. package/ccw/dist/tools/cli-executor-state.d.ts.map +1 -1
  128. package/ccw/dist/tools/cli-history-store.d.ts +11 -0
  129. package/ccw/dist/tools/cli-history-store.d.ts.map +1 -1
  130. package/ccw/dist/tools/cli-history-store.js +82 -2
  131. package/ccw/dist/tools/cli-history-store.js.map +1 -1
  132. package/ccw/dist/tools/command-registry.d.ts +7 -0
  133. package/ccw/dist/tools/command-registry.d.ts.map +1 -1
  134. package/ccw/dist/tools/command-registry.js +14 -1
  135. package/ccw/dist/tools/command-registry.js.map +1 -1
  136. package/ccw/dist/tools/generate-module-docs.d.ts.map +1 -1
  137. package/ccw/dist/tools/generate-module-docs.js +11 -7
  138. package/ccw/dist/tools/generate-module-docs.js.map +1 -1
  139. package/ccw/dist/tools/litellm-executor.d.ts +1 -0
  140. package/ccw/dist/tools/litellm-executor.d.ts.map +1 -1
  141. package/ccw/dist/tools/litellm-executor.js +11 -9
  142. package/ccw/dist/tools/litellm-executor.js.map +1 -1
  143. package/ccw/dist/types/skill-types.d.ts +97 -0
  144. package/ccw/dist/types/skill-types.d.ts.map +1 -0
  145. package/ccw/dist/types/skill-types.js +6 -0
  146. package/ccw/dist/types/skill-types.js.map +1 -0
  147. package/ccw/src/commands/cli.ts +36 -5
  148. package/ccw/src/commands/issue.ts +81 -26
  149. package/ccw/src/config/litellm-api-config-manager.ts +5 -3
  150. package/ccw/src/config/litellm-provider-models.ts +222 -0
  151. package/ccw/src/config/provider-models.ts +91 -190
  152. package/ccw/src/config/storage-paths.ts +20 -5
  153. package/ccw/src/core/auth/csrf-middleware.ts +3 -3
  154. package/ccw/src/core/dashboard-generator.ts +3 -1
  155. package/ccw/src/core/routes/claude-routes.ts +233 -15
  156. package/ccw/src/core/routes/cli-routes.ts +2 -3
  157. package/ccw/src/core/routes/commands-routes.ts +620 -0
  158. package/ccw/src/core/routes/nav-status-routes.ts +95 -1
  159. package/ccw/src/core/routes/provider-routes.ts +78 -0
  160. package/ccw/src/core/routes/skills-routes.ts +266 -45
  161. package/ccw/src/core/routes/system-routes.ts +102 -50
  162. package/ccw/src/core/server.ts +13 -0
  163. package/ccw/src/mcp-server/index.ts +2 -2
  164. package/ccw/src/templates/dashboard-css/18-cli-settings.css +35 -0
  165. package/ccw/src/templates/dashboard-css/37-commands.css +193 -0
  166. package/ccw/src/templates/dashboard-js/components/navigation.js +4 -0
  167. package/ccw/src/templates/dashboard-js/i18n.js +116 -0
  168. package/ccw/src/templates/dashboard-js/views/cli-manager.js +249 -4
  169. package/ccw/src/templates/dashboard-js/views/commands-manager.js +503 -0
  170. package/ccw/src/templates/dashboard-js/views/issue-manager.js +7 -7
  171. package/ccw/src/templates/dashboard-js/views/mcp-manager.js +2 -7
  172. package/ccw/src/templates/dashboard-js/views/skills-manager.js +164 -23
  173. package/ccw/src/templates/dashboard.html +7 -0
  174. package/ccw/src/tools/claude-cli-tools.ts +170 -56
  175. package/ccw/src/tools/cli-config-manager.ts +2 -33
  176. package/ccw/src/tools/cli-executor-core.ts +8 -2
  177. package/ccw/src/tools/cli-history-store.ts +92 -2
  178. package/ccw/src/tools/command-registry.ts +16 -1
  179. package/ccw/src/tools/generate-module-docs.ts +11 -7
  180. package/ccw/src/tools/litellm-executor.ts +13 -9
  181. package/ccw/src/types/skill-types.ts +99 -0
  182. package/package.json +1 -1
  183. package/.claude/commands/enhance-prompt.md +0 -93
  184. package/.claude/commands/memory/code-map-memory.md +0 -687
  185. package/.claude/commands/memory/docs.md +0 -615
  186. package/.claude/commands/memory/load-skill-memory.md +0 -182
  187. package/.claude/commands/memory/skill-memory.md +0 -525
  188. package/.claude/commands/memory/swagger-docs.md +0 -773
  189. package/.claude/commands/memory/tech-research-rules.md +0 -310
  190. package/.claude/commands/memory/workflow-skill-memory.md +0 -517
  191. package/.claude/commands/task/breakdown.md +0 -208
  192. package/.claude/commands/task/create.md +0 -152
  193. package/.claude/commands/task/execute.md +0 -270
  194. package/.claude/commands/task/replan.md +0 -441
  195. package/.claude/commands/version.md +0 -254
  196. package/.claude/commands/workflow/action-plan-verify.md +0 -485
  197. package/.claude/commands/workflow/brainstorm/api-designer.md +0 -587
  198. package/.claude/commands/workflow/brainstorm/data-architect.md +0 -220
  199. package/.claude/commands/workflow/brainstorm/product-manager.md +0 -200
  200. package/.claude/commands/workflow/brainstorm/product-owner.md +0 -200
  201. package/.claude/commands/workflow/brainstorm/scrum-master.md +0 -200
  202. package/.claude/commands/workflow/brainstorm/subject-matter-expert.md +0 -200
  203. package/.claude/commands/workflow/brainstorm/system-architect.md +0 -389
  204. package/.claude/commands/workflow/brainstorm/ui-designer.md +0 -221
  205. package/.claude/commands/workflow/brainstorm/ux-expert.md +0 -221
  206. package/.claude/commands/workflow/debug.md +0 -331
  207. package/.claude/commands/workflow/develop-with-file.md +0 -1044
  208. package/.claude/skills/ccw-loop/README.md +0 -303
  209. package/.claude/skills/skill-generator/templates/script-bash.md +0 -277
  210. package/.claude/skills/skill-generator/templates/script-python.md +0 -198
  211. package/.codex/prompts/debug.md +0 -318
  212. 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
+ }
@@ -14,7 +14,7 @@
14
14
 
15
15
  ### Configuration File
16
16
 
17
- **Path**: `.claude/cli-tools.json`
17
+ **Path**: `~/.claude/cli-tools.json`
18
18
 
19
19
  All tool availability, model selection, and routing are defined in this configuration file.
20
20
 
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