A Claude Code skill that manages project tickets as markdown files. No server, no database — the folder is the backlog.
If you have the skill manager:
/skill install Positronic-AI/tickets
Or manually:
git clone https://github.com/Positronic-AI/tickets.git ~/.claude/skill-repos/tickets
ln -s ~/.claude/skill-repos/tickets ~/.claude/skills/ticket| Command | Description |
|---|---|
/ticket fix the login redirect |
Create a new ticket |
/ticket list |
List open tickets |
/ticket show auth-redirect |
Show a ticket |
/ticket close auth-redirect |
Close a ticket |
/ticket update auth-redirect |
Add progress notes |
/ticket search auth |
Search all tickets |
Tickets live in tickets/ at your project root:
tickets/
├── open/
│ ├── fix-auth-redirect.md
│ └── add-dark-mode.md
└── done/
└── setup-ci-pipeline.md
Each ticket is a markdown file with YAML frontmatter:
---
title: Fix the login redirect
status: open
created: 2026-04-23
origin: "#dev channel"
---
# Fix the login redirect
Users hitting /login are redirected to / instead of their original destination.Tickets are checked into git. They show up in PRs, have history, and are grep-able.
MIT