Address Copilot review feedback on PR

- Fix call-chain example consistency in CLAUDE.md and agent-orchestration.md
  (chain lists already-invoked agents, "step N" matches chain length + 1)
- Renumber architect.md Task Checklist (was skipping 3) and replace
  "Leave messages" step with dispatcher-driven "Suggested next agent"
- Replace "Leave a message to the Sorter" with signal via Suggested next agent
- Clarify "Do NOT write to other agents' files" → only prompt/config files
  (.claude/agents/*.md), normal vault edits still allowed
- Fix agent count 10→8 in docs/getting-started.md
- Initialize SKILL_COUNT before conditional block in launchme.sh
This commit is contained in:
gnekt
2026-03-23 20:24:35 +01:00
parent f35c704550
commit a7e5625250
5 changed files with 18 additions and 18 deletions

View File

@@ -78,7 +78,8 @@ mkdir -p "$VAULT_DIR/.claude/references"
cp "$REPO_DIR/references/"*.md "$VAULT_DIR/.claude/references/"
success "Copied references"
# ── Generate and copy skills ──────────────────────────────────────────────────
# ── Generate and copy skills (for Cowork/Desktop) ───────────────────────────
SKILL_COUNT=0
if command -v python3 >/dev/null 2>&1 && [[ -f "$REPO_DIR/scripts/generate-skills.py" ]]; then
info "Generating skills from agents..."
python3 "$REPO_DIR/scripts/generate-skills.py" >/dev/null 2>&1
@@ -86,7 +87,6 @@ fi
if [[ -d "$REPO_DIR/skills" ]]; then
info "Creating .claude/skills/ in vault..."
SKILL_COUNT=0
for skill_dir in "$REPO_DIR/skills/"*/; do
skill_name="$(basename "$skill_dir")"
mkdir -p "$VAULT_DIR/.claude/skills/$skill_name"