From 28cd02904c2f186da13eb74bbcf8d4543bbb10b0 Mon Sep 17 00:00:00 2001 From: Simon Bettison Date: Sun, 25 Jan 2026 12:31:25 +0000 Subject: [PATCH] fix: correct copy path in setup-architect installation The framework files are in the .architecture subfolder of the cloned repo, not at the repo root. The copy command was copying repo documentation (README.md, USAGE*.md, tools/, etc.) instead of just the framework template files. Changed: cp -r .architecture/.architecture/* .architecture/ To: cp -r .architecture/.architecture/.architecture/* .architecture/ Fixes #4 Co-Authored-By: Claude Opus 4.5 --- .../setup-architect/references/installation-procedures.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/skills/setup-architect/references/installation-procedures.md b/.claude/skills/setup-architect/references/installation-procedures.md index 1817171..594b5f3 100644 --- a/.claude/skills/setup-architect/references/installation-procedures.md +++ b/.claude/skills/setup-architect/references/installation-procedures.md @@ -53,8 +53,8 @@ fi Copy the framework from the cloned location to `.architecture/`: ```bash -# Copy all framework files -cp -r .architecture/.architecture/* .architecture/ +# Copy framework files (they're in the .architecture subfolder of the cloned repo) +cp -r .architecture/.architecture/.architecture/* .architecture/ # Verify copy succeeded if [ $? -eq 0 ]; then