telus-labs/stagecraft

Run your AI coding tool through a 18-stage dev pipeline. Multi-host across Claude Code, Codex, Gemini CLI and OpenAI API compatible endpoints. Artifacts and gates on disk, not a chat log.

6Stars on the repository
24Mods indexed here, across every type
5d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

telus-labs/stagecraft

Instructions file CodexOpenCode

Instructions for telus-labs/stagecraft, covering agents.md, start here (in order), test and lint commands, where things live and load-bearing contracts (do not break without an adr).

6 5d ago A 1,093 tokens original MIT

audit-quick

02

telus-labs/stagecraft

Command

Run a quick codebase orientation scan — Phases 0 and 1 only (architecture map + health assessment). Skips deep analysis (security, performance, code quality) and the roadmap. Good for onboarding onto a new project or a fast pre-review checkup. Run /audit --resume later to continue with the deep phases.

6 5d ago A 67 tokens original MIT

audit

03

telus-labs/stagecraft

Command

Run a structured codebase audit. Maps the architecture, assesses health (compliance, tests, docs), performs deep analysis (security, performance, code quality), and synthesizes a prioritized roadmap. Outputs land under docs/audit/ in this project. Phases 0-3 with human checkpoints between each phase. Use /audit-quick…

6 5d ago A 78 tokens original MIT

devteam

04

telus-labs/stagecraft

Command

Run a stage of the Stagecraft pipeline. Wraps the devteam CLI so you can dispatch a stage (PM brief, design, build, review, QA, deploy, etc.) from inside Claude Code. The CLI emits the role-specific prompt; you invoke the matching subagent (under .claude/agents/) to do the work.

6 5d ago A 71 tokens original MIT

accessibility-audit

05

telus-labs/stagecraft

Skill Claude CodeCodex

Run a WCAG accessibility audit on UI changes at Stage 6b. Uses axe-core, pa11y, or Lighthouse to check affected pages and components. Produces pipeline/accessibility-report.md and writes the stage-06b gate. Use when a change touched frontend UI. Skip (with auditskippedreason) for backend-only or doc-only changes.

6 5d ago A 77 tokens original MIT

api-conventions

06

telus-labs/stagecraft

Skill Claude CodeCodex

Project-wide API design standards. Load this when designing or implementing REST endpoints, request/response shapes, status codes, versioning, or pagination. Defines conventions for resource naming, HTTP method usage, error response format, and header requirements.

6 5d ago A 51 tokens original MIT

audit

07

telus-labs/stagecraft

Skill Claude CodeCodex

Run a structured codebase audit — map architecture, assess health (compliance / tests / docs), perform deep analysis (security / performance / code quality), and synthesize a prioritized roadmap. Use this skill when the user says things like 'audit the codebase', 'understand this project', 'find problems', '/audit'…

6 5d ago A 103 tokens original MIT

code-conventions

08

telus-labs/stagecraft

Skill Claude CodeCodex

Project-wide coding standards for naming, formatting, error handling, security, and testing. Load this when writing or reviewing code. Covers all layers (files, functions, classes, constants, database columns) and languages in use. Do not duplicate these rules in agent prompts — load this skill instead.

6 5d ago A 63 tokens original MIT

implement

09

telus-labs/stagecraft

Skill Claude CodeCodex

Plan, execute, verify, and commit a single codebase improvement. Use this skill whenever the user says things like 'implement [item]', 'work on [roadmap item]', 'fix [finding from audit]', 'plan the change for [item]', 'execute the plan', or 'verify the changes'. Also triggers on 'next item from the roadmap' or 'pick…

6 5d ago A 122 tokens original MIT

migration-safety

10

telus-labs/stagecraft

Skill Claude CodeCodex

Review the migration-safety story for a data-layer change at stage-04d. Use this skill when the user says 'review this migration', 'is this rollback plan solid', '/migration-safety', or when the orchestrator invokes the migrations role for stage-04d. The skill walks schema delta → breaking-change classification →…

6 5d ago A 94 tokens original MIT

telus-labs/stagecraft

Skill Claude CodeCodex

Verify at Stage 6c that every metric, log, and trace promised in the design-spec is actually emitted by the shipped code. Runs on full and hotfix tracks only. Produces the stage-06c gate. Use when the platform role owns observability sign-off after build and QA.

6 5d ago A 65 tokens original MIT

performance-budget

12

telus-labs/stagecraft

Skill Claude CodeCodex

