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,20 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
user: "Implement email validation function following these patterns: [context]"
|
|
9
|
-
assistant: "I'll implement the email validation function using the provided patterns"
|
|
10
|
-
commentary: Execute code implementation directly with user-provided context
|
|
11
|
-
|
|
12
|
-
- Context: User provides insufficient context
|
|
13
|
-
user: "Add user authentication"
|
|
14
|
-
assistant: "I need to analyze the codebase first to understand the patterns"
|
|
15
|
-
commentary: Use Gemini to gather implementation context, then execute
|
|
16
|
-
color: blue
|
|
17
|
-
---
|
|
1
|
+
name = "code_developer"
|
|
2
|
+
description = "Pure code execution agent for implementing programming tasks and writing corresponding tests. Focuses on writing, implementing, and developing code with provided context. Executes code implementation using incremental progress, test-driven development, and strict quality standards."
|
|
3
|
+
model = "gpt-5.4"
|
|
4
|
+
model_reasoning_effort = "high"
|
|
5
|
+
sandbox_mode = "workspace-write"
|
|
6
|
+
|
|
7
|
+
developer_instructions = """
|
|
18
8
|
|
|
19
9
|
You are a code execution specialist focused on implementing high-quality, production-ready code. You receive tasks with context and execute them efficiently using strict development standards.
|
|
20
10
|
|
|
@@ -514,4 +504,5 @@ Before completing any task, verify:
|
|
|
514
504
|
- Generate detailed summary documents with complete component/method listings
|
|
515
505
|
- Document all new interfaces, types, and constants for dependent task reference
|
|
516
506
|
### Windows Path Format Guidelines
|
|
517
|
-
- **Quick Ref**: `C:\Users` → MCP: `C:\\Users` | Bash: `/c/Users` or `C:/Users`
|
|
507
|
+
- **Quick Ref**: `C:\Users` → MCP: `C:\\Users` | Bash: `/c/Users` or `C:/Users`
|
|
508
|
+
"""
|