install — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited install (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Install claude-cobrain daemon and start it with python3 directly.
Infer language from the user's message. If there is no context, default to English.
Find the plugin root directory. The plugin root directory is most likely in <USER_ROOT>/.claude/plugins/.
Required source files:
<CLAUDE_PLUGIN_ROOT>/scripts/cobrain.py - daemon script to copy<CLAUDE_PLUGIN_ROOT>/scripts/control.sh - process controller scriptMinimize user approval prompts: chain independent shell commands with && into single Bash calls.
~/.claude/cobrainOUTPUT_DIR.Run all checks in a single command:
command -v python3 && python3 --version && \
command -v ollama && ollama --version && \
python3 -c "import PIL, ollama; print('ok')" && \
ollama list | grep qwen3-vlIf success: skip installation steps.
If failure: install only missing prerequisites.
brew install pythonbrew install ollamapip3 install Pillow ollamaollama pull qwen3-vl:2bChain file operations into one Bash call:
OUTPUT_DIR if needed.<CLAUDE_PLUGIN_ROOT>/scripts/cobrain.py to <OUTPUT_DIR>/cobrain.py.<CLAUDE_PLUGIN_ROOT>/scripts/control.sh to <OUTPUT_DIR>/control.sh and chmod +x..source_repo marker to <OUTPUT_DIR>/.source_repo.<OUTPUT_DIR>/cobrain.pid if it exists.Run direct python3 start through the controller:
if [[ -n "${CLAUDE_PLUGIN_ROOT:-}" && -f "${CLAUDE_PLUGIN_ROOT}/scripts/control.sh" ]]; then
CONTROL_SCRIPT="${CLAUDE_PLUGIN_ROOT}/scripts/control.sh"
elif [[ -f "./plugin/scripts/control.sh" ]]; then
CONTROL_SCRIPT="./plugin/scripts/control.sh"
else
CONTROL_SCRIPT="$(ls -dt "$HOME"/.claude/plugins/cache/*/claude-cobrain/*/scripts/control.sh 2>/dev/null | head -1)"
fi
[[ -n "${CONTROL_SCRIPT:-}" && -f "$CONTROL_SCRIPT" ]] || { echo "control.sh not found"; exit 1; }
bash "$CONTROL_SCRIPT" startReturn:
Done. Daemon is running. Logs: - <OUTPUT_DIR>/daemon.log - <OUTPUT_DIR>/runtime.stdout.log - <OUTPUT_DIR>/runtime.stderr.logIf logs show permission errors, add your terminal app to both permissions in:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.