mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-26 19:56:37 +08:00
feat: convert all codex agent definitions from .md to .toml format
Convert 20 agent .md files to Codex-native .toml format with proper metadata (name, description, model, sandbox_mode, developer_instructions). Update all 19 skill files to use agent_type references instead of .md file paths. Remove "Read role definition" bootstrapping step from spawn messages since TOML developer_instructions replaces it. Agent format: YAML frontmatter + body → TOML with inline instructions Calling schema: agent: "path.md" → agent_type: "toml_name" Sandbox: read-only for exploration agents, workspace-write for executors Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -69,7 +69,7 @@ Dual-mode brainstorming with CSV-driven parallel role analysis. Auto mode runs a
|
||||
│ ═══ Single Role Mode ═══ │
|
||||
│ │
|
||||
│ Phase 3S: Single Role Analysis (spawn_agent) │
|
||||
│ ├─ spawn_agent(conceptual-planning-agent) │
|
||||
│ ├─ spawn_agent(conceptual_planning_agent) │
|
||||
│ └─ Output: {role}/analysis*.md │
|
||||
│ │
|
||||
└──────────────────────────────────────────────────────────────────┘
|
||||
@@ -536,7 +536,7 @@ if (executionMode === 'single-role') {
|
||||
Bash(`mkdir -p "${roleDir}"`)
|
||||
|
||||
const agentId = spawn_agent({
|
||||
agent: `~/.codex/agents/conceptual-planning-agent.md`,
|
||||
agent_type: "conceptual_planning_agent",
|
||||
instruction: `
|
||||
Perform a ${roleName} analysis for the brainstorming session.
|
||||
|
||||
@@ -594,7 +594,7 @@ Follow the same analysis protocol as wave role analysis but with interactive ref
|
||||
|
||||
```javascript
|
||||
const synthesisAgent = spawn_agent({
|
||||
agent: `~/.codex/agents/conceptual-planning-agent.md`,
|
||||
agent_type: "conceptual_planning_agent",
|
||||
instruction: `
|
||||
## SYNTHESIS ASSIGNMENT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user