ワンクリックで
archive-ticket
Complete commit workflow - format, archive, update changelog, and commit in one operation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Complete commit workflow - format, archive, update changelog, and commit in one operation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create high-quality ASCII art UI/UX previews for web development with a two-phase approach. Phase 1: Design & Preview - visualize interfaces, explore layouts, refine ideas in ASCII format without code. Phase 2: Implementation - when ready, get HTML/CSS/React code and design tokens. Use for exploring ideas, getting stakeholder feedback, and iterating on design before development.
Aspire orchestration for cloud-native distributed applications in any language (C#, Python, Node.js, Go). Handles dependency management, local dev with Docker, Azure deployment, service discovery, and observability dashboards. Use when setting up microservices, containerized apps, or polyglot distributed systems.
Extract clean article content from URLs (blog posts, articles, tutorials) and save as readable text. Use when user wants to download, extract, or save an article/blog post from a URL without ads, navigation, or clutter.
This skill analyzes article content in-depth and generates optimized, marketable titles in the format 'Title: Subtitle' (10-12 words maximum). The skill should be used when users request title optimization, title generation, or title improvement for articles, blog posts, or written content. It generates 5 title candidates using proven formulas, evaluates them against success criteria (clickability, SEO, clarity, emotional impact, memorability, shareability), and replaces the article's title with the winning candidate.
Use when implementing API authentication, authorization, or security patterns. Covers OAuth 2.0, OIDC, JWT, API keys, rate limiting, and common API security vulnerabilities.
Use when reviewing code for security vulnerabilities, implementing authorization, or ensuring data protection.
| 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.