claude-code-workflow 7.2.16 → 7.2.17

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 (40) hide show
  1. package/.codex/agents/{action-planning-agent.md → action-planning-agent.toml} +8 -17
  2. package/.codex/agents/{cli-discuss-agent.md → cli-discuss-agent.toml} +391 -391
  3. package/.codex/agents/{cli-execution-agent.md → cli-execution-agent.toml} +334 -333
  4. package/.codex/agents/{cli-explore-agent.md → cli-explore-agent.toml} +8 -7
  5. package/.codex/agents/{cli-lite-planning-agent.md → cli-lite-planning-agent.toml} +8 -13
  6. package/.codex/agents/{cli-planning-agent.md → cli-planning-agent.toml} +553 -562
  7. package/.codex/agents/{code-developer.md → code-developer.toml} +9 -18
  8. package/.codex/agents/{conceptual-planning-agent.md → conceptual-planning-agent.toml} +304 -321
  9. package/.codex/agents/{context-search-agent.md → context-search-agent.toml} +8 -17
  10. package/.codex/agents/{debug-explore-agent.md → debug-explore-agent.toml} +437 -436
  11. package/.codex/agents/{doc-generator.md → doc-generator.toml} +325 -334
  12. package/.codex/agents/{issue-plan-agent.md → issue-plan-agent.toml} +8 -7
  13. package/.codex/agents/{issue-queue-agent.md → issue-queue-agent.toml} +312 -311
  14. package/.codex/agents/{memory-bridge.md → memory-bridge.toml} +9 -6
  15. package/.codex/agents/{tdd-developer.md → tdd-developer.toml} +500 -512
  16. package/.codex/agents/{test-action-planning-agent.md → test-action-planning-agent.toml} +676 -684
  17. package/.codex/agents/{test-context-search-agent.md → test-context-search-agent.toml} +8 -18
  18. package/.codex/agents/{test-fix-agent.md → test-fix-agent.toml} +9 -23
  19. package/.codex/agents/{ui-design-agent.md → ui-design-agent.toml} +8 -26
  20. package/.codex/agents/{universal-executor.md → universal-executor.toml} +9 -18
  21. package/.codex/skills/brainstorm/SKILL.md +3 -3
  22. package/.codex/skills/brainstorm-with-file/SKILL.md +17 -19
  23. package/.codex/skills/clean/SKILL.md +2 -2
  24. package/.codex/skills/issue-discover/SKILL.md +3 -3
  25. package/.codex/skills/issue-discover/phases/02-discover.md +6 -6
  26. package/.codex/skills/issue-discover/phases/03-discover-by-prompt.md +4 -4
  27. package/.codex/skills/parallel-dev-cycle/phases/02-agent-execution.md +8 -8
  28. package/.codex/skills/review-cycle/SKILL.md +3 -3
  29. package/.codex/skills/review-cycle/phases/02-parallel-review.md +26 -26
  30. package/.codex/skills/review-cycle/phases/04-iterative-deep-dive.md +18 -18
  31. package/.codex/skills/review-cycle/phases/07-fix-parallel-planning.md +2 -2
  32. package/.codex/skills/review-cycle/phases/08-fix-execution.md +2 -2
  33. package/.codex/skills/roadmap-with-file/SKILL.md +9 -9
  34. package/.codex/skills/spec-setup/SKILL.md +2 -2
  35. package/.codex/skills/workflow-plan/SKILL.md +5 -5
  36. package/.codex/skills/workflow-tdd-plan/SKILL.md +4 -4
  37. package/.codex/skills/workflow-test-fix-cycle/SKILL.md +14 -14
  38. package/.codex/skills/workflow-test-fix-cycle/phases/01-test-fix-gen.md +12 -12
  39. package/.codex/skills/workflow-test-fix-cycle/phases/02-test-cycle-execute.md +6 -6
  40. package/package.json +1 -1
@@ -1,10 +1,10 @@
1
- ---
2
- name: cli-explore-agent
3
- description: |
4
- Read-only code exploration agent with dual-source analysis strategy (Bash + Gemini CLI).
5
- Orchestrates 4-phase workflow: Task Understanding → Analysis Execution → Schema Validation → Output Generation
6
- color: yellow
7
- ---
1
+ name = "cli_explore_agent"
2
+ description = "Read-only code exploration agent with dual-source analysis strategy (Bash + Gemini CLI)."
3
+ model = "gpt-5.4"
4
+ model_reasoning_effort = "high"
5
+ sandbox_mode = "read-only"
6
+
7
+ developer_instructions = """
8
8
 
9
9
  You are a specialized CLI exploration agent that autonomously analyzes codebases and generates structured outputs.
10
10
 
@@ -229,3 +229,4 @@ Brief summary:
229
229
  **Consumption Pattern**:
230
230
  - Plan phase: Fully consumes `exploration-notes.md`
231
231
  - Execute phase: Consumes `exploration-notes-refined.md`, reduced noise, improved efficiency
232
+ """
@@ -1,16 +1,10 @@
1
- ---
2
- name: cli-lite-planning-agent
3
- description: |
4
- Generic planning agent for lite-plan, collaborative-plan, and lite-fix workflows. Generates structured plan JSON based on provided schema reference.
5
-
6
- Core capabilities:
7
- - Schema-driven output (plan-json-schema or fix-plan-json-schema)
8
- - Task decomposition with dependency analysis
9
- - CLI execution ID assignment for fork/merge strategies
10
- - Multi-angle context integration (explorations or diagnoses)
11
- - Process documentation (planning-context.md) for collaborative workflows
12
- color: cyan
13
- ---
1
+ name = "cli_lite_planning_agent"
2
+ description = "Generic planning agent for lite-plan, collaborative-plan, and lite-fix workflows. Generates structured plan JSON based on provided schema reference."
3
+ model = "gpt-5.4"
4
+ model_reasoning_effort = "high"
5
+ sandbox_mode = "workspace-write"
6
+
7
+ developer_instructions = """
14
8
 
15
9
  You are a generic planning agent that generates structured plan JSON for lite workflows. Output format is determined by the schema reference provided in the prompt. You execute CLI planning tools (Gemini/Qwen), parse results, and generate planObject conforming to the specified schema.
16
10
 
@@ -904,3 +898,4 @@ After Phase 4 planObject generation:
904
898
  5. **Return** → Plan with `_metadata.quality_check` containing execution result
905
899
 
906
900
  **CLI Fallback**: Gemini → Qwen → Skip with warning (if both fail)
901
+ """