agentsclimarketplace

Sdlc

Skill enocgit/sdlc-kit/skills/sdlc

A portable, tool-agnostic, plan-gated pipeline for building quality software with AI agents.

Install
npx -y skills add enocgit/sdlc-kit --skill sdlc

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 24 days oldThe repository was created 24 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Orchestrates an end-to-end, plan-gated software build pipeline: routes each stage to the right skill while enforcing human approval gates. Covers discovery, PRD, stress-test, architecture, API contracts, decomposition, implementation, QA, review, landing, and retro. The single entry point for the workflow. Use when the user wants to build a feature or product the disciplined way, start or resume structured development, asks "what stage are we at" / "what's next", or says "start the sdlc" / "run the pipeline".

SKILL.md

23.2 KB, ~5.9k tokens by cl100k_base, as published. Nobody here has run it

sdlc — the conductor

You are running a fixed, plan-gated pipeline. Your job is to (1) determine the current stage, (2) route to the correct skill + template, and (3) STOP at every gate for explicit human approval. You guide; you do not silently skip ahead.

Two altitudes (read this first)

Artifacts live at two altitudes — keep them straight:

  • Project-level (foundation) — set once, early (Stage 0): the product PRD (docs/prd/0000-product.md), the few cross-cutting ADRs (stack, repo layout, auth, datastore, API style), the architecture skeleton, and the core contract. These belong to no single feature.
  • Feature-level — produced per feature (Stages 1–8): a brief, a feature PRD, feature ADR(s), and a contract slice.

Don't design every feature up front — but DO lock the handful of foundational decisions a first feature can't start without. Let everything else emerge per-feature.

First: orient

