trackmind-ai

Sdlc Atlas — Development skill for Claude Code

Development community

Agent-driven SDLC platform for Claude Code.

How to install Sdlc Atlas

This entry records only its repository, not the path inside it, so there is no exact command to give. Open trackmind-ai/sdlc-atlas and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Sdlc Atlas does

Agent-driven SDLC platform for Claude Code. Takes a requirement to production-ready code through governed pipelines: versioned specs, approval gates, and ordered quality gates across a four-layer capability model (platform, stacks, organization, project).

Alternatives in Development

  • Cashclaw — An autonomous agent that takes work, does work, gets paid, and gets better at it 973 ★
  • Phistory — Phistory automatically archives versioned system prompt snapshots from agent CLIs like Claude Code, Codex, Ope 560 ★
  • Atlas Project — Use the @atlas-project agent to help the user with the following project matter: $ARGUMENTS 523 ★

README

sdlc-atlas

[![CI](https://github.com/trackmind-ai/sdlc-atlas/actions/workflows/ci.yml/badge.svg)](https://github.com/trackmind-ai/sdlc-atlas/actions/workflows/ci.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

An agent-driven SDLC platform for Claude Code. It takes a requirement to production-ready code through a **governed** pipeline: versioned specifications, human approval gates, and quality gates that run in a fixed order and stop at the first failure.

The governance is the point. Agents here cannot write production code until a human has approved a spec — enforced by a hook, not by an instruction an agent might ignore.

Install

Register Trackmind's marketplace once per machine, then install:

/plugin marketplace add trackmind-ai/marketplace
/plugin install sdlc-atlas@trackmind

The first command is a **one-time step**; installing other Trackmind plugins later needs only the second. Re-running the first is harmless — it is idempotent.

**If `marketplace add` fails with a host-key error:** the `owner/repo` shorthand clones over SSH, which fails on a machine that has never trusted GitHub's SSH host key. Set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1`, or pass the full HTTPS URL.

Alternative: install without the plugin manager

Useful if you want the installer's project scaffolding and `--doctor` checks, which the plugin manager does not provide.

git clone https://github.com/trackmind-ai/sdlc-atlas.git
cd sdlc-atlas/plugins/sdlc-atlas

# Platform only — installs 23 agents, 43 commands, 42 skills and 11 stacks into ~/.claude/
bash install.sh --platform

# Or platform + a project in one shot, with stacks merged and a CLAUDE.md seeded:
bash setup-all.sh --project /path/to/my-repo --stacks react,node --profile standard

`setup-all.sh` runs six steps and ends with a health check. A clean run finishes with `DONE`; anything else prints exactly what to fix.

Useful follow-ups