Prompt templates for AI-assisted development. Commands, skills, and agent roles for Claude Code and pi-coding-agent.
prompts/
├── agents/ # Agent role definitions
├── commands/ # Workflow commands (/plan, /act, /chart, etc.)
├── skills/ # Domain-specific knowledge
└── legacy/ # Original claude-desktop and cline instructions
# With pi coding agent
pi @~/code/prompts/commands/plan.md "add user authentication"
# Hashtag shortcuts (configured in AGENTS.md)
#plan add user authentication
#resolve ABG-35
#screenshot upload the current page
| Command |
Purpose |
prepare.md |
Load context (memory bank + git + issues) |
plan.md |
Create implementation plan with file tree |
elaborate.md |
Get file-level implementation details |
act.md |
Execute the plan systematically |
chart.md |
Update tracking systems (close the loop) |
next.md |
Determine next task from backlog |
init.md |
Session initialization |
| Command |
Purpose |
research.md |
Research a topic with web search |
analyze.md |
Deep multi-file investigation |
navigate.md |
Codebase navigation helper |
discovery.md |
Explore unfamiliar codebase |
search.md |
Search across files |
| Command |
Purpose |
gh-issue-create.md |
Create GitHub issue |
gh-issue-view.md |
View issue details |
gh-issue-edit.md |
Edit issue |
gh-issue-close.md |
Close issue |
gh-issue-comment.md |
Add comment |
gh-issue-list.md |
List issues |
gh-issue-analyze.md |
Analyze issue for planning |
| Command |
Purpose |
load-context.md |
Load project context |
save-context.md |
Save session context |
update-memory-bank.md |
Update memory bank |
memory-bank-status.md |
Check memory bank health |
update-claude-md.md |
Update CLAUDE.md |
| Command |
Purpose |
git-save-work.md |
Save work in progress |
setup-development-branch.md |
Create feature branch |
deploy-to-production.md |
Production deployment |
checkpoint.md |
Create checkpoint commit |
| Command |
Purpose |
reorient.md |
Quick context refresh |
reorient-3.md |
3-minute reorientation |
reorient-10.md |
10-minute deep reorientation |
status-check.md |
Current status overview |
history-review.md |
Review session history |
reflect.md |
Reflect on work done |
| Command |
Purpose |
simplify.md |
Simplify code/architecture |
define-skill.md |
Create new skill prompts |
ascii.md |
Generate ASCII diagrams |
summarize-work-in-brief.md |
Brief work summary |
| Skill |
Purpose |
planning.md |
Feature planning workflow |
issue-resolution.md |
End-to-end ticket resolution |
testing.md |
Testing patterns and E2E |
frontend-design.md |
UI/UX guidance |
| Skill |
Purpose |
linearis.md |
Linear CLI multi-workspace usage |
browser-tools.md |
Chrome DevTools Protocol automation |
playwright-cli.md |
Playwright daemon CLI |
playwright-headed.md |
Headed browser automation |
firecrawl.md |
Web scraping with JS rendering |
screenshot-upload.md |
Upload to screenshots-5wx.pages.dev |
slack-agents.md |
Slack bot development |
| Skill |
Purpose |
github-crud.md |
GitHub operations |
github-issue-plan.md |
Create issue with screenshots + plan |
github-issue-act.md |
Execute approved plan |
github-image-comment.md |
Add images to comments |
| Skill |
Purpose |
quiet-build.md |
Filtered build output |
quiet-deploy.md |
Filtered deploy output |
| Skill |
Purpose |
blog-writing.md |
Blog post workflow |
stand-up.md |
Daily standup format |
timesheet.md |
Timesheet management |
oauth-bypass.md |
OAuth automation patterns |
vnc-tunnel.md |
Remote GUI automation |
mew-browser-testing.md |
Mew-specific testing |
wix-payments.md |
Wix payments integration |
xlsx-data-extraction.md |
Excel data extraction |
tmux-presenting.md |
Tmux for presentations |
Role definitions in agents/:
- planning-agent - Complex planning with codebase analysis
- testing-agent - E2E testing with Playwright
- coding-agent - Implementation with isolated tracking
- analysis-agent - Deep multi-file investigation
- research-agent - Web searches for examples
- reference-agent - Library source code analysis
The legacy/ directory contains original Claude Desktop and Cline instruction sets. Preserved for reference.
MIT