Task(model="...") → omit (Codex uses per-role config, not inline model selection)
fork_context: false by default — GSD agents load their own context via <files_to_read> blocks
Parallel fan-out:
Spawn multiple agents → collect agent IDs → wait(ids) for all to complete
Result parsing:
Look for structured markers in agent output: CHECKPOINT, PLAN COMPLETE, SUMMARY, etc.
close_agent(id) after collecting results from each agent
Then suggest Depends on updates to ROADMAP.md.
Run this command BEFORE $gsd-manager to fill in missing Depends on fields and prevent merge conflicts from unordered parallel execution.
1---2name: gsd-analyze-dependencies3description: Gsd Analyze Dependencies4---56<codex_skill_adapter>7## A. Skill Invocation8- This skill is invoked by mentioning `$gsd-analyze-dependencies`.9- Treat all user text after `$gsd-analyze-dependencies` as `{{GSD_ARGS}}`.10- If no arguments are present, treat `{{GSD_ARGS}}` as empty.1112## B. AskUserQuestion → request_user_input Mapping13GSD workflows use `AskUserQuestion` (Claude Code syntax). Translate to Codex `request_user_input`:1415Parameter mapping:16- `header` → `header`17- `question` → `question`18- Options formatted as `"Label" — description` → `{label: "Label", description: "description"}`19- Generate `id` from header: lowercase, replace spaces with underscores2021Batched calls:22- `AskUserQuestion([q1, q2])` → single `request_user_input` with multiple entries in `questions[]`2324Multi-select workaround:25- Codex has no `multiSelect`. Use sequential single-selects, or present a numbered freeform list asking the user to enter comma-separated numbers.2627Execute mode fallback:28- When `request_user_input` is rejected (Execute mode), present a plain-text numbered list and pick a reasonable default.2930## C. Task() → spawn_agent Mapping31GSD workflows use `Task(...)` (Claude Code syntax). Translate to Codex collaboration tools:3233Direct mapping:34- `Task(subagent_type="X", prompt="Y")` → `spawn_agent(agent_type="X", message="Y")`35- `Task(model="...")` → omit (Codex uses per-role config, not inline model selection)36- `fork_context: false` by default — GSD agents load their own context via `<files_to_read>` blocks3738Parallel fan-out:39- Spawn multiple agents → collect agent IDs → `wait(ids)` for all to complete4041Result parsing:42- Look for structured markers in agent output: `CHECKPOINT`, `PLAN COMPLETE`, `SUMMARY`, etc.43- `close_agent(id)` after collecting results from each agent44</codex_skill_adapter>4546<objective>47Analyze the phase dependency graph for the current milestone. For each phase pair, determine if there is a dependency relationship based on:48- File overlap (phases that modify the same files must be ordered)49- Semantic dependencies (a phase that uses an API built by another phase)50- Data flow (a phase that consumes output from another phase)5152Then suggest `Depends on` updates to ROADMAP.md.53</objective>5455<execution_context>56@/home/delorenj/code/bhappy/.codex/get-shit-done/workflows/analyze-dependencies.md57</execution_context>5859<context>60No arguments required. Requires an active milestone with ROADMAP.md.6162Run this command BEFORE `$gsd-manager` to fill in missing `Depends on` fields and prevent merge conflicts from unordered parallel execution.63</context>6465<process>66Execute the analyze-dependencies workflow from @/home/delorenj/code/bhappy/.codex/get-shit-done/workflows/analyze-dependencies.md end-to-end.67Present dependency suggestions clearly and apply confirmed updates to ROADMAP.md.68</process>
Run npx skillmds@latest add delorenj/gsd-analyze-dependencies in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Gsd Analyze Dependencies It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
delorenj (@delorenj) published this skill. Their other Agent Skills are listed on their SkillMD profile.