用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/richfrem/claude-design-bc-gov-design-system --skill create-plugin命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill when building Blazor components or apps aligned to the B.C. Government Design System. Triggers: BC Gov Blazor component, Blazor BC government, BC Sans Blazor, BC government Razor component, WCAG Blazor BC, government Blazor UI, BC design tokens Blazor, Blazor Server BC Gov, Blazor WASM BC Gov.
Use this skill when creating a PowerPoint presentation aligned to the B.C. Government Design System. Triggers: BC Government deck, government slide deck, BC Sans presentation, BC Gov branding in PowerPoint, design system PPTX template, government briefing deck, BC government slide template.
Use this skill when building React components or apps aligned to the B.C. Government Design System. Triggers: BC Gov React component, @bcgov/design-system-react-components, BC government React app, BC Sans React, BC Gov form in React, government React UI, WCAG-compliant BC government component, React Aria BC Gov.
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-plugin |
| description | Scaffold a complete Claude Code plugin from scratch |
| argument-hint | [plugin-name] |
| allowed-tools | Bash, Read, Write |
Follow the create-plugin skill workflow to scaffold a new Claude Code plugin.
$ARGUMENTS — optional plugin name in kebab-case. Omit to start with discovery.$ARGUMENTS provides a plugin name, use it to seed Phase 1plugin.json, implement
each component using the appropriate sub-skill, validate, test, and document.claude-plugin/plugin.json.skills list.agents list.commands list.hooks list.plugin.json. ✅" or list additions made.Plugin directory with .claude-plugin/plugin.json, component directories, README.md,
and a .claude/settings.json stub for reliable local discovery.
$ARGUMENTS is empty: begin with Phase 1 discovery — do not pre-fill plugin namecreate-mcp-integration for each one/agent-scaffolders:audit-plugin to validate structureWhen a skill needs to call a Python helper script that is shared across skills in the same
plugin, always create a file-level symlink in the skill's scripts/ folder pointing to the
canonical copy at the plugin root — never duplicate the file.
Standard pattern:
plugins/<plugin>/scripts/<canonical_name>.py ← canonical source (real file)
plugins/<plugin>/skills/<skill>/scripts/<name>.py ← symlink → ../../../scripts/<canonical_name>.py
The symlink name and target name may differ (e.g. execute.py → exploration_optimizer_execute.py).
The bridge installer resolves all symlinks to physical copies when deploying via the marketplace.
Creating symlinks correctly:
# From the skill's scripts/ directory:
ln -s ../../../scripts/<canonical_name>.py <symlink_name>.py
# Or via symlink_manager.py:
python plugins/link-checker/scripts/symlink_manager.py create \
--src plugins/<plugin>/scripts/<canonical_name>.py \
--dst plugins/<plugin>/skills/<skill>/scripts/<symlink_name>.py
⚠️ Windows / core.symlinks warning: If git config core.symlinks is false, git checks
out symlinks as plain-text "stand-in" files. These are silently broken — the bridge installer
copies the path string, not the script. After checkout on Windows or any machine where
symlinks may have degraded, run:
python plugins/link-checker/scripts/bulk_symlink_fixer.py plugins/<plugin-name>
Then manually verify: find plugins/<plugin-name>/skills -path "*/scripts/*" -type f ! -type l
should return nothing (all script references should be real symlinks, not plain files).
When this plugin will be distributed via a marketplace.json, the marketplace entry defaults to strict: true, which requires the plugin to have its own plugin.json. A missing plugin.json silently prevents the entire plugin from loading.
Always:
.claude-plugin/plugin.json inside the plugin directory (this skill does this by default)"strict": true — never rely on the defaultmanage-marketplace skill for the correct marketplace entry formatreferences/ADRs/. Always consult them for standards on plugin architecture, shared scripts, cross-plugin dependencies, symlinking, and loose coupling to avoid repeating yourself.