Claude-skill-registry-data managing-sc-packages
List, install, or uninstall Synaptic Canvas packages. Use with the `/sc-manage` command.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/managing-sc-packages" ~/.claude/skills/majiayu000-claude-skill-registry-data-managing-sc-packages && rm -rf "$T"
manifest:
data/managing-sc-packages/SKILL.mdsource content
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 | | JSON: packages [{ name, description, installable_scopes, installed }] |
| Install | | JSON: success, scope, dest |
| Uninstall | | JSON: success, scope, dest |
| Docs | | JSON: readme_path, size_bytes |
Inputs / Flags
→ call--list
.sc-packages-list
→ require--install <package>
/--local
or--project
/--global
; if missing, ask the user. If the package is local-only, force--user
.--local
→ same scope logic as install.--uninstall <package>
(alias--docs <package>
) → call--doc
to load and present the package README.sc-package-docs
Conventions
- Local scope: current repository's
directory..claude - Project scope: alias for local.
- User scope:
unless~/.claude
is set.USER_CLAUDE_DIR - Global scope:
unless~/.claude
is set.GLOBAL_CLAUDE_DIR - The agents will detect the repo toplevel via
.git rev-parse --show-toplevel - The agents call the Synaptic Canvas installer at
(default resolved from<SC_REPO_PATH>/tools/sc-install.py
or the repo root).SC_REPO_PATH
Safety
- Respect package metadata: if a package manifest declares
, block global installation.install.scope: local-only - Return only fenced JSON from agents; present tables and prompts in this skill.