Plan work through structured conversation and create a GitHub issue.
/plan-work
Ask: "What do you want to work on?"
Wait for the user's response before proceeding.
After the user describes what they want to build:
Do this silently — use findings to inform your questions.
Ask follow-up questions to build shared understanding. Questions should be:
Possible areas to clarify:
Once you have enough context, summarise the plan briefly and ask:
"Want me to create a GitHub issue for this?"
Before creating the issue, check for an AGENTIC_BOT_TOKEN variable in .env or .env.local in the client repo root (the current working directory, not the agentic-github repo). If the token is present, ask the user whether they want to create the issue as themselves or as the bot account. If no token is found, skip this step and use the default gh auth.
Use gh issue create to create the issue. The repo is determined from the current git remote (gh will pick it up automatically, or the user may specify).
If the user chose the bot account, pass the token per-command: GITHUB_TOKEN=$AGENTIC_BOT_TOKEN gh issue create .... Do not export the variable or set it permanently.
The issue title should be a concise summary prefixed with a type label, e.g. feat: Add signup button or fix: Header overflow on mobile.
The issue will be executed by an intelligent agent that cannot ask questions. Structure the body in this order:
The goal: an intelligent agent should be able to implement without asking "how do we do X in this codebase?" because they can see examples of X already being done.
After creating the issue, display the issue URL so the user can review it. Let them know they can trigger implementation by commenting @claude /pr-start on the issue.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer