소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill session-begin명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | session-begin |
| description | Complete verification steps before starting any work session |
⚠️ IMPORTANT - Duplicate Detection:
Before proceeding with the full checklist, check if this session was already started:
If ANY of these are true:
If ALL are false:
Before starting any work, complete these verification steps:
Check if MCP tokens need decrypting:
# Check secrets status
if [ -f ".env.local.encrypted" ] && [ ! -f ".env.local" ]; then
echo "⚠️ Encrypted secrets found but not decrypted"
fi
If secrets need decrypting:
echo "<user_passphrase>" | node scripts/secrets/decrypt-secrets.js --stdin
.env.local now exists with tokensSecurity note: Using --stdin with echo pipe is safer than env vars, which
can leak to shell history and process listings.
If secrets are already decrypted or no encrypted file exists:
The SessionStart hook automatically checks if the previous session ended properly.
If you see a "Cross-Session Warning":
npm run hooks:health to see session statisticsQuick remediation:
# See session state
npm run hooks:health
# Check for uncommitted work from previous session
git status
git log --oneline -5
Search past conversations for relevant context using episodic memory. This helps recover decisions, solutions, and patterns from previous sessions.
Use mcp__plugin_episodic-memory_episodic-memory__search with these
queries:
// Search for context on current work
search({ query: ["current branch/feature name", "decisions"] });
// Search for past errors if debugging
search({ query: "error message or pattern" });
// Search for established patterns
search({ query: ["component/module name", "patterns"] });
When to search:
| Situation | Query Example |
|---|---|
| Starting feature work | ["feature-name", "decisions", "approach"] |
| Debugging an error | "TypeError: Cannot read property" |
| Code review prep | ["module-name", "review", "patterns"] |
| Resuming paused work | ["branch-name", "context", "next steps"] |
Tips:
limit: 5 for focused results, limit: 20 for broader searchSummarize findings for the user if relevant context is found.
The npm run session:gaps script (run in Section 7) checks for undocumented
sessions by comparing commit-log.jsonl against SESSION_CONTEXT.md.
If gaps are detected:
npm run session:gaps:fix to generate suggested session summariesHow the system works (3 layers):
.claude/state/commit-log.jsonl with session number, files, timestampThis system prevents state drift caused by context compaction interrupting session-end updates.
Documentation often drifts from reality. Before trusting any status in docs, verify against actual commits:
# Check recent commits to see actual work done
git log --oneline -30
# Check commits since last documented session date
git log --oneline --since="YYYY-MM-DD"
Compare commits against documented status:
Common discrepancies to check:
npm test to verify actual vs documentedIf docs are stale:
Check AI_REVIEW_LEARNINGS_LOG.md for the "Consolidation Trigger" section:
If consolidation was missed:
docs/archive/ are excluded from lintingdocs/archive/completed-plans/DECISION TREE:
├─ New project/domain? → Use '/find-skills' to discover capabilities
├─ Bug/Error? → Use 'systematic-debugging' skill FIRST
├─ Writing code? → Use 'code-reviewer' agent AFTER completion
├─ Security work? → Use 'security-auditor' agent
├─ UI/Frontend? → Use 'frontend-design' skill
├─ Complex task? → Check available skills with /skills
└─ Multi-step task? → Use TodoWrite to track progress
When receiving code review feedback (CodeRabbit, Qodo, etc.):
npm test and npm run lint before committingBefore writing code, scan claude.md Section 4 "Critical Anti-Patterns" and CODE_PATTERNS.md Quick Reference section (🔴 = critical patterns). Key patterns:
.* in patterns; use bounded
[\s\S]{0,N}?Show recent velocity and available tasks:
# Show velocity summary (if data exists)
node scripts/velocity/generate-report.js 2>/dev/null || true
# Show dependency-resolved available tasks
node scripts/tasks/resolve-dependencies.js 2>/dev/null || true
Share the output with the user at session start so they can see:
Execute these scripts automatically when processing this command:
# Surface known anti-patterns (errors should be visible, not suppressed)
npm run patterns:check
# Check if multi-AI review thresholds reached
npm run review:check
# Surface past lessons relevant to current work
npm run lessons:surface
# Check for undocumented sessions (Layer D - compaction gap detector)
npm run session:gaps
Important: These scripts are required. If any script fails:
Record results in session audit - these must be marked as "Ran" or "Failed
(reason)" in /session-end audit.
Check current technical debt status:
Key tracking documents:
| Document | Purpose |
|---|---|
docs/technical-debt/INDEX.md | Single source of truth for all tech debt |
AUDIT_TRACKER.md | Audit completion and threshold tracking |
ROADMAP.md Track D | Performance-critical items for this sprint |
After resolving tech debt items:
docs/technical-debt/MASTER_DEBT.jsonlBefore starting work, verify cross-document consistency:
# Check cross-document dependencies
npm run crossdoc:check
Key dependencies to verify:
MASTER_DEBT.jsonl ↔ ROADMAP.md (tech debt section current)MASTER_DEBT.jsonl (new findings consolidated)See: DOCUMENT_DEPENDENCIES.md for full dependency matrix.
After encountering any significant errors or issues:
Ready to begin session. What would you like to work on?