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.
- package/.codex/agents/{action-planning-agent.md → action-planning-agent.toml} +8 -17
- package/.codex/agents/{cli-discuss-agent.md → cli-discuss-agent.toml} +391 -391
- package/.codex/agents/{cli-execution-agent.md → cli-execution-agent.toml} +334 -333
- package/.codex/agents/{cli-explore-agent.md → cli-explore-agent.toml} +8 -7
- package/.codex/agents/{cli-lite-planning-agent.md → cli-lite-planning-agent.toml} +8 -13
- package/.codex/agents/{cli-planning-agent.md → cli-planning-agent.toml} +553 -562
- package/.codex/agents/{code-developer.md → code-developer.toml} +9 -18
- package/.codex/agents/{conceptual-planning-agent.md → conceptual-planning-agent.toml} +304 -321
- package/.codex/agents/{context-search-agent.md → context-search-agent.toml} +8 -17
- package/.codex/agents/{debug-explore-agent.md → debug-explore-agent.toml} +437 -436
- package/.codex/agents/{doc-generator.md → doc-generator.toml} +325 -334
- package/.codex/agents/{issue-plan-agent.md → issue-plan-agent.toml} +8 -7
- package/.codex/agents/{issue-queue-agent.md → issue-queue-agent.toml} +312 -311
- package/.codex/agents/{memory-bridge.md → memory-bridge.toml} +9 -6
- package/.codex/agents/{tdd-developer.md → tdd-developer.toml} +500 -512
- package/.codex/agents/{test-action-planning-agent.md → test-action-planning-agent.toml} +676 -684
- package/.codex/agents/{test-context-search-agent.md → test-context-search-agent.toml} +8 -18
- package/.codex/agents/{test-fix-agent.md → test-fix-agent.toml} +9 -23
- package/.codex/agents/{ui-design-agent.md → ui-design-agent.toml} +8 -26
- package/.codex/agents/{universal-executor.md → universal-executor.toml} +9 -18
- package/.codex/skills/brainstorm/SKILL.md +3 -3
- package/.codex/skills/brainstorm-with-file/SKILL.md +17 -19
- package/.codex/skills/clean/SKILL.md +2 -2
- package/.codex/skills/issue-discover/SKILL.md +3 -3
- package/.codex/skills/issue-discover/phases/02-discover.md +6 -6
- package/.codex/skills/issue-discover/phases/03-discover-by-prompt.md +4 -4
- package/.codex/skills/parallel-dev-cycle/phases/02-agent-execution.md +8 -8
- package/.codex/skills/review-cycle/SKILL.md +3 -3
- package/.codex/skills/review-cycle/phases/02-parallel-review.md +26 -26
- package/.codex/skills/review-cycle/phases/04-iterative-deep-dive.md +18 -18
- package/.codex/skills/review-cycle/phases/07-fix-parallel-planning.md +2 -2
- package/.codex/skills/review-cycle/phases/08-fix-execution.md +2 -2
- package/.codex/skills/roadmap-with-file/SKILL.md +9 -9
- package/.codex/skills/spec-setup/SKILL.md +2 -2
- package/.codex/skills/workflow-plan/SKILL.md +5 -5
- package/.codex/skills/workflow-tdd-plan/SKILL.md +4 -4
- package/.codex/skills/workflow-test-fix-cycle/SKILL.md +14 -14
- package/.codex/skills/workflow-test-fix-cycle/phases/01-test-fix-gen.md +12 -12
- package/.codex/skills/workflow-test-fix-cycle/phases/02-test-cycle-execute.md +6 -6
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
+
"""
|