Status
Show full cobrain daemon status including version, process, permissions, and recent activity.From its SKILL.md
npx -y skills add cyrus-cai/claude-cobrain --skill statusAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `bash "$STATUS_SCRIPT"` and 1 more.
SKILL.md
0.7 KB, 173 tokens by cl100k_base, as published. Nobody here has run it
status
Run the status script and show the output to the user. Do not reformat or summarize — just display the raw output.
if [[ -n "${CLAUDE_PLUGIN_ROOT:-}" && -f "${CLAUDE_PLUGIN_ROOT}/scripts/status.sh" ]]; then
STATUS_SCRIPT="${CLAUDE_PLUGIN_ROOT}/scripts/status.sh"
elif [[ -f "./plugin/scripts/status.sh" ]]; then
STATUS_SCRIPT="./plugin/scripts/status.sh"
else
STATUS_SCRIPT="$(ls -dt "$HOME"/.claude/plugins/cache/*/claude-cobrain/*/scripts/status.sh 2>/dev/null | head -1)"
fi
[[ -n "${STATUS_SCRIPT:-}" && -f "$STATUS_SCRIPT" ]] || { echo "status.sh not found"; exit 1; }
bash "$STATUS_SCRIPT"
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.