address-ticket
Read the JIRA ticket for the current branch and drive it to completion using a multi-agent team with TDD: a PO writes requirements, the developer approves, then a test plan is proposed and reviewed. Once confirmed, tests are written first (red), then production code is implemented to make them pass (green).
Usage:
/address-ticket- Retrieve the ticket and drive it to full implementation with a team/address-ticket --no-jira <instructions>- Skip JIRA retrieval and use the provided instructions as the ticket context/address-ticket --headless- Fully autonomous: a reviewer agent validates the requirements and test plan instead of asking the developer/address-ticket --no-jira --headless <instructions>- Both flags can be combined
Instructions:
Phase 0 — Parse flags
-
Scan
$1,$2,$3for flags:Two optional flags can appear in any order:
--no-jiraand--headless. Any remaining (non-flag) argument is the user instructions.--headlessmode: If any of$1,$2,$3is--headless, set headless = true. In headless mode, the developer is never asked for approval. Instead, a reviewer sub-agent validates the requirements and test plan autonomously (see steps 10 and 14).--no-jiramode: If any of$1,$2,$3is--no-jira:- The first non-flag argument is the user instructions — the ticket context (what to build, fix, or change)
More from morphet81/cheat-sheets
translate-pdf
Translate a PDF document from one language to another. Extracts text to structured Markdown, translates it, and builds a new translated PDF. Requires a Python environment with pymupdf, markdown, and weasyprint.
80create-jira-ticket
Create a JIRA ticket from user instructions via acli. Uses project from the current branch when possible, lists project epics, recommends the best epic, asks confirmation before creating, uses ADF descriptions, and can attach Figma designs via the Jira integration.
80localise
Generate an HTML translation helper page for Lokalise. Use when the user provides English text (singular/plural) and wants translations across all 23 supported languages, rendered as an interactive HTML page with copy buttons. Triggers on phrases like "translate for Lokalise", "generate translations", "translation table", or when the user provides English strings and mentions languages/i18n/localization.
79update-jira-ticket
Compare the JIRA ticket description to changes made in the current branch and propose description edits and/or comments to keep the ticket accurate and well-documented.
79verify-test-cases
Verify test cases in all test files modified since branching out from base branch. Checks that test cases make sense, have no duplications, and provide meaningful coverage. Spawns parallel agents for multi-file analysis. After the user confirms test-case changes, runs coverage (npm test:coverage or Jest/Vitest fallback) and fixes tests until coverage passes.
79merge-base-branch
Select base branch (from .agent, git history, or main), fetch, stop if already up to date, commit all WIP, merge, resolve conflicts, then lint, tests at 100% coverage, and build—with commits after each fix phase.
79