managing-sc-packages
List, install, or uninstall Synaptic Canvas packages. Use with the `/sc-manage` command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List, install, or uninstall Synaptic Canvas packages. Use with the `/sc-manage` command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up a repo-local just task runner with a root Justfile, optional .just/ helper scripts, and curated help, build, fmt, lint, test, and ci recipes. Use when a repo needs just, a Justfile, .just helpers, or when the user mentions task automation, "just build", "just lint", "just fmt", or dropping in a just system.
Create or harden CLIs intended primarily for AI or system consumption and secondarily for humans. Use when designing or implementing a JSON-first CLI with an MCP-ready contract seam, where every command supports machine output, errors are typed and actionable, mutating commands are auditable via corresponding read commands, and external integrations need simulator-backed testing. Do not use for human-first shell utilities, one-off scripts, or text-only CLIs.
Design stateful simulators for AI-facing CLIs that integrate with devices, networks, services, or databases. Use when a CLI needs realistic simulator-backed testing, configurable fault injection, persistent state, and a swappable adapter boundary so the same business logic runs against live and simulated backends. Do not use for shallow mocks, stateless test doubles, or CLIs with no external integration.
Critically review an existing CLI, MCP wrapper, or CLI plan for AI-first contract quality. Use when evaluating whether a CLI is JSON-first, has an MCP-ready contract seam without JSON reshaping, auditably models state changes, uses stateful simulator-backed testing for external integrations, and returns typed actionable errors. Do not use for general style review or human-first shell UX review.
Run CI quality gates with optional auto-fix and PR creation.
Run Codex tasks via the ai_cli Task Tool runner.
| name | managing-sc-packages |
| description | List, install, or uninstall Synaptic Canvas packages. Use with the `/sc-manage` command. |
| version | 0.12.0 |
Use this skill to manage Synaptic Canvas packages on this machine or in the current repo.
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 |
--list → call sc-packages-list.--install <package> → require --local/--project or --global/--user; if missing, ask the user. If the package is local-only, force --local.--uninstall <package> → same scope logic as install.--docs <package> (alias --doc) → call sc-package-docs to load and present the package README..claude directory.~/.claude unless USER_CLAUDE_DIR is set.~/.claude unless GLOBAL_CLAUDE_DIR is set.git rev-parse --show-toplevel.<SC_REPO_PATH>/tools/sc-install.py (default resolved from SC_REPO_PATH or the repo root).install.scope: local-only, block global installation.