Agent skill
codex-scrum-subagents
Install and operate a Scrum-oriented subagent kit for Codex projects. Use when work should follow Scrum roles or ceremonies such as Product Owner, Scrum Master, backlog refinement, sprint planning, daily scrum, sprint review, retrospective, story delivery, or release readiness with explicit handoffs between planning, implementation, QA, security, UX, and DevOps.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/codex-scrum-subagents
SKILL.md
Codex Scrum Subagents
Overview
Materialize a project-local Scrum kit that adds two layers on top of the existing CodexAI skills:
.agent/for ceremony playbooks, role briefs, and workflow manifests.codex/agents/for native Codex custom-agent TOMLs that follow the official subagent discovery path
Use this skill when the team needs explicit role boundaries and delivery handoffs instead of a single monolithic assistant flow.
Quick Start
- Run
python scripts/install_scrum_subagents.py --help. - Install the bundled kit into the target project:
python scripts/install_scrum_subagents.py --target-root <project-root>
python scripts/install_scrum_subagents.py --target-root <project-root> --native-scope both
- Inspect differences before updating:
python scripts/install_scrum_subagents.py --target-root <project-root> --diff --format json
- Refresh only missing or changed files, with automatic backups for overwritten files:
python scripts/install_scrum_subagents.py --target-root <project-root> --update
- Validate either the bundled kit or an installed
.agenttree:
python scripts/validate_scrum_agent_kit.py --help
python scripts/validate_scrum_agent_kit.py
python scripts/validate_scrum_agent_kit.py --install-root <project-root>/.agent
python scripts/validate_scrum_agent_kit.py --target-root <project-root> --install-dir .meta/.agent --native-scope both
Command Aliases
Use references/command-aliases.md when the user wants a shorthand trigger instead of the raw Python entry point.
Common shortcuts:
$scrum-install: install the local.agentkit plus native.codex/agentsCodex custom agents$scrum-diff: compare installed.agentand.codex/agentsfiles against the source bundle$scrum-update: update only missing or changed files across both layers$scrum-validate: validate the bundle or installed.agentplus.codex/agentstree$story-ready-check,$sprint-plan,$daily-scrum,$story-delivery,$sprint-review,$retro,$release-readiness: jump straight to the ceremony or delivery workflowscripts/run_scrum_alias.py: execute an alias and optionally generate the mapped artifactscripts/generate_scrum_artifact.py: render reusable Scrum markdown artifacts from bundled templates- Workflow artifacts now require complete fields by default; use
--allow-placeholdersonly when you explicitly want a scaffold artifact with_TODO_markers.
What Gets Installed
agents/: Scrum core roles plus delivery specialists tuned for this pack.workflows/: ceremony-driven playbooks for refinement, planning, execution, review, retro, and release.services/: lightweight JSON manifests for docs tooling or UI surfaces.ARCHITECTURE.mdandREADME.md: onboarding docs for the installed.agentkit.assets/artifact-templates/: user story, sprint goal, daily scrum, retrospective, story delivery, and release readiness templates..codex/agents/*.toml: native Codex custom agents rendered from the Scrum role briefs so subagent activity can surface in the Codex app and CLI.
Role Routing
- Start with references/scrum-role-routing.md to choose the right subagent set for the request.
- Load references/scrum-ceremonies.md when the task is driven by a Scrum ceremony rather than a code change.
- Load references/command-aliases.md when the request uses shorthand commands like
$scrum-install,$story-ready-check, or$release-readiness. - Load references/artifact-templates.md when the workflow needs a repeatable markdown output instead of free-form notes.
- Load references/delivery-contracts.md when multiple roles need explicit artifact handoffs.
- Load references/subagent-boundaries.md before large orchestrations so responsibilities do not bleed across roles.
Installation Notes
- Default install targets are
<project-root>/.agentand<project-root>/.codex/agents. --native-scope project|personal|bothcontrols whether native Codex custom agents land in the project, the personal~/.codex/agentsfolder, or both.- Existing pack-managed files in either location block installation unless
--forceis supplied. --diffreports missing, changed, same, and extra files for both the.agentbundle and the native.codex/agentslayer.--updatecopies only missing or changed files across both layers and writes a fresh provenance stamp.- Validator supports both
--install-rootand the symmetric--target-root+--install-dirform so custom install directories stay aligned with native-agent validation. --backup-dirlets the caller choose where overwritten files are archived during update.- The installer writes
.codexai-scrum-kit.jsoninto the installed folder so the project can track provenance and bundle counts. - The installed subagents are designed to call back into existing skills like
codex-plan-writer,codex-domain-specialist,codex-security-specialist,codex-execution-quality-gate, andcodex-project-memoryinstead of duplicating that knowledge. - Restart Codex after installation if you want newly installed native custom agents to be picked up immediately by the app or CLI.
Guardrails
- Keep Product Owner focused on value, backlog, acceptance criteria, and sequencing.
- Keep Scrum Master facilitative; it owns flow and impediments, not solution details or scope decisions.
- Use delivery specialists only after backlog intent and sprint goal are explicit.
- Keep QA, security, and release checks attached to each story before marking it done.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?