Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/radutopala/ticket --skill tkコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | tk |
| description | Git-backed ticket management for AI agents |
A minimal CLI for tracking tickets as markdown files in .tickets/.
tk ready # 1. Find available work
tk start <id> # 2. Claim a ticket
tk show <id> # 3. Read details
# ... do the work
tk close <id> # 4. Mark complete
| Command | Description |
|---|---|
tk create "title" | Create ticket (returns ID) |
tk show <id> | View ticket details |
tk start <id> | Claim ticket (set to in_progress) |
tk close <id> | Complete ticket |
tk reopen <id> | Revert to open |
tk edit <id> | Open in $EDITOR |
tk list # All tickets
tk list --status open # By status (open|in_progress|closed)
tk list -a alice # By assignee
tk list -T urgent # By tag
tk ready # Open tickets with resolved deps
tk blocked # Tickets with unresolved deps
tk closed # Recently closed
tk create "Fix login bug" \
-d "Description text" \
-t bug \ # Type: bug|feature|task|epic|chore
-p 1 \ # Priority: 0-4 (0=highest)
-a alice \ # Assignee
--parent <epic-id> \ # Parent ticket
--tags ui,urgent # Tags
tk dep add <id> <depends-on> # Add dependency
tk dep remove <id> <dep-id> # Remove dependency
tk dep tree # Show dependency tree
tk dep check # Check for cycles
tk add-note <id> "Progress update" # Add timestamped note
tk link <id1> <id2> # Link related tickets
tk unlink <id1> <id2> # Remove link
tk query # JSON output
tk query '.[] | .title' # With jq filter
tk show a1b matches tic-a1b2c3.tickets/ as markdown with YAML frontmatter