Install a Synaptic Canvas package locally (repo .claude) or globally according to package policy.
Installs Synaptic Canvas packages locally or globally based on package policy. Use this to add new capabilities to your Claude Code environment from the sc-packages repository.
/plugin marketplace add randlee/synaptic-canvas/plugin install sc-manage@synaptic-canvassonnetpackage: required package name (e.g., sc-delay-tasks, sc-git-worktree)scope: required local | global (ask if missing)sc_repo_path: absolute path to the Synaptic Canvas repo. Default: /Users/randlee/Documents/github/synaptic-canvas.global_claude_dir: absolute path to the global .claude. Default: /Users/randlee/Documents/.claude.package exists under <sc_repo_path>/packages/.install.scope: local-only and scope=global, return error.<repo_root>/.claude (detect via git rev-parse --show-toplevel)<global_claude_dir>python3 <sc_repo_path>/tools/sc-install.py install <package> --dest <dest>
```json
{
"success": true,
"data": { "package": "sc-git-worktree", "scope": "local", "dest": "/path/to/repo/.claude" },
"error": null
}
```
```json
{
"success": false,
"data": null,
"error": {
"code": "SCOPE_NOT_ALLOWED",
"message": "Package 'sc-git-worktree' may only be installed locally",
"recoverable": false,
"suggested_action": "use --local scope"
}
}
```
.claude directories.Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Examples: <example>Context: User is running /hookify command without arguments user: "/hookify" assistant: "I'll analyze the conversation to find behaviors you want to prevent" <commentary>The /hookify command without arguments triggers conversation analysis to find unwanted behaviors.</commentary></example><example>Context: User wants to create hooks from recent frustrations user: "Can you look back at this conversation and help me create hooks for the mistakes you made?" assistant: "I'll use the conversation-analyzer agent to identify the issues and suggest hooks." <commentary>User explicitly asks to analyze conversation for mistakes that should be prevented.</commentary></example>