Agent skill
managing-sc-packages
List, install, or uninstall Synaptic Canvas packages. Use with the `/sc-manage` command.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/managing-sc-packages
SKILL.md
Managing Synaptic Canvas Packages
Use this skill to manage Synaptic Canvas packages on this machine or in the current repo.
Agent Delegation
This skill delegates to specialized agents via the Task tool:
| Operation | Agent | Returns |
|---|---|---|
| List | sc-packages-list |
JSON: packages [{ name, description, installable_scopes, installed }] |
| Install | sc-package-install |
JSON: success, scope, dest |
| Uninstall | sc-package-uninstall |
JSON: success, scope, dest |
| Docs | sc-package-docs |
JSON: readme_path, size_bytes |
Inputs / Flags
--list→ callsc-packages-list.--install <package>→ require--localor--global; if missing, ask the user. If the package is local-only, force--local.--uninstall <package>→ same scope logic as install.--docs <package>(alias--doc) → callsc-package-docsto load and present the package README.
Conventions
- Local scope: current repository's
.claudedirectory. - Global scope: global
.claudedirectory. - The agents will detect the repo toplevel via
git rev-parse --show-toplevel. - The agents call the Synaptic Canvas installer at
<SC_REPO_PATH>/tools/sc-install.py(default injected as/Users/randlee/Documents/github/synaptic-canvas).
Safety
- Respect package metadata: if a package manifest declares
install.scope: local-only, block global installation. - Return only fenced JSON from agents; present tables and prompts in this skill.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?