Manage Jira issues via the command line — read issues, query by filters, create/update issues, add comments, and close issues after work completion.
Assume jira-cli is installed and configured.
Project flag: Always use -p PROJ to specify project explicitly (don't rely on defaults)
Ask the user to use the web UI for attachments/images and visual board operations -- these can't be done from the CLI.
jira issue view -p PROJ PROJ-123 # Read requirements
jira issue assign PROJ-123 $(jira me) # Assign to user
# ... implement ...
jira issue comment add PROJ-123 "Fixed in $(git rev-parse --short HEAD)"
jira issue move PROJ-123 "Done" # Close when complete
Extract only needed fields to minimize context usage:
# Get specific fields only
jira issue view -p PROJ PROJ-123 --raw | jq -r '.fields.status.name'
# List keys for iteration
jira issue list -p PROJ --plain --no-headers --columns KEY
See jira-cli reference guide for command syntax, JQL, filter flags, output formats, and data extraction patterns.
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