Measure Lighthouse performance scores, bundle size delta, and/or k6 load-test throughput at Stage 6e. Compares against project budgets (performance.budget.json or .devteam/config.yml defaults). Produces pipeline/performance-report.md and writes the stage-06e gate. Gate FAILs when any budget is exceeded. Skip with…

6 5d ago A 81 tokens original MIT

platform-build

13

telus-labs/stagecraft

Skill Claude CodeCodex

Platform Developer: Stage 4 build task. Docker Compose setup, infra config, PR summary authoring, and Stage 4 gate writing for the platform workstream.

6 5d ago A 36 tokens original MIT

platform-deploy

14

telus-labs/stagecraft

Skill Claude CodeCodex

Platform Developer: Stage 8 deploy task. Adapter-driven deployment — read config.yml for the adapter, follow adapter instructions, write deploy-log.md and stage-08.json.

6 5d ago A 38 tokens original MIT

platform-pre-review

15

telus-labs/stagecraft

Skill Claude CodeCodex

Platform Developer: Stage 4a pre-review task. Run lint, type-check, SCA, license check, security trigger, and hygiene checks. Produce pipeline/gates/stage-04a.json.

6 5d ago A 45 tokens original MIT

pre-pr-review

16

telus-labs/stagecraft

Skill Claude CodeCodex

Review the current branch before creating a pull request. Use this skill whenever the user says 'review my changes', 'review this branch', 'pre-PR review', 'check before I merge', 'is this ready to merge', 'review before PR', or 'code review'. Also triggers on 'check my work' or 'anything I missed?' when there are…

6 5d ago A 124 tokens original MIT

qa-augmentation

17

telus-labs/stagecraft

Skill Claude CodeCodex

QA Developer: Stage 4c-qa post-red-team test augmentation. Write regression tests for every addressed red-team finding before Stage 5 begins. Only fires after red-team WARN/PASS following fix cycles.

6 5d ago A 46 tokens original MIT

qa-test-authoring

18

telus-labs/stagecraft

Skill Claude CodeCodex

QA Developer: Stage 6 test-authoring phase. Map every acceptance criterion to at least one test, write the test suite, and produce pipeline/pr-qa.md. Does NOT run the suite — that is the test-execution phase (skills/qa-test-execution/SKILL.md).

6 5d ago A 64 tokens original MIT

qa-test-execution

19

telus-labs/stagecraft

Skill Claude CodeCodex

QA Developer: Stage 6 test-execution phase. Run the full test suite, produce pipeline/test-report.md, and write pipeline/gates/stage-06.json. Use after test authoring (skills/qa-test-authoring/SKILL.md).

6 5d ago A 56 tokens original MIT

red-team

20

telus-labs/stagecraft

Skill Claude CodeCodex

Run an adversarial review on what was just built. Use this skill when the user says 'red team this', 'find what could break', '/red-team', or when the orchestrator invokes the red-team role for stage-04c. The skill walks 10 attack surfaces, produces concrete reproducers (not vibes), triages findings by severity ×…

6 5d ago A 117 tokens original MIT

review-rubric

21

telus-labs/stagecraft

Skill Claude CodeCodex

Standard code review checklist for all reviewers. Load this when performing a peer review at Stage 5. Covers spec compliance, correctness, security, test coverage, readability, and performance. Defines what constitutes APPROVED vs CHANGESREQUESTED and how to write review findings.

6 5d ago A 58 tokens original MIT

security-checklist

22

telus-labs/stagecraft

Skill Claude CodeCodex

Security review checklist. Load this during design review, implementation, and code review. Every item is a potential BLOCKER if violated. Covers input validation, authentication/authorisation, data handling, secrets management, dependency hygiene, and logging. Use alongside the security role brief at Stage 4b.

6 5d ago A 63 tokens original MIT

spec-authoring

23

telus-labs/stagecraft

Skill Claude CodeCodex

G2 — translate a numbered acceptance-criteria list (AC-1, AC-2, ...) from pipeline/brief.md into Gherkin scenarios in pipeline/spec.feature. One Scenario per AC, tagged @AC-N. Drives stage-03b (executable-spec) and enables zero-drift mapping through QA.

6 5d ago A 68 tokens original MIT

telus-labs/stagecraft

Skill Claude CodeCodex

G7 — apply property-based testing, mutation testing, and formal verification as a stage-06d sub-stage. "Tests pass" becomes the floor; this skill raises the ceiling. Use after stage-06 PASS, when the diff contains pure functions / critical business logic / state machines worth verifying beyond examples.

6 5d ago A 67 tokens original MIT

At most 3 mods per repository are shown here — the rest are on their repository pages: