소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 3월 2일 06:27
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill archive-ticket명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | archive-ticket |
| description | Archive completed tickets by moving them to .archived/ |
This skill provides instructions for archiving tickets when their derived phases complete. Archiving moves a ticket from .ushabti/tickets/ to .ushabti/tickets/.archived/, making it invisible to agents.
Archive a ticket when:
ticket: TNNNN metadata)Archival is part of Overseer's phase completion workflow.
When completing a phase:
ticket metadata fieldticket: T0042 means ticket ID is T0042)If no ticket field exists, skip archival (the phase was not derived from a ticket).
The ticket file is in .ushabti/tickets/ with a filename matching TNNNN-*.yaml
For ticket ID T0042, the filename might be T0042-improve-error-messages.yaml
Use glob pattern to find the exact filename:
ls .ushabti/tickets/T0042-*.yaml
Ensure the archive directory exists by running:
mkdir -p .ushabti/tickets/.archived
This is idempotent and handles cases where the directory was not created during bootstrap.
Move the ticket file from .ushabti/tickets/ to .ushabti/tickets/.archived/
mv .ushabti/tickets/T0042-improve-error-messages.yaml .ushabti/tickets/.archived/
The filename remains unchanged, only the location changes.
Confirm the ticket file:
.ushabti/tickets/.ushabti/tickets/.archived/In review.md, document the archival:
## Completion Actions
- Archived ticket T0042 (improve-error-messages) as phase is complete
# Ensure archive directory exists
mkdir -p .ushabti/tickets/.archived
# Find the ticket file
TICKET_FILE=$(ls .ushabti/tickets/TNNNN-*.yaml)
# Move to archive
mv "$TICKET_FILE" .ushabti/tickets/.archived/
# Verify
ls .ushabti/tickets/.archived/TNNNN-*.yaml
Replace TNNNN with the actual ticket ID from phase.md.
Phase file (.ushabti/phases/0012-ticketing-system/phase.md) contains:
# Phase 0012: Ticketing System
ticket: T0008
## Intent
...
Overseer completes the phase and archives the ticket:
# Ensure archive directory exists
mkdir -p .ushabti/tickets/.archived
# Find ticket T0008
TICKET_FILE=$(ls .ushabti/tickets/T0008-*.yaml)
echo "Found: $TICKET_FILE"
# Output: .ushabti/tickets/T0008-add-ticketing-system.yaml
# Move to archive
mv .ushabti/tickets/T0008-add-ticketing-system.yaml .ushabti/tickets/.archived/
# Verify
ls .ushabti/tickets/.archived/T0008-*.yaml
# Output: .ushabti/tickets/.archived/T0008-add-ticketing-system.yaml
Overseer logs in review.md:
## Completion Actions
- Archived ticket T0008 (add-ticketing-system) as phase is complete
.ushabti/tickets/, not .archived/)