소스 정보
- 저장소
- AJBcoding/claude-skill-eval
- 최근 소스 활동
- 2025년 11월 18일 19:41
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/AJBcoding/claude-skill-eval --skill managing-handoffs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | managing-handoffs |
| description | Create, update, and archive handoffs with proper metadata and verification |
Manage handoff documents through their full lifecycle: create → work → resolve → archive.
Core principle: Evidence-based verification before closing handoffs.
Announce at start: "I'm using the managing-handoffs skill to [operation]."
Every handoff uses this YAML frontmatter:
---
type: handoff
status: active # active | resolved | archived
created: YYYY-MM-DD
resolved_date: null
archived_date: null
related_sessions: []
related_plans: []
verification:
implementation_complete: false
documentation_exists: false
tests_passing: false
commits_made: false
---
When: Starting new feature work or documenting incomplete work for handoff.
Process:
Get information:
Generate filename:
from datetime import date
today = date.today().strftime('%Y-%m-%d')
slug = title.lower().replace(' ', '-').replace('_', '-')
filename = f"{today}-{slug}-handoff.md"
Create file at: /docs/handoffs/current/{filename}
Content structure:
---
type: handoff
status: active
created: {today}
resolved_date: null
archived_date: null
related_sessions: []
related_plans: [{plan_paths}]
verification:
implementation_complete: false
documentation_exists: false
tests_passing: false
commits_made: false
---
# {Title}
**Created:** {today}
**Status:** 🔴 Active
## Context
{description}
## Tasks
- [ ] {task 1}
- [ ] {task 2}
- [ ] {task 3}
## Implementation Notes
[To be filled during work]
## Completion Criteria
- [ ] All tasks complete
- [ ] Code committed to git
- [ ] Documentation updated (guides/summaries)
- [ ] Tests passing (if applicable)
- [ ] Session documented
Commit:
git add docs/handoffs/current/{filename}
git commit -m "docs: create handoff for {title}"
When: Work is complete and ready to mark resolved.
Process:
Load handoff file
Run verification checklist:
Implementation Complete:
git log --oneline --since="$(yq -r .created handoff.md)" --grep="feat\\|fix\\|refactor"
Documentation Exists:
Tests Passing (if applicable):
pytest tests/ -v
Commits Made:
Verify all checklist items:
Update metadata:
status: resolved
resolved_date: {today}
related_sessions: [{session_files}]
verification:
implementation_complete: true
documentation_exists: true
tests_passing: true # or N/A
commits_made: true
Update status in document:
When: Handoff has been resolved and is ready for archival.
Process:
Verify handoff is resolved:
Add RESOLVED- prefix:
mv docs/handoffs/resolved/{filename} \
docs/handoffs/archive/RESOLVED-{filename}
Update metadata:
status: archived
archived_date: {today}
Commit:
git add docs/handoffs/archive/
git commit -m "docs: archive resolved handoff - {title}"
When: Checking project status, finding active work.
Process:
Scan handoffs/current/:
find docs/handoffs/current -name "*.md" -type f
For each handoff:
Output format:
Active Handoffs (3):
1. import-coverage-completion
Created: 2025-11-13 (2 days ago)
File: docs/handoffs/current/2025-11-13-import-coverage-completion-handoff.md
2. formula-correction-audit
Created: 2025-11-13 (2 days ago)
File: docs/handoffs/current/2025-11-13-formula-correction-audit-handoff.md
3. web-ui-phase-2
Created: 2025-11-10 (5 days ago)
File: docs/handoffs/current/2025-11-10-web-ui-phase-2-handoff.md
Uses:
superpowers:verification-before-completion - Evidence-based verificationUsed by:
project-status skill - Shows active handoffsClosing without verification:
Missing documentation:
Archiving active handoffs:
Never:
Always:
Move to resolved:
mv docs/handoffs/current/{filename} docs/handoffs/resolved/
Commit:
git add docs/handoffs/
git commit -m "docs: resolve handoff - {title}
Verification complete:
- Implementation: {commits}
- Documentation: {docs}
- Tests: {status}
"
SOC 직업 분류 기준