用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill pj-init命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
正在显示 SKILL.md
基于 SOC 职业分类
| name | pj-init |
| description | 멀티레포 워크스페이스(~/pj/xxx/)의 CLAUDE.md를 초기화합니다. 여러 독립 저장소가 하나의 프로젝트로 관리되는 구조에서 사용하세요. (user) |
멀티레포 워크스페이스용 CLAUDE.md 초기화 스킬입니다.
대상 구조: ~/pj/{project}/ 아래 여러 독립 git 저장소 (모노레포 아님)
문서화: living-docs 스킬과 연동 (~/docs/pj--{project}/)
사용자가 "CLAUDE.md 초기화", "pj 설정" 요청 시:
pwd
ls -la
확인 사항:
~/pj/{project}/ 패턴인지# 각 하위 폴더의 git remote 확인
for dir in */; do
echo "=== $dir ==="
git -C "$dir" remote -v 2>/dev/null | head -1
done
수집 정보:
각 저장소의 README, package.json/pyproject.toml 확인:
수집 정보:
필수 질문:
templates/workspace.md 기반으로 생성
living-docs 스킬을 사용하여 문서 폴더 초기화:
~/docs/pj--{project}/living-docs 스킬의 폴더 구조 규칙 따름사용자가 "CLAUDE.md 업데이트", "저장소 추가됨" 요청 시:
~/docs/pj--{project}/)## 작업 규칙
- **main 브랜치에 직접 커밋 금지** - 반드시 feature 브랜치에서 작업 후 PR로 병합
- 각 저장소는 독립적인 브랜치와 PR로 관리
- 커밋 전 린트/테스트 통과 필수
### 브랜치 상태 감지
- `origin/<branch>` 존재 여부로 push 상태 판단
### Git 명령 실행
- mise 환경이 필요한 저장소에서는 `mise exec -- git commit` 형식으로 실행
living-docs 스킬에 위임User: "이 폴더에 CLAUDE.md 초기화해줘" Assistant:
~/pj/myapp/)living-docs 스킬로 문서 폴더 초기화 제안템플릿은 templates/workspace.md 참조