From squid
Bootstraps a new polyglot monorepo or component from an opinionated spec library, generating AGENTS.md and folder skeleton. Also audits existing scaffolded repos for drift.
How this skill is triggered — by the user, by Claude, or both
Slash command
/squid:scaffoldThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Interactive bootstrap for a new repo (or a new component in an existing one).
AGENTS_TEMPLATE.mdrules.mdspecs/adr.mdspecs/cli-tool-python.mdspecs/datastore-mongodb.mdspecs/datastore-postgresql.mdspecs/datastore-redis.mdspecs/datastore-sqlite.mdspecs/docker.mdspecs/embeddings-openai.mdspecs/embeddings-sentence-transformers.mdspecs/embeddings-voyageai.mdspecs/fastapi-service.mdspecs/fastmcp-server.mdspecs/github-actions.mdspecs/go-tui.mdspecs/llm-anthropic.mdspecs/llm-gemini.mdspecs/llm-openai.mdspecs/makefile-delegator.mdInteractive bootstrap for a new repo (or a new component in an existing one).
specs/ that apply.AGENTS.md (plus a one-line CLAUDE.md pointer) at the target project root that distils those specs (doesn't copy-paste them)./implement-task next to have the SWE agent write the first code against the generated AGENTS.md.$ARGUMENTS may lead with mode=create (default) or mode=evaluate:
mode=create (default) — bootstrap a repo / component. The flow in "## Flow" below.mode=evaluate — audit an existing scaffolded repo against the artifact invariants in rules.md and report drift (no fixes). See "## Evaluate mode".Every rule both modes honour lives in rules.md — the single source of truth. Do not restate any rule in this file.
AGENTS.md after a major stack change (e.g. swapping Vue for React)./implement-task or /implement-night).AGENTS.md directly.Use AskUserQuestion to collect answers. Consolidate where possible — one or two prompts, not a twelve-step interview. Minimum set:
packages/<c>/ tree) or standalone single-package?backend — Python service / pipeline / libraryfrontend-web — TypeScript browser SPAfrontend-tui — Go terminal UIfastapi-service / fastmcp-server / cli-tool-python / library-only.react / vue / svelte / vanilla.bubbletea (default) / tview.docker, github-actions, pre-commit-hooks.adr (Architecture Decision Records under docs/adr/), ubiquitous-language (project glossary at docs/glossary.md). Recommend adr for any project expected to live > 6 months; recommend ubiquitous-language for backend services with named domain entities.specs/<category>-<choice>.md stub and emits a one-line bullet into the generated AGENTS.md, wrapped in <!-- stack:<slug> --> comments so the user can find-and-delete it later:mongodb / postgresql / redis / sqlite / other / noneprefect / dagster / temporal / other / noneopik / opentelemetry / sentry / other / noneanthropic / openai / gemini / other / nonevoyageai / openai / sentence-transformers / other / nonemodal / replicate / other / nonefirecrawl / playwright / requests-bs4 / other / noneAsk this as ONE consolidated question: "Which external services will you use? (deselect anything you don't need)." none skips the category entirely — no stub read, no bullet emitted. other keeps an AGENT: fill in placeholder so the SWE can document the real choice on first use.
llms.txt) — ask which tools / frameworks / services this project uses that publish an llms.txt, and collect each one's index URL (e.g. Pydantic AI → https://pydantic.dev/docs/ai/llms.txt). They become direct links in the generated AGENTS.md "Access Documentation" section; anything the user doesn't name falls back to context7. Fully skippable — name none and only the context7 paragraph is emitted. Governed by rules.md P5.Before proceeding to step 2, echo the picked configuration back to the user in a two-line summary and confirm.
Always include:
monorepo-layout.md — unless the user chose standalone single-package.makefile-delegator.md — unless standalone.Conditionally include (from answers):
| Answer | Specs to read |
|---|---|
backend (any variant) | python-backend.md + uv-python.md + pyproject.md + ruff-python.md |
backend = fastapi-service | + fastapi-service.md |
backend = fastmcp-server | + fastmcp-server.md |
backend = cli-tool-python | + cli-tool-python.md |
frontend-web | typescript-frontend.md + the chosen framework spec (react-app.md / vue-app.md / svelte-app.md / vanilla-ts-app.md) |
frontend-tui | go-tui.md (already covers both bubbletea and tview) |
| shared OpenAPI contracts | openapi-contracts.md |
| docker | docker.md |
| github-actions | github-actions.md |
| pre-commit-hooks | pre-commit-hooks.md |
| agent team + tracker | tracker-workflow.md |
process: adr | adr.md |
process: ubiquitous-language | ubiquitous-language.md |
datastore = mongodb / postgresql / redis / sqlite | + datastore-<choice>.md |
orchestrator = prefect / dagster / temporal | + orchestrator-<choice>.md |
observability = opik / opentelemetry / sentry | + observability-<choice>.md |
llm-api = anthropic / openai / gemini | + llm-<choice>.md |
embeddings = voyageai / openai / sentence-transformers | + embeddings-<choice>.md |
model-serving = modal / replicate | + model-serving-<choice>.md |
scraping = firecrawl / playwright / requests-bs4 | + scraping-<choice>.md |
Skip any row where the user picked none / other. other is handled at compose time by leaving an AGENT: fill in placeholder in the generated AGENTS.md.
Read each selected spec end-to-end. Specs are short markdown — full read is fine. Skip reading specs that don't apply; keep context lean.
AGENTS.mdWrite the project's root memory file from the canonical template in AGENTS_TEMPLATE.md (the template body and section structure). Compose it following the I# artifact invariants in rules.md — size, distil-don't-copy, gate-sections-on-presence, group-per-app, fill-placeholders-inline. Read both end-to-end, then emit a tailored AGENTS.md at the target project root (or wherever /scaffold was invoked).
AGENTS.md is the canonical, agent-agnostic memory file. Alongside it, write a one-line CLAUDE.md whose only content is @AGENTS.md — that import makes Claude Code auto-load the same file without duplicating the body.
Create these files / directories, empty or with minimal placeholders. Do NOT write application source.
Always:
AGENTS.md — from step 3 (the canonical, agent-agnostic memory file).CLAUDE.md — one line only, @AGENTS.md, so Claude Code auto-loads AGENTS.md.README.md — one-paragraph project-facing intro pointing at AGENTS.md..gitignore — language-appropriate (.venv/, node_modules/, dist/, bin/, .DS_Store, .env)..env.example — cross-cutting placeholder keys (one commented sample var).If monorepo:
Root Makefile — delegator, generated dynamically from the chosen components per makefile-delegator.md. For every enabled component, emit:
install, test, lint-check, lint-fix, format-check, format-fix, pre-commit, buildbackend in components): unit-tests, integration-tests.frontend-web in components): dev.frontend-tui in components): run.openapi-gen, openapi-validate (shared chosen), docker-up, docker-down (docker chosen), ci (always), help (always)..PHONY list built dynamically from emitted verbs (never hardcoded).help target that echoes the enabled-component summary + the curated target list.HAS_<component> := $(shell test -d packages/<c> && echo yes) and gate targets via $(if $(HAS_<X>), <target>) — so make test on a backend-only render doesn't try to run test-frontend-web.$(MAKE) -C packages/<c> <verb> — never a literal make or a cd chain.Per-component packages/<c>/Makefile — implements the verb set in the chosen language's tooling. Use the canonical sketches from makefile-delegator.md:
uv sync, uv run pytest, uv run ruff check, uv run ruff format, uv build.npm ci, npm run test, npm run lint, npm run format, npm run build.go mod tidy, go test ./..., go vet ./..., gofmt -l/-w, go build.uvx openapi-spec-validator, uvx openapi-python-client, @openapitools/openapi-generator-cli, oapi-codegen.AGENT: fill in stubs) — the verbs are mechanical, the tooling is standard per language, and having make install work out-of-the-box on the fresh scaffold lets the user run make install && make test before any SWE work. Real-code placeholders still apply to src/, not to the Makefile.Each packages/<c>/ also gets:
AGENTS.md — one-paragraph component brief + "see root AGENTS.md for conventions"; plus a one-line CLAUDE.md (@AGENTS.md) so Claude Code auto-loads it..env.example — component-local placeholder./implement-task run.)If shared OpenAPI chosen: packages/shared/openapi/api.yaml with a minimal /health endpoint seed.
If docker chosen:
docker-compose.yml — one service block per runtime component with AGENT: fill in placeholders for image / ports / healthcheck.Dockerfile stub with AGENT: fill in multi-stage build.If github-actions chosen:
.github/workflows/ci.yml — umbrella workflow with dorny/paths-filter routing..github/workflows/ci-<c>.yml — one reusable workflow stub per component..github/dependabot.yml — one ecosystem per component.If agent team + tracker chosen:
tasks/README.md describing the one-file-per-task model (tasks/<NNN>-<slug>.md with a status: frontmatter field — pending / in-progress / done — and a feature: field). No done/ subfolder; state lives in the frontmatter, not the filename. (The agent-team lifecycle + cross-cutting rules are baked into the generated AGENTS.md from AGENTS_TEMPLATE.md — there is no separate docs/PROCESS.md.).claude/ — only if the user isn't installing the plugin globally; otherwise skip (the plugin provides it).If adr chosen (Process & documentation):
docs/adr/0001-record-architecture-decisions.md — drop the canonical ADR-0001 boilerplate verbatim from adr.md's Bootstrap section, with {YYYY-MM-DD} replaced by today's date. This is the only ADR scaffold writes — subsequent ADRs are authored by the PA during /plan grooming as decisions arise. Do not emit a docs/adr/.gitkeep (ADR-0001 already keeps the directory non-empty).If ubiquitous-language chosen (Process & documentation):
docs/glossary.md — minimal seed: a one-paragraph header declaring the discipline ("The canonical vocabulary for {project}. When code, docs, specs, or conversation use a domain concept, use the term as it appears here.") + an empty 3-column table (| Term | Definition | Notes |) with a single commented-out example row so the format is unambiguous. Do not invent domain terms — the SWE / PA populate it as the first feature lands. Recommended seed body:
# Glossary
The canonical vocabulary for {project name}. When code, docs, specs, or conversation use a domain concept, use the term as it appears here. PRs that introduce or rename a domain concept update this file in the same change.
| Term | Definition | Notes |
|---|---|---|
<!-- | **OrderLine** | One line item within an Order, identified by `order_line_id`. | Distinct from "Item" (the catalogue entry). | -->
Summarise for the user:
/implement-task "bootstrap packages/backend with a minimal FastAPI app and a /health endpoint". The SWE agent will read AGENTS.md and the spec references, and write the first real code.All scaffold rules — create-time process rules (P#) and artifact invariants (I#) — live in rules.md, the single source of truth. While composing in mode=create, follow every P# and I#. Do not restate them here.
mode=evaluate audits an existing scaffolded repo against the artifact invariants in rules.md and reports drift. You are the auditor — you do NOT apply fixes, you report. The flow is read-only on the target repo; the report is printed to chat (no file is written).
$ARGUMENTS after mode=evaluate is the target repo root (default: the current working directory). Echo it back in one line. If there is no AGENTS.md there, stop with a clear message: "Nothing scaffolded to evaluate at {path} — run mode=create first."
Launch a single Explore sub-agent. It reads the rules from the plugin's scaffold skill dir and audits the artifacts in the target repo — keep those two locations distinct in the prompt:
Agent(
subagent_type="Explore",
prompt="""Scaffold-conformance audit of the repo at {target path}.
AUTHORITATIVE RULES (read from the squid plugin's scaffold skill dir, NOT the target repo):
read `skills/scaffold/rules.md` end to end, and `skills/scaffold/AGENTS_TEMPLATE.md` for
structure questions. Audit ONLY the `I#` artifact invariants — skip every `P#` (those are
create-time and not checkable from a checkout).
ARTIFACTS UNDER AUDIT (in the target repo at {target path}): read `AGENTS.md`, the root
`CLAUDE.md` and every `packages/*/CLAUDE.md`, the root `Makefile`, and the skeleton tree
(`ls -R`, not file bodies).
For EACH `I#` rule, run its `Check:` procedure and return one row:
`rule id | PASS | VIOLATED | N/A | evidence (file:line or command output) | one-line remediation`.
Mark a rule N/A (not VIOLATED) when it doesn't apply — e.g. monorepo-only rules (I7, I10) on a
standalone single-package repo. Quote rules by ID only — do NOT paste rule text into your output.
Do NOT propose code changes beyond the one-line remediation. Return the table plus a 2–3 sentence
health summary."""
)
Read the target's AGENTS.md yourself first — the judgment-call invariants (I2 size, I3 distil, I5 structure) need a firsthand read, not just the sub-agent's grep. Then print:
see rules.md#I2 — do not restate the rule text), the evidence (file:line), and a one-paragraph remediation describing the shape of the fix (not a patch).Findings are naturally bounded by the fixed rule set — no arbitrary cap.
Single block: result counts, the violated IDs, and the recommended next step — either "Edit AGENTS.md to resolve {IDs} — see remediations above, then re-run /scaffold mode=evaluate to confirm" or "No drift — AGENTS.md still conforms."
The spec library lives at specs/. Each file is a standalone reference doc describing opinions, not code. Grouped by role:
Layout & tooling (foundational)
monorepo-layout.md — polyglot monorepo tree + component boundaries.makefile-delegator.md — root Makefile pattern + canonical example.Python
python-backend.md — layout, discipline, testing conventions.uv-python.md — uv usage (add / sync / run / build / publish).pyproject.md — pyproject.toml structure + canonical example.ruff-python.md — ruff configuration opinions.Python project types
fastapi-service.md — FastAPI app factory, lifespan, endpoints.fastmcp-server.md — FastMCP server shape.cli-tool-python.md — typer/click CLI conventions.TypeScript frontend
typescript-frontend.md — package layout + canonical configs.react-app.md — React SPA specifics.vue-app.md — Vue SPA specifics.svelte-app.md — Svelte SPA specifics.vanilla-ts-app.md — no-framework TypeScript SPA.Go TUI
go-tui.md — layout, Bubbletea, and tview in one doc.Infrastructure
docker.md — slim Dockerfile + docker-compose opinions.github-actions.md — monorepo CI patterns.openapi-contracts.md — contract-first OpenAPI 3.1 workflow.pre-commit-hooks.md — project-side hook conventions (pre-commit / lefthook / husky), what runs in pre-commit vs pre-push, escape-hatch policy.Process & documentation
tracker-workflow.md — file-based task tracker format.adr.md — Architecture Decision Records (docs/adr/NNNN-title.md), Nygard template, status lifecycle.ubiquitous-language.md — project glossary at docs/glossary.md; one canonical name per domain concept.External services (all stubs — flesh out as real projects reveal opinions; delete any category or file you decide isn't worth maintaining, and drop the matching row in Step 2's decision table)
datastore-mongodb.md, datastore-postgresql.md, datastore-redis.md, datastore-sqlite.md.orchestrator-prefect.md, orchestrator-dagster.md, orchestrator-temporal.md.observability-opik.md, observability-opentelemetry.md, observability-sentry.md.llm-anthropic.md, llm-openai.md, llm-gemini.md.embeddings-voyageai.md, embeddings-openai.md, embeddings-sentence-transformers.md.model-serving-modal.md, model-serving-replicate.md.scraping-firecrawl.md, scraping-playwright.md, scraping-requests-bs4.md.npx claudepluginhub iusztinpaul/squid --plugin squidScaffolds greenfield project architecture and AI agent harness via interview-driven decisions. Outputs markdown spec with code structure exemplar, tests, guardrails, CLAUDE.md setup, and unified plan. Invoke via /scaffold for new projects.
Greenfield project scaffolding: architecture decisions, harness setup, and requirements generation via interview-driven derivation chain. Use for new projects or major restructures.
Scaffolds new full-stack monorepos via Better-T-Stack or audits/onboards existing projects with agentic dev infrastructure (OpenSpec, workspace hooks, e2e-test skills).