원클릭으로
brain-shared-list
List all shared skills, agents, and rules in the brain network.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List all shared skills, agents, and rules in the brain network.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review and resolve unresolved brain merge conflicts.
Analyze accumulated brain memory and propose promotions to CLAUDE.md, rules, or new skills. Makes your brain smarter over time.
Initialize brain sync network. Creates a Git remote for your brain and exports your current Claude Code state.
Join an existing brain sync network from another machine. Pulls the consolidated brain and merges with any local state.
Show brain sync and evolution history.
Share a skill, agent, or rule with the team by copying it to the shared namespace
| name | brain-shared-list |
| description | List all shared skills, agents, and rules in the brain network. |
The user wants to see all shared artifacts in the brain network.
Check if brain is initialized:
source "${CLAUDE_PLUGIN_ROOT}/scripts/common.sh"
if ! is_initialized; then
echo "Brain not initialized. Run /brain-init first."
exit 1
fi
List shared artifacts:
BRAIN_REPO="${HOME}/.claude/brain-repo"
SHARED_DIR="${BRAIN_REPO}/shared"
if [ ! -d "$SHARED_DIR" ]; then
echo "No shared artifacts yet. Use /brain-share to share skills, agents, or rules."
exit 0
fi
echo "## Shared Artifacts"
echo ""
echo "| Type | Name | Shared By | Date |"
echo "|------|------|-----------|------|"
found=false
for type in skills agents rules; do
if [ -d "${SHARED_DIR}/${type}" ]; then
for file in "${SHARED_DIR}/${type}"/*; do
if [ -f "$file" ]; then
found=true
name=$(basename "$file")
# Get git log info for this file
info=$(cd "$BRAIN_REPO" && git log --format="%an|%ad" --date=short -1 -- "shared/${type}/${name}" 2>/dev/null || echo "unknown|unknown")
author=$(echo "$info" | cut -d'|' -f1)
date=$(echo "$info" | cut -d'|' -f2)
echo "| ${type%s} | ${name} | ${author} | ${date} |"
fi
done
fi
done
if ! $found; then
echo "| — | No shared artifacts yet | — | — |"
fi
echo ""
echo "Use /brain-share <type> <name> to share more artifacts."