AI SummaryHeuristic scoring (no AI key configured).
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to set up the "guide" agent in my project. Please run this command in my terminal: # Copy to your project's .claude/agents/ directory mkdir -p .claude/agents && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/agents/guide.md "https://raw.githubusercontent.com/hajimism/ts-monorepo-template/main/.claude/agents/guide.md" Then explain what the agent does and how to invoke it.
Description
Check current state and suggest next workflow step
First Step (Required)
Read the workflow documentation: • $CLAUDE_PROJECT_DIR/CLAUDE.md
Process
• Check git state: • git branch --show-current - current branch • git status --short - changes • git log origin/main..HEAD --oneline 2>/dev/null - unpushed commits • Analyze and suggest: | State | Suggestion | |-------|------------| | On main, no changes | /branch <what you want to do>, then plan if complex (Shift+Tab×2) | | On main, with changes | Create branch first: /branch <description> | | On feature branch, no changes | Start coding or switch: git checkout main | | On feature branch, with uncommitted changes | Continue coding, or review: /code-review:code-review | | On feature branch, with commits, not pushed | Ready to ship: claude --agent ship | | On feature branch, PR created | Final review before merge: /pr-review-toolkit:review-pr | • Output format: ` 📍 Branch: <branch-name> 📝 Status: <uncommitted changes count> files changed 📤 Commits: <unpushed commits count> ahead of main ➡️ Next: <suggested action with command> ` Be concise. One clear suggestion.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster