소스 정보
- 저장소
- pactkit/claude-code-plugin
- 최근 소스 활동
- 2026년 8월 24일 05:59
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/pactkit/claude-code-plugin --skill pactkit-scaffold명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | pactkit-scaffold |
| description | File scaffolding: create Spec, test files, E2E tests, Git branches, Skills |
| model | haiku |
Project file scaffolding tool for quickly creating standardized project files.
Script location: Use the base directory from the skill invocation header to resolve script paths.
docs/specs/ directory must exist (required by create_spec)tests/unit/ and tests/e2e/ directories must exist (required by test scaffolding)git_start)python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py create_spec ITEM-ID "Title"
ITEM-ID: Work item identifier, e.g. STORY-001, HOTFIX-001, BUG-001Title: Spec titledocs/specs/{ITEM-ID}.md (with template structure)python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py create_test_file src/module.py
tests/unit/test_module.pypython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py create_e2e_test ITEM-ID "scenario_name"
tests/e2e/test_{ITEM-ID}_{scenario}.pypython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py git_start ITEM-ID
STORY-* → feature/STORY-*HOTFIX-* → fix/HOTFIX-*BUG-* → fix/BUG-*python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py create_skill skill-name "Description of the skill"
skill-name: Skill identifier (must start with lowercase letter: ^[a-z][a-z0-9]*(-[a-z0-9]+)*$)Description: Brief description for SKILL.md frontmatter${CLAUDE_PLUGIN_ROOT}/skills/{skill-name}/ with SKILL.md, scripts/{clean_name}.py, references/.gitkeeppython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-scaffold/scripts/scaffold.py create_board
docs/product/stories/; use pactkit board render only for an explicit projection## 📋 Backlog, ## 🔄 In Progress, ## ✅ Done sections/project-init: Use create_board to initialize Story facts (Phase 4)/project-plan: Use create_spec to create a Spec template/project-act: Use create_test_file to create test scaffolding/project-check: Use create_e2e_test to create E2E testscreate_skill to scaffold a new reusable skill