jira-task
Create well-structured JIRA tasks for any software project. Use when the user describes a feature, bug, improvement, or any work item that needs to become a JIRA ticket. Analyzes the project codebase to provide accurate technical details. Always drafts the task for user review before sending to JIRA. Triggers on any request to create a task, ticket, story, bug report, or JIRA issue.
What this skill does
# JIRA Task Creator
Create well-structured JIRA tasks by analyzing the project codebase and drafting tickets for user approval.
## Workflow
1. **Initial setup** — Ask language and task type via `AskUserQuestion` (see below)
2. **Parse the request** — Identify what the user wants done and which subsystem(s) are affected
3. **Search the codebase** — Find relevant files, patterns, and existing implementations
4. **Clarify architectural decisions** — Before drafting, ask the user about any ambiguities or open design questions discovered during codebase analysis (see below)
5. **Draft the task** — Write the JIRA task in the chosen language and type
6. **Present for review** — Show the draft to the user and wait for confirmation
7. **Resolve JIRA configuration** — After user confirms the draft, resolve `cloudId` and `projectKey` (see below)
8. **Send to JIRA** — Only after configuration is resolved
## Initial Setup (Step 1)
Before anything else, use `AskUserQuestion` with two questions:
- **Language** (header: "Language"): English (Recommended) | Spanish | Polish | German
- **Task type** (header: "Task type"): Task — general dev work | Bug — something broken | Hotfix — critical production fix | Story — user-facing feature
Use the selected language for the entire draft. Use the selected type in the `**Type:**` field.
## Architectural Clarification (Step 4)
After analyzing the codebase but **before** drafting the task, identify anything that is not explicitly specified in the user's request and could be implemented in more than one way. Ask concise, focused questions about:
- **Data modeling** — Where should new data live? New collection/table vs. extending existing model? Embedded document vs. reference?
- **API design** — New endpoint vs. extending existing one? Which module owns this logic?
- **UI placement** — Which page/section/component should host the new feature? Modal vs. inline vs. new page?
- **Scope boundaries** — Should this affect related entities? Does the change need to appear in search, exports, or API responses?
- **Edge cases** — What happens with existing data? Migration needed? Backward compatibility?
- **Integration impact** — Does this touch external services? Any rate limits or sync concerns?
**Rules:**
- Only ask about genuinely ambiguous points — skip entirely if the request is fully clear
- **Always use the `AskUserQuestion` tool** to present questions with selectable options — never ask as plain text
- Each question MUST have 2-4 concrete options derived from codebase analysis; the user can always pick "Other" for a custom answer
- Keep headers short (max 12 chars), e.g., "Data model", "UI placement", "Scope"
- Max 4 questions per `AskUserQuestion` call (tool limit)
## Subsystem Identification
Determine affected subsystem(s) by analyzing the project structure:
1. Look for monorepo indicators — `workspaces` in `package.json`, multiple directories with their own `package.json`, `docker-compose.yml` services, or similar markers
2. Identify logical subsystems from the directory layout (e.g., `backend/`, `frontend/`, `api/`, `admin/`, `worker/`)
3. If the project is a single application, treat the top-level modules or directories as subsystems
4. If unclear, ask the user which parts of the system are affected via `AskUserQuestion`
Use the discovered subsystem names consistently throughout the task draft.
## Codebase Analysis
Before drafting, search the affected subsystem(s) to understand:
- Existing implementations of similar features (grep for related keywords)
- File structure and naming patterns in the relevant module
- Related services, models, or components that will be touched
- Any enums, constants, or configurations relevant to the task
Use findings to write accurate **Technical Details** in the task. Keep searches focused — find the specific files and patterns, not exhaustive code reviews.
**Important:** The codebase analysis informs your architectural understanding, but Technical Details should describe *approaches and patterns*, not specific file changes. See the Technical Details Guidelines below.
## Task Formats
Every task MUST be written in the **language chosen in Step 1**. The structure varies by type. After selecting the type in Step 1, read the corresponding example file for a full reference.
### Format: Task
Standard format for general development work.
```
## [Task Title]
**Type:** Task
**Subsystem(s):** [discovered subsystems]
### Description
[1-2 sentences. What and why.]
### Acceptance Criteria
- [ ] [3-5 non-obvious checkpoints]
### Technical Details *(optional)*
- [Architectural hint, pattern suggestion, or implementation approach]
### Links *(optional)*
```
Example: [references/example-task.md](references/example-task.md)
### Format: Bug / Hotfix
Same as Task but with an optional **Steps to Reproduce** section between Description and Acceptance Criteria. Include it when the reproduction path is non-obvious or involves multiple steps. For Hotfix, prefix the title with `[HOTFIX]`.
```
## [Bug Title] / [HOTFIX] [Bug Title]
**Type:** Bug | Hotfix
**Subsystem(s):** [discovered subsystems]
### Description
[1-2 sentences. What is broken and what is the expected behavior.]
### Steps to Reproduce *(optional — include when repro is non-obvious)*
1. [Step 1]
2. [Step 2]
3. [Observed result vs. expected result]
### Acceptance Criteria
- [ ] [3-5 non-obvious checkpoints]
### Technical Details *(optional)*
- [Architectural hint, pattern suggestion, or implementation approach]
### Links *(optional)*
```
Examples: [references/example-bug.md](references/example-bug.md) | [references/example-hotfix.md](references/example-hotfix.md)
### Format: Story
More descriptive format. Stories group related functionality into numbered **Features** — each feature is a logical unit of work that could become a subtask. Keep it scannable: short feature titles, bullet points for details.
```
## [Story Title — user-centric, describes the capability]
**Type:** Story
**Subsystem(s):** [discovered subsystems]
### Description
[As a {role}, I want {capability}, so that {benefit}. 2-3 sentences expanding context.]
### Features
**1. [Feature name]**
- [Key behavior or requirement]
- [Key behavior or requirement]
**2. [Feature name]**
- [Key behavior or requirement]
- [Key behavior or requirement]
**3. [Feature name]**
- [Key behavior or requirement]
### Acceptance Criteria
- [ ] [High-level criteria covering the whole story, 3-5 items]
### Technical Details *(optional)*
- [Architectural hint, pattern suggestion, or implementation approach]
### Links *(optional)*
```
Example: [references/example-story.md](references/example-story.md)
## Technical Details Guidelines
Technical Details provide **architectural guidance**, not implementation-level changes. The task is a planning artifact — specific code modifications belong to the implementation phase.
**Include:**
- **Architecture & patterns** — which existing pattern to follow, which layer/module handles the logic (e.g., "use the event-driven pattern from the notifications module")
- **Data modeling** — schema approach, relationship types, index considerations (e.g., "add a one-to-many relationship to the existing attachments system")
- **Integration points** — which existing services or modules to reuse or extend, external APIs involved
- **Key constraints** — performance, security, backward compatibility, migration considerations
- **Affected areas** (high-level) — mention modules or subsystems, not specific files with line numbers (e.g., "customer module in backend-api", not `backend-api/src/modules/customer/customer.service.ts:142`)
**Avoid:**
- Specific file paths with line numbers
- Method-level changes (e.g., "modify `normalizeEmail()` at line 42")
- Ready-made code snippets or step-by-step implementation instructions
- Exception: a file path is acceptable when referring to a reusable utility or existing pattern worth following (e.g., "reuRelated in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.