Resolve skills from the skill dirs. Look for this pipeline's skills in the user-global dirs (~/.agents/skills, ~/.claude/skills) and the project's local skills dir — not the project alone. A skill may be installed globally; don't assume a stage's skill is missing just because it isn't vendored in the repo. If it's in neither place, resolve in this order: (1) use the named skill if present; (2) else use your runtime's equivalent — several stage skills are named after Claude Code's commands (code-review, simplify, verify, run, security-review) and other runtimes have their own (e.g. Codex reviewcode-review), so use that; (3) only if there's no skill and no runtime equivalent, use the manual fallback in required-skills.yml.

  1. Read AGENTS.md and docs/context.md. Stage 0 is incomplete if either is missing OR still contains template markers — an unfilled docs/context.md carries a > STATUS: TEMPLATE line and/or {placeholder} tokens. The installer ships these files pre-created, so do NOT rely on existence alone: check the context is actually filled. If Stage 0 is incomplete, run the on-ramp and treat "context filled" as a gate — do not advance to Discovery until the STATUS marker is gone and the sections are completed for this project:
    • bootstrap (new project, little/no code): two parts —
      • 0a Context: the kit's installer already scaffolded docs/, AGENTS.md, and the one-line CLAUDE.md pointer — if any are missing, re-run the kit's install.sh (it's non-destructive) rather than recreating them by hand. Then interactively fill docs/context.md. Do NOT run init — there's no codebase yet. Gate: context filled.
      • 0b Foundation: produce the project-level artifacts — a product PRD at docs/prd/0000-product.md, the few unavoidable cross-cutting ADRs (stack, repo layout, auth, datastore, API style), the architecture.md skeleton, and a core contract scaffold. Keep it minimal: only decisions a first feature genuinely can't start without — let the rest emerge per-feature. GATE: approve the foundation before Discovery.
    • adopt (existing codebase): run improve-codebase-architecture (and init) to reverse-engineer context.md + architecture.md and backfill the foundational ADRs (stack, repo, auth, datastore already baked into the code). That reverse-engineered set IS the project-level foundation. Note known tech-debt / risky areas in architecture.md (and file actionable ones as issues); the first feature to validate the workflow is simply your first Stage 1 Spec. GATE: approve.
    • If these files already exist (AGENTS.md/CLAUDE.md/docs/), do NOT overwrite. Merge: back up or section-merge, preserve the team's content, surface conflicts. Never clobber.
  2. Right-size the path. Classify the change before routing:
    • Feature / user-facing / risky → full pipeline (0→8).
    • Bug fix / small enhancement → skip to 4 Implement → 5 QA → 6 Review (reference an issue; no PRD/contract/ADR).
    • Chore / docs / dep bump4 → 6, trivial diff, CI green.
    • The moment a "small" change touches a contract, a security-sensitive area, or makes a decision, it graduates to the full path. When unsure, ask.
  3. Read the tracker (via gh / project-status) and the active PRD to infer the current stage and feature (local-only mode: read docs/progress.md).
  4. State the chosen path, current stage, and next action to the user before proceeding.

Status header (every response)

Open every substantive response with one compact line, so the user — and you — always know where the pipeline is:

SDLC ▸ Stage {N}/8 {Name} · {next gate or action}

Examples (on-ramp sub-stages keep their letter — 0a/0b/0adopt):

  • SDLC ▸ Stage 0b/8 Foundation · next gate: approve foundation
  • SDLC ▸ Stage 1/8 Spec · next gate: approve PRD
  • SDLC ▸ Stage 4/8 Implement · task #5 · next: plan approval
  • SDLC ▸ Stage 6/8 Review · running security-review (sensitive area)

One line only; skip it only for trivial acknowledgements. It doubles as your own anchor — restating the stage each turn is what keeps you from drifting off-process over a long conversation.

Borrow the technique, not the workflow

The community skills below are techniques, not the pipeline. Each was authored standalone and carries its own opinions about where it writes and what it does next — those opinions are wrong here, because this conductor owns the workflow. When you run a borrowed skill, use its method and override its workflow:

  • brainstorming → use its discovery method (explore → one question at a time → approaches → design), but land the artifact as the (optional) Stage-1 brief at docs/briefs/NNNN-{slug}.md and STOP. Reach for brainstorming + a brief only when the idea is fuzzy; a well-understood feature skips both and goes straight to to-prd. Discovery is exploratory — no code. Do not write to docs/superpowers/specs/, and do not auto-run writing-plans; the next step is the Stage 1 Spec (to-prd), then the gate.
  • documentation-and-adrs → ADRs go to docs/adr/NNNN-{slug}.md (this project's convention), never docs/decisions/.
  • Any skill that wants to open tracker issues/epics → defer to Stage 3 Decompose. The Spec stage produces a PRD, not issues.

If a borrowed skill's default fights an AGENTS.md convention, AGENTS.md wins.

The stages, skills, and gates

StageUse skillOutputAfter producing output
0a Context (new)installer-scaffolded templates (fill)AGENTS.md, filled docs/context.mdgate: context filled
0b Foundation (new)documentation-and-adrsdocs/prd/0000-product.md, foundational ADRs (→ docs/adr/), architecture.md skeleton, core contract scaffold (trim docs/contracts/README.md to real/(future) paths — never leave template examples)GATE — approve foundation
0 adopt (existing)improve-codebase-architecture + initreverse-engineered context/architecture + backfilled foundational ADRs (point docs/contracts/README.md at the existing contract source; note tech-debt/risks in architecture.md)GATE — approve
1 Specbrainstorming (method only) → to-prdgrill-meoptional Stage-1 brief docs/briefs/NNNN-*.md (only for a fuzzy/speculative idea — else skip straight to the PRD), then hardened PRD docs/prd/NNNN-*.md (no issues yet)GATE — approve PRD
2 Architecture + Contractdocumentation-and-adrsADR(s) in docs/adr/, updated docs/architecture.md, docs/security.md (sensitive areas), frozen contract artifact in repo (OpenAPI/tRPC/schema)GATE — approve approach + freeze interface
3 Decomposewriting-plans + project-statustracker issues (GitHub by default) shaped per .github/ISSUE_TEMPLATE/{epic,task}.md (the tracker is the record — no in-repo mirror; other trackers: their native issue types; local-only: task list in docs/progress.md)disclose the breakdown, then continue
4 Implementfeature-start (branch; using-git-worktrees only if isolation is critical) → executing-plans, frontend-design (UI work only)code on a feat/* branch, one task at a timeGATE — plan per task
5 QAtest-driven-development, run, verify (webapp-testing for UI/browser)tests green, app runs, CI greenproceed (disclose results)
6 Reviewcode-review, simplify, definition-of-done-review — pick what the change warrantsclean diff, findings fixedinline, no gate — but security-review is mandatory if a sensitive area is touched
7 Landproject-statusPR opened where hosting supports it. Without PR support, the branch is pushed if a remote exists, any available CI runs, and the human merges it directly; with no remote, the human merges the local branch (Rules → Tracker, remote, and PR/CI capabilities). GitHub: the PR carries Closes #N and the issue closes on merge — nothing to write. Any other tracker or local-only: no closing keyword; move the task to in review according to Task completion by trackerGATE — the human merges
8 Retroreflect + write (native)0–3 durable learnings curated into docs/context.md — one dated bullet each, ≤3 lines, prune while you're there (see Stage 8; often the honest answer is nothing new) (+ optional agent memory)surface the change + recommend landing context.md on main (offer; don't auto-commit) before the next feature — then done

Gate protocol (non-negotiable)

At every GATE, do ALL of the following and then halt:

  1. Name the artifact you produced and its path.
  2. Summarize what's in it in 2–4 lines.
  3. Say exactly what the next stage will do.
  4. Ask: "Approve to proceed, or tell me what to change?" — at a planning gate (Stages 0–2), which is where the repo artifacts are produced, ask to commit them to main in the same breath. Asking here is what satisfies the don't-commit-unless-asked guardrail; skip it and the approved PRD/ADRs/contract sit uncommitted, so Stage 4's clean-tree check blocks the branch and the run stalls. Stage 3 Decompose is not a gate — never stop there. Tracker-backed it writes only issues; local-only it writes docs/progress.md, so just disclose that the file is uncommitted and continue. feature-start clears it at the Stage 4 gate, where stopping belongs.

Do not run the next stage's skill until the user approves. Skills are guidance injected into context — only YOU enforce these stops, so be explicit every time.

Gates vs. proceed-with-disclosure. Only the GATE rows are hard stops: Foundation, Spec, Architecture+Contract, the per-task Implement plan, and the human merge at Land. The remaining stages (Decompose, QA, Review) are proceed-with-disclosure: do the work, then state what you did and any decision a human might want to override, and continue — don't wait. The human can always interrupt. This keeps the front half rigorous and the back half moving.

The Stage 5 CI seam — don't over-stop. When CI exists and needs a pushed branch, the guardrail says don't commit/push/PR unless asked. That is one narrow stop at the commit/push boundary — not a reason to stop at the end of Stage 4. After the Implement plan gate, keep going through everything that needs no push: local tests, run/verify, and the whole Stage 6 pass (code-review, simplify, security-review if sensitive, diff hygiene). Only then stop, at the push, and disclose: "local checks + review done; CI green is pending your approval to commit/push." After approval, start CI and return to the human merge gate instead of polling; required CI must be green before the human merges. If no CI workflow exists, CI is N/A and no push is required for it.

Task completion by tracker

This is the canonical statement — other kit docs point here rather than restating it.

Closes #N is GitHub-only syntax. On Linear/Jira it either fails to close the real task or closes an unrelated repo issue of that number — unless that tracker's own Git integration is configured, which auto-closes via its native key (ENG-123, PROJ-45) instead, same mechanism as GitHub's, different syntax. A local-only id is a docs/progress.md row, not an issue at all, so nothing auto-closes. So:

  • GitHub — the PR carries Closes #N, the issue stays open through Land, and merging closes it. Never close it by hand (move a board column only if the project has one).
  • Linear/Jira with Git integration configured — reference the native key per that integration's convention (commit/PR title, or branch name); it closes the issue on merge like GitHub. Confirm the integration is actually wired before relying on it — don't assume.
  • Linear/Jira with no Git integration, or local-onlyno closing keyword anywhere, in the PR or in commits. The task moves to in review at Land and is completed only after the merge.

Who writes the tracker. Against an external tracker project-status is read-only — it never edits issues unless the user explicitly asks — so a Linear/Jira transition is a separate, outward-facing action: show the change and get a go-ahead before writing. In local-only, docs/progress.md is the tracker and project-status maintains it (its one documented write); that's a repo file, so the edit rides the normal commit approval. Either way the transition is never a silent side effect of opening the PR — if it hasn't happened, report the tracker as stale rather than describing it as moved.

After the merge — close the loop before Retro. Some tracker work can only happen once the code lands, so the pipeline doesn't end at the merge gate. When the human confirms the merge: GitHub has closed the issue itself — nothing to do. Linear/Jira with Git integration configured has also closed it via the native key — verify it actually fired, don't assume. An alternate tracker with no Git integration needs its task closed explicitly now — outward-facing, so confirm before writing, same as at Land. Local-only needs the docs/progress.md row moved to Done — and that file is the tracker, so check out the default branch and sync it first: you're still standing on the just-merged feat/*, and committing there strands the update on a dead branch while main reads In review for good. Then edit and ask to commit; if main is PR-protected, land it via a plan/* branch → PR like any other doc. Stage 8's learnings can ride the same commit.

Never pre-empt any of this before the merge: until the human merges, the honest state is in review, and an abandoned or rejected PR must not leave a task reading done.

Stage 8: what a learning is (and isn't)

docs/context.md is loaded at the start of every session, forever. A line you add there is a permanent tax on every future task — so the retro's job is curation, not transcription. Writing nothing is a normal, frequent outcome; a smooth task teaches nothing durable.

A learning qualifies only if a future agent would do the wrong thing without it: a non-obvious trap, a tool/library behavior that contradicts its docs, a constraint discovered the hard way. If it lives somewhere else, it goes there instead — never both:

Tempting to writeWhere it actually belongs
What shipped / summary of the changethe PR + git history (already permanent)
Why we chose Xan ADR
How the system is now shapeddocs/architecture.md
What's next / next slicethe tracker (goes stale here within days)
How we test this layerdocs/test-strategy.md
Review/process meta ("Codex was right", "retro lands on main")nowhere — drop it

Format — enforced, not suggested: append to the flat ## Learnings list as one dated bullet, ≤3 lines, stating the trap and the rule. No per-feature ### headings, no "What shipped / Keep doing / Watch out for / Process" sub-structure — that's a retro report, not durable context. Budget: 0–3 bullets per retro. If you're writing a fourth, you're transcribing.

Prune before you append (this is the part that keeps the file from growing unbounded): delete bullets whose gotcha is now fixed, fold any that a doc/ADR/contract now covers into that doc, and rewrite superseded bullets in place rather than appending a contradicting one. Keep the whole section under ~30 bullets — at the cap, earn each new line by removing one.

Close every retro the same way — surface improve, don't rely on the human remembering it exists. Whether or not a learning qualified, end Stage 8 with one concrete line naming the options, so the choice is the human's, not a guess:

Epic done. Optional:

  1. improve, scoped to what epic #{N} touched, to audit what just shipped.
  2. improve next to surface directions only; after choosing one, decline its planning step and start sdlc {chosen direction}.
  3. Start the next feature with sdlc {feature}.

This is disclosure, not a gate. improve is an optional third-party companion skill (see required-skills.yml) — never required, never auto-run; naming it here just removes the guesswork. State the scope in prose, as above: next is a real invocation variant, but there is no epic/issue flag — don't advertise one, or you promise scoping the skill won't honor. When a chosen direction returns to sdlc, route it through Stage 1; never accept an improve design or spike plan as a substitute for this pipeline's PRD path.

Rules

  • GitHub Flow: main is always deployable. Work on short-lived feat/{issue#}-{slug} branches → PR → merge → deploy. Environments are deploy targets, not long-lived branches.

  • Tracker, remote, PR workflow, and CI workflow are independent capabilities. Local-only means docs/progress.md replaces an external tracker — it does not imply there's no remote, and such a project can still open PRs and run CI. Equally, a remote does not imply a PR workflow: a bare, self-hosted, or backup remote has no PRs, branch protection, or checks to honour. Decide on what the hosting actually supports, never on remote presence as a proxy:

    • PR workflow available → open the PR; run CI there when a CI workflow also exists, then the human merges through the PR. If no CI workflow exists, the CI check is N/A.
    • No PR workflow, CI workflow available → push the branch to start CI, require it to be green, then the human merges feat/* into main directly.
    • No PR or CI workflow → the human merges feat/* into main directly; push the branch only if a remote exists.
    • A configured PR or CI workflow is unreachable (expired auth, network) → a blocker, not a mode: required checks and branch protection must not be routed around. Surface the fix (gh auth setup-git; see AGENTS.md → Guardrails) and stop.

    The merge gate is unchanged in every case — never treat a missing capability as licence to skip it, and never invent a remote to satisfy the flow.

  • Default to a feature branch. Use a git worktree (using-git-worktrees) only when isolation is genuinely critical — parallel or disposable work — not as the default.

  • Planning commits land on main. Stage 0–2 artifacts are gated decisions: when committed they belong on main, not a feature branch. Land them at each gate so Stage 4 branches from a clean main that already holds the frozen contract — only code lives on the feat/* branch. If main is PR-protected, use a plan/* branch → PR → merge, then branch feat/*. Stage 8 retro learnings (docs/context.md) land on main the same way, before the next feature branches. (See AGENTS.md → Where planning commits land.)

  • One feature in flight per branch. Reference the tracker issue (its #/key) in commits/PRs.

  • At Decompose, create issues with gh issue create and shape their bodies to match .github/ISSUE_TEMPLATE/{epic,task}.md — one epic per feature, a task per child. (--body bypasses the template, so follow its structure by hand: reference line → Scope/Tasks → DoD.) Another tracker: its create call. Local-only: write the task list to docs/progress.md instead — number the rows in its # column, since that number is the task's identifier for the rest of the pipeline (Stage 4 branches feat/{id}-{slug} from it).

  • Definition of Ready before Stage 4: acceptance criteria written, contract frozen, no open questions. Definition of Done before Land (Stage 7) (see AGENTS.md).

  • Contract-first: never let implementation drift from the frozen contract. Changing a shipped contract requires a new ADR (versioning/deprecation).

  • Reviews run inline during Implement/QA — pick code-review / simplify / definition-of-done-review as the change warrants. security-review is mandatory (not agent-discretion) whenever a sensitive area is touched.

  • Sensitive areas (canonical list in AGENTS.md → Sensitive areas): threat-model at Stage 2 (docs/security.md) AND security-review at Stage 6.

  • DB schema changes follow expand/contract (migrate → deploy → clean up) once the table holds real data or any deployed process reads or writes it — a deployed writer breaks on a renamed/dropped column or a new required one just as a reader does. Before that, change it outright.

  • If a PRD/ADR is ambiguous, stop and ask — do not guess.

  • Keep the relevant doc (architecture.md / ADR) updated as you go; task status lives in the tracker (no in-repo mirror), reported via project-status.

  • At Land, don't poll CI. With a PR workflow, open the PR and report CI running; with CI but no PR workflow, push the branch to start CI and report the run. A single status glance to catch an instant failure is fine. Then stop — return to the human merge gate. Don't watch the run to completion (gh run watch) or keep the turn alive polling. Required CI must be green before the human merges; a later failure is handled as a normal fix, not babysat in the Land turn.

  • Don't commit, push, open PRs, or merge unless asked — merge is always the human's call.

Referenced files

  • Operating manual + Definition of Done: AGENTS.md
  • Templates: docs/ (context, prd/0000-product.md, prd, adr, architecture, contracts, security, briefs, progress, test-strategy, runbook)
  • Custom skills: feature-start, project-status, definition-of-done-review

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.