lantisprime/claude-sdlc

A governance layer for AI-assisted software delivery. Plan, scope, approve, build, test, release — with human sign-off at every gate.

3Stars on the repository
53Mods indexed here, across every type
4mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

analyze

01

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill after Phase 1 Plan to create or intake requirements for a task. Produces requirements with stable IDs (REQ-001, REQ-002, ...), validates each requirement against the project's scope statement, and — critically — halts and asks for UX designs and brand guidelines whenever the work touches a frontend or…

3 4mo ago A 111 tokens original MIT

api-integration

02

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill whenever a task requires integrating with an external or internal API — HTTP clients, SDK calls, gRPC stubs, webhooks, or any network boundary. Verifies that an API spec (OpenAPI/Swagger, GraphQL schema, Protobuf, AsyncAPI, or equivalent) is configured and referenced in the plan or design artifact, then…

3 4mo ago A 218 tokens original MIT

configure

03

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill when the user runs /configure, /configure --needs, or /configure --check. Also auto-invoked by env-detect.sh on fresh install (Layer 0) and by skills that find required config missing at runtime (Layer 2). Guides setup of config/tools.json and config/tools.local.json through a question bank; handles…

3 4mo ago A 88 tokens original MIT

deploy

04

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill during Phase 6 to deploy code that has passed Phase 5 Test. Updates tickets with deployment details when a ticketing system is configured; otherwise generates deployment artifacts as markdown or JSON under .claude/sdlc/deployments/. Never auto-executes a deployment — always proposes and waits for…

3 4mo ago A 91 tokens original MIT

design

05

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill after Phase 2 Analyze to produce the design artifacts a build depends on — application architecture, data/platform/infrastructure/security architecture, test architecture, test cases, technical specifications, and DevOps pipeline design. Validates existing architecture artifacts against current…

3 4mo ago A 109 tokens original MIT

docs

06

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill at the end of any phase that changed SDLC artifacts to update the SDLC documentation tree — the artifact index, requirements traceability matrix, architecture manifest, changelog, and any user-facing docs affected by the change. Also trigger when the user says "update docs", "refresh the index"…

3 4mo ago A 78 tokens original MIT

domain-expert

07

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill during /plan (between scope validation and writing the plan artifact) to inject domain-specific context, gap questions, and regulatory concerns into the plan. Triggers automatically when the plan skill evaluates the task and scope.md against the domain registry in domains/index.json using semantic…

3 4mo ago A 70 tokens original MIT

gate-signoff

08

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill to capture a human phase-gate sign-off through chat rather than requiring the user to manually edit the gate markdown file. Prompts the user with the artifact path, collects a work-item URL (REQ / ticket / CR) as the non-trivial acknowledgment, validates the URL shape against the ticket system…

3 4mo ago A 170 tokens original MIT

help

09

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill when the user runs /help, /help commands, or /help . Shows plugin command reference. Read-only — writes nothing, modifies nothing.

3 4mo ago A 37 tokens original MIT

minimal-code

10

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill alongside the build skill to resist over-engineering. Enforces YAGNI (no speculative features), KISS (the simplest thing that could possibly work), and DRY-when-it-actually-repeats (not DRY-in-advance). Prefer standard library over new dependencies. Prefer editing existing code over creating new files.…

3 4mo ago A 124 tokens original MIT

plan

11

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill at the START of every coding task — new builds, bug fixes, and change requests. Classifies the work item, validates it against project scope, produces a high-level estimate, proposes a technology stack, and checks stack compatibility. Writes a plan artifact to .claude/sdlc/plans/ that every downstream…

3 4mo ago A 130 tokens original MIT

scoping

12

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill whenever a request is ambiguous, vague, or missing critical information — e.g. "fix the login bug" (which one?), "make this faster" (how fast? measured how?), "add caching" (where? invalidation strategy?). Forces clarification BEFORE planning or coding begins, and writes the clarified scope into the…

3 4mo ago A 109 tokens original MIT

security-review

13

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill to review code changes for security concerns before they merge. Covers input validation, authentication and authorization, secrets handling, injection surfaces (SQL, command, template, prompt), unsafe APIs and dependencies, sensitive data handling, and output encoding. Runs against the current diff (NOT…

3 4mo ago A 113 tokens original MIT

start

14

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill when the user runs /start, says "start", "enable the SDLC workflow", "I want to build", "I want to fix", "set up", "get started", or otherwise signals they want to activate or re-enable the SDLC workflow. Handles three distinct paths based on marker state — fresh install (opt-in activation), re-enable…

3 4mo ago A 107 tokens original MIT

status

15

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill when the user asks "where am I", "what's the current task", "what's blocking me", "show status", "what needs sign-off", or "what's next". Prints a snapshot of the active plan, gate, sign-off progress, and next action. Reads only — writes nothing.

3 4mo ago A 67 tokens original MIT

support

16

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill during Phase 7 after a successful deployment to generate or update monitoring, logging, alerting, and observability artifacts that catch exceptions and issues in the deployed code. Produces platform-neutral scripts when no observability platform is configured, and integrates with…

3 4mo ago A 100 tokens original MIT

surgical-edit

17

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill on EVERY Edit, Write, or code-modification tool call. Enforces minimum-diff discipline — only touch files listed in the plan's in-scope list, only modify functions listed in the plan's in-scope functions, never modify adjacent functions, never refactor or rename unrelated code, never "fix while you're…

3 4mo ago A 115 tokens original MIT

suspend

18

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill when the user runs /suspend or asks to pause, disable, or temporarily turn off the SDLC workflow. Disables enforcement by snapshotting governance artifacts and switching the active marker to .suspended. Requires a stated reason. Hard-blocks if workflow is not currently enabled.

3 4mo ago A 62 tokens original MIT

test

19

lantisprime/claude-sdlc

Skill Claude CodeCodex

Use this skill during Phase 5 to execute functional tests, record results, log defects, and validate UX conformance. Logs defects to Git Issues when available, otherwise to markdown (or JSON, per config) under .claude/sdlc/defects/. Reports code coverage against the configured threshold. Triggered after build is…

3 4mo ago A 97 tokens original MIT