用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill archive-ticket命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
| 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/)