Agent skill
ag:backlog-backtrack
Generate BACKLOG.md from Claude Code conversation history. Summarizes recent sessions grouped by project and date. Idempotent — safe to re-run.
Install this agent skill to your Project
npx add-skill https://github.com/yurifrl/cly/tree/main/.agents/skills/ag:backlog-backtrack
SKILL.md
Backlog Backtrack
Scan ~/.claude/history.jsonl and produce a BACKLOG.md summarizing what was worked on recently.
Usage
/ag:backlog-backtrack # Default: last 2 days, writes ./BACKLOG.md
/ag:backlog-backtrack --days 7 # Last 7 days
/ag:backlog-backtrack --dry-run # Preview only
Workflow
- Run the script with user-specified flags (default:
--days 2):
uv run home/.agents/skills/ag:backlog-backtrack/scripts/backlog_backtrack.py --dry-run --days 2
- Present output to the user for review
- If approved, run without
--dry-run(or with--output PATHif user specifies) - If a
BACKLOG.mdalready exists, the script reads its processed-sessions block and skips duplicates automatically
Script Location
home/.agents/skills/ag:backlog-backtrack/scripts/backlog_backtrack.py
Flags
--days N— Window in days (default: 2)--output PATH— Output file path (default:./BACKLOG.md)--dry-run— Print to stdout, don't write file--project PATH— Filter to a single project path
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
ag:changelog
Generates and updates project CHANGELOG.md from git commits, conversation decisions, and architectural changes. Auto-invoke this skill when new features are added, features are removed, or architecture changes occur.
prompt-engineering
Prompt engineering reference and workflow for creating, refining, and reviewing high-quality prompts for AI tools, agents, and skills.
ag:claudemd-update
Updates CLAUDE.md based on recent conversation history. This skill should be used when the user asks to update their CLAUDE.md, sync learnings from conversations, or review what was discussed recently.
write-skill
Create Claude Code skills with proper structure and documentation. Use when building custom skills, writing SKILL.md files, or when user asks "write a skill" or "create Claude skill".
add-module
Create new demo or utility modules following CLY project patterns. Use when adding TUI demonstration modules to modules/demo/ or utility modules to modules/, following Bubbletea/Bubbles conventions with proper Cobra CLI integration.
git-worktrees
Manage git worktrees for parallel development. Use when user mentions worktrees, parallel branches, or working on multiple branches simultaneously.
Didn't find tool you were looking for?