aiox-sdc

Orchestrates the AIOX story development cycle from creation through review and push.

3.1k|952|Updated Dec 9, 2025
One-click install
npx skills add https://github.com/SynkraAI/aios-core --skill aiox-sdc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aiox-sdc
Source: https://github.com/SynkraAI/aios-core/tree/main/.grok/skills/aiox-sdc
Command: npx skills add https://github.com/SynkraAI/aios-core --skill aiox-sdc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinating a full story lifecycle across multiple specialized agents (SM, PO, Dev, QA, DevOps) is error-prone without a defined sequence, leading to skipped validation, unauthorized scope edits, and premature pushes.

Core Features & Use Cases

  • Phased Story Workflow: Runs six phases—create, validate, develop, review, fix, close, and push—each mapped to a dedicated agent and task file.
  • Governance Rules: Enforces constraints such as mandatory validation for non-trivial work, Dev-only code edits, QA-only Done status, and DevOps-only git push and PR creation.
  • Quality Gates: Requires lint, typecheck, and test commands to pass before stories advance.
  • Use Case: A team member activates the cycle to take a backlog story from draft through QA approval and a compliant pull request without skipping review steps.

Quick Start

Invoke the /aiox-sdc command to start the story development cycle for the next backlog story.

Frequently Asked Questions about aiox-sdc

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run the AIOX story development cycle?

Invoke the /aiox-sdc slash command, or prefer the lean orchestrator at /aiox-full-sdc. The cycle walks through create, validate, develop, review, close, and push phases, each handled by its designated agent.

What are the phases of the AIOX SDC workflow?

The cycle has six phases: Create by the SM agent, Validate by PO, Develop by Dev, Review by QA with an optional fix loop, Close by PO, and Push by DevOps. Each phase maps to a specific task file.

Can the dev agent edit story acceptance criteria?

No. The workflow rules state the dev agent must not edit acceptance criteria, title, or scope. Story content changes belong to the SM and PO roles during create and validate phases.

Who is allowed to git push or create pull requests in AIOX SDC?

Only the DevOps agent may run git push or create pull requests. This restriction keeps version control operations centralized and auditable within the workflow.

What quality gates must pass before a story is done?

Stories must pass npm run lint, npm run typecheck, and npm test. Only the QA review can set status to Done, and the close-story phase never changes lifecycle status.

When can the validate phase be skipped in AIOX SDC?

Validation may only be skipped for trivial work. The rules explicitly state that validation must never be skipped for non-trivial stories, ensuring PO review before development begins.