ワンクリックで
jira-ticket-create
Maak een Jira ticket aan.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Maak een Jira ticket aan.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Werk een ticket-idee uit tot een compact Nederlands Jira-concept.
Reference for writing and editing skills well — the vocabulary and principles that make a skill predictable.
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
Turn a PRD into a multi-phase implementation plan using tracer-bullet vertical slices, saved as a local Markdown file in a date-prefixed folder under ./docs/plan/ (for example ./docs/plan/2026-06-02-feature-name/plan.md). Use when user wants to break down a PRD, create an implementation plan, plan phases from a PRD, or mentions "tracer bullets".
Create a PRD through user interview, codebase exploration, and module design, then write the PRD to a date-prefixed feature folder under ./docs/plan/ (alongside plan.md if it exists). Use when user wants to write a PRD, create a product requirements document, or plan a new feature.
| name | jira-ticket-create |
| description | Maak een Jira ticket aan. |
| argument-hint | Project key, issue type en tickettekst |
Maak een Jira ticket direct aan wanneer de gebruiker dat expliciet wil.
jira-ticket-grill.Verwacht exact dit JSON formaat (single source of truth voor alle velden):
{
"projectKey": "MIJN",
"issueTypeName": "Story",
"parentIssueKey": "MIJN-124",
"summary": "Korte titel",
"description": "# 1. Huidige situatie\n...",
"acceptanceCriteria": "1. ...",
"comment": "## Originele initiële prompt van aanvrager\n\n<ongewijzigde prompttekst>"
}
projectKey, issueTypeName, summary, description, acceptanceCriteria, comment.parentIssueKey.issueTypeName moet exact Story, Bug of Spike zijn.description en acceptanceCriteria zijn markdown velden.acceptanceCriteria gaat naar een apart Jira-veld, niet in description.parentIssueKey is informatief; het script forceert parent naar MIJN-124.comment bevat altijd de originele initiële prompt van de aanvrager als markdown comment.JIRA_ACCEPTANCE_CRITERIA_FIELD_ID ontbreekt, probeert het script auto-detectie op veldnaam (Acceptance criteria / Acceptatiecriteria).Hand-off contract; Geef de definitieve payload direct via stdin door aan het script:cat <<'JSON' | node --experimental-strip-types scripts/create-jira-ticket.ts --env .env.jira<payload volgens Hand-off contract>issueKey en issueUrl uit de script-output.atlascode.jira.showIssueForKey <issueKey>.issueKey en issueUrl aan de gebruiker.Hand-off contract.comment is verplicht en bevat de originele initiële prompt van de aanvrager.issueKey en issueUrl en open direct de Jira extensie op het nieuwe ticket.issueKey/issueUrl zijn gedeeld, en de Jira extensie is geopend via atlascode.jira.showIssueForKey.