用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill archive-ticket命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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 职业分类
正在显示 SKILL.md
| name | archive-ticket |
| description | Complete commit workflow - format, archive, update changelog, and commit in one operation. |
| allowed-tools | Bash |
| user-invocable | false |
Complete commit workflow after user approves implementation.
Use this skill after user approves implementation. The script handles formatting, archiving, changelog, and commit.
IMPORTANT: Always use the script. Never manually move tickets or create changelogs.
Note: Archiving requires being on a named branch (not detached HEAD). The script will exit with an error if not on a branch.
Run the bundled script with ticket path, commit message, repo URL, and optional description:
bash .claude/skills/archive-ticket/sh/archive.sh <ticket-path> <commit-message> <repo-url> [description] [files...]
Example:
bash .claude/skills/archive-ticket/sh/archive.sh \
.workaholic/tickets/todo/20260115-feature.md \
"Add new feature" \
https://github.com/org/repo \
"Enables users to authenticate with session-based login, addressing the need for secure access control." \
src/foo.ts src/bar.ts
[feat], [fix], feat:, fix:, etc.Add JSDoc comments to gateway exports
Update traceparent format with W3C spec
Fix session decryption to handle invalid tokens
Remove unused RegisterTool type after consolidation
The optional description parameter captures the WHY behind the change:
/report to generate comprehensive PR descriptions"Enables users to authenticate with session-based login, addressing the need for secure access control."
The script manages two separate locations:
.workaholic/tickets/archive/<branch>/.workaholic/changelogs/<branch>.mdThis separation keeps change requests (tickets) distinct from change summaries (changelogs).
Entries are automatically categorized based on commit verb and include optional descriptions:
- Commit title ([hash](url)) - [ticket](file.md)
Description explaining why this change was made.
The description line is optional but recommended for generating comprehensive PR summaries.