소스 정보
- 저장소
- richfrem/claude-design-bc-gov-design-system
- 최근 소스 활동
- 2026년 4월 20일 20:59
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.