Status
A Claude Code plugin that monitors your screen 24/7 to build persistent memory for Claude.
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Show full cobrain daemon status including version, process, permissions, and recent activity.
SKILL.md
0.7 KB, 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"