mirror of
https://github.com/gnekt/My-Brain-Is-Full-Crew.git
synced 2026-09-07 02:24:31 +00:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user