From 7c82aebc76d66240c41be1449c682966924e0f3e Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Tue, 10 Mar 2026 19:21:13 -0700 Subject: [PATCH] docs: tighten blueprint install guidance --- skills/blueprint/SKILL.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/skills/blueprint/SKILL.md b/skills/blueprint/SKILL.md index 69135cc7..1851c9a8 100644 --- a/skills/blueprint/SKILL.md +++ b/skills/blueprint/SKILL.md @@ -74,12 +74,13 @@ Produces a plan with parallel steps where possible (e.g., "implement Anthropic p This skill ships with Everything Claude Code. No separate installation is needed when ECC is installed. -```bash -# Verify the skill is present in your ECC checkout -ls ~/.claude/plugins/ecc/skills/blueprint/SKILL.md -``` +### Full ECC install -If you are vendoring only this skill outside the full ECC install, copy the reviewed file from this repository into `~/.claude/skills/blueprint/SKILL.md` and keep it pinned to a reviewed ECC commit. +If you are working from the ECC repository checkout, verify the skill is present with: + +```bash +test -f skills/blueprint/SKILL.md +``` To update later, review the ECC diff before updating: @@ -90,6 +91,10 @@ git log --oneline HEAD..origin/main # review new commits before updating git checkout # pin to a specific reviewed commit ``` +### Vendored standalone install + +If you are vendoring only this skill outside the full ECC install, copy the reviewed file from the ECC repository into `~/.claude/skills/blueprint/SKILL.md`. Vendored copies do not have a git remote, so update them by re-copying the file from a reviewed ECC commit rather than running `git pull`. + ## Requirements - Claude Code (for `/blueprint` slash command) @@ -97,4 +102,4 @@ git checkout # pin to a specific reviewed commit ## Source -Inspired by [github.com/antbotlab/blueprint](https://github.com/antbotlab/blueprint) — upstream project and reference design. +Inspired by antbotlab/blueprint — upstream project and reference design.