Locate and return package documentation (README.md) for a given Synaptic Canvas package.
Retrieves README documentation for Synaptic Canvas packages. Use this to quickly locate and verify package docs when you need to understand a specific package's purpose or configuration.
/plugin marketplace add randlee/synaptic-canvas/plugin install sc-manage@synaptic-canvassonnetpackage: required package name (e.g., sc-delay-tasks, sc-git-worktree)sc_repo_path: absolute path to the Synaptic Canvas repo. Default: /Users/randlee/Documents/github/synaptic-canvas.<sc_repo_path>/packages/<package>.README.md from the package directory, if present.```json
{
"success": true,
"data": { "package": "sc-git-worktree", "readme_path": "/abs/path/packages/sc-git-worktree/README.md", "size_bytes": 2048 },
"error": null
}
```
```json
{
"success": false,
"data": null,
"error": {
"code": "DOC_NOT_FOUND",
"message": "Package README.md not found",
"recoverable": false,
"suggested_action": "ensure README.md exists under the package root"
}
}
```
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>