From agentic-sdlc
Use when the user asks Codex to run, continue, initialize, validate, review, or create a PR through the agentic-sdlc ticket-to-PR cycle.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-sdlc:agentic-sdlcThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This is the Codex adapter for the existing agentic-sdlc plugin. Keep the Claude Code command and agent documents as the source of truth; do not duplicate their workflows into this skill.
This is the Codex adapter for the existing agentic-sdlc plugin. Keep the Claude Code command and agent documents as the source of truth; do not duplicate their workflows into this skill.
From this skill directory, resolve the canonical workflow files at:
| Task | Source |
|---|---|
| Initialize project config | ../../commands/init.md |
| Build a ticket track | ../../commands/intake.md |
| Implement requirements | ../../commands/implement.md |
| Validate with Playwright/demo artifacts | ../../commands/validate.md |
| Run code/security/standards review | ../../commands/review.md |
| Create PR | ../../commands/pr.md |
| Address PR comments | ../../commands/pr-comments.md |
| Revalidate | ../../commands/revalidate.md |
| Run the whole loop | ../../commands/cycle.md |
| Phase agent guidance | ../../agents/*.md |
| Data contracts | ../../schemas/*.json |
| Artifact templates | ../../templates/*.template.* |
allowed-tools, argument-hint, Agent, AskUserQuestion, WebFetch, Read, Write, Edit, Glob, and Grep; use the equivalent Codex tools and normal conversation instead._/sdlc-config.md, _/tracks/<TICKET>.md, _/recordings/, and _/demo/ exactly as the command docs specify.schemas/track.schema.json and schemas/sdlc-config.schema.json whenever writing or validating structured frontmatter.agents/*.md instructions._/ unless the source workflow explicitly says to edit project files._/, real credentials, .env files, validation recordings, or other local-only artifacts.Users may still say the Claude-style names. Interpret them as:
| User says | Codex action |
|---|---|
/agentic-sdlc:init | Follow ../../commands/init.md |
/agentic-sdlc:intake | Follow ../../commands/intake.md |
/agentic-sdlc:implement | Follow ../../commands/implement.md |
/agentic-sdlc:validate | Follow ../../commands/validate.md |
/agentic-sdlc:review | Follow ../../commands/review.md |
/agentic-sdlc:pr | Follow ../../commands/pr.md |
/agentic-sdlc:pr-comments | Follow ../../commands/pr-comments.md |
/agentic-sdlc:revalidate | Follow ../../commands/revalidate.md |
/agentic-sdlc:cycle | Follow ../../commands/cycle.md |
A phase is complete only when its source document's gate passes. If the gate fails, stop, summarize the failing condition, and give the next exact phase/action to run.
npx claudepluginhub inperegelion/agentic-sdlc --plugin agentic-sdlcGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.