Detects project stack from manifests and proposes tailored framework configuration, golden paths, review steering, and prune lists as a reviewable plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-framework:tailor [all | detect | fill | steer | prune | instantiate][all | detect | fill | steer | prune | instantiate]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The framework's environment-triggered customization engine. Once an adopter's stack is detectable — manifests and lockfiles committed — `/tailor` proposes the configuration the framework should take: filled `tech-strategy.md` golden paths, `REVIEW.md`/`CLAUDE.md` review steering, and a prune list of unused framework pieces.
The framework's environment-triggered customization engine. Once an adopter's stack is detectable — manifests and lockfiles committed — /tailor proposes the configuration the framework should take: filled tech-strategy.md golden paths, REVIEW.md/CLAUDE.md review steering, and a prune list of unused framework pieces.
/tailor proposes only. It never silently writes to .claude/rules/, .claude/settings.json, CLAUDE.md, or any other tracked config file. Every run ends in a reviewable plan at scratchpad/tailor-proposal.md — nothing lands in a tracked file until the user approves it (see Output Contract).
Scan for stack signals per references/detection.md, the mechanical signal-to-golden-path-row contract. Cover:
package.json/pnpm-lock.yaml/yarn.lock, pyproject.toml/uv.lock, go.mod, Cargo.toml, Package.swift/*.xcodeproj, build.gradle(.kts)biome.json, .eslintrc*, [tool.ruff] in pyproject.toml, .golangci.yml.github/workflows/*Dockerfile, *.tf, Railway/Fly configsProduce a stack-fingerprint table, one row per claim, with an evidence file for each:
| Signal | Evidence | Claim |
|---|---|---|
pnpm-lock.yaml | pnpm-lock.yaml:1 | Package Manager: pnpm |
Precedence when signals conflict, highest wins: committed lockfile > manifest field > dependency presence > inference. Never assert a claim without citing the file it came from — no vibes-based stack claims.
Read .claude/rules/tech-strategy.md. Classify every golden-path section as one of:
Never overwrite an already-customized row without flagging it first. A conflicting row becomes a flagged decision in the proposal, not a silent replacement.
For each detected language, draft a ready-to-paste golden-path table using the project's actual choices, with versions pulled from manifests where present (e.g. "react": "^19.2.0" in package.json → React 19.2). For each undetected language section, propose deleting it — a prune candidate, not a silent removal.
Invoke the review-steering skill's workflow to draft REVIEW.md and verify CLAUDE.md's review-context section is current. Include both the drafted REVIEW.md content and any CLAUDE.md delta in the proposal — do not write either file directly.
For each pack in .claude/templates/stack-packs/ whose stack Detect actually found, adapt the exemplar to the fingerprint — substitute package manager, test runner, framework, and version strings for the detected reality, evidence-cited per substitution; flag a default when no signal exists rather than inventing one. See references/packs.md for the discovery and adaptation rules this phase follows.
Render golden-path.skill.md at its adopter-repo target path (e.g. .claude/skills/typescript-golden-path/SKILL.md) and ci-gates.yml as a ready-to-paste block for the adopter's own CI workflow — never for a stack Detect did not find.
List framework pieces irrelevant to the detected stack: unused golden-path language sections, hook checks that can't fire for this stack, skills the adopter may want to gate. Each entry needs a one-line rationale and the exact file/line — no bulk "remove unused stuff" claims.
/tailor proposes only — application is a separate, user-approved step, never automatic. A single proposal file at scratchpad/tailor-proposal.md contains:
Application happens only after the user approves the plan — either by manually pasting the approved blocks, or by re-invoking /tailor with the approved checklist.
all (default) — Detect + Assess, then all four Propose phases; full proposaldetect — Detect only; fingerprint tablefill — Detect + Assess + Propose: Fillsteer — Detect + Assess + Propose: Steerprune — Detect + Assess + Propose: Pruneinstantiate — Detect + Assess + Propose: Instantiate.claude/rules/, .claude/settings.json, CLAUDE.md, or any other tracked config file — proposal only, alwaysreview-steering: Propose: Steer delegates REVIEW.md/CLAUDE.md drafting to its workflow/swarm-plan: when detection reveals structural work beyond a config fill (e.g. a full framework migration)docs/customization.md's "Configure Your Tech Stack" step points here once the repo has a detectable stack$ARGUMENTS
npx claudepluginhub dralgorhythm/claude-agentic-framework --plugin agentic-frameworkCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.