Generate a copyable ticket contract template - fill in the blanks and pass to /create-ticket
Resources
1Install
npx skillscat add omninode-ai/omniclaude/plan-ticket Install via the SkillsCat registry.
Ticket Planning Template
Overview
Generates a pre-filled YAML contract template that you can customize and pass to /create-ticket. No interactive prompts - just a copyable block.
Announce at start: "I'm using the plan-ticket skill to generate a ticket template."
Quick Start
/plan-ticket
/plan-ticket add caching to API
/plan-ticket fix login bug in omnibase_coreWhat This Skill Does
- Outputs a YAML contract template
- Pre-fills based on any context you provide
- You edit the template as needed
- Pass to
/create-ticket --from-contract <path>or paste inline
Output
A single copyable YAML block:
# Ticket Contract Template
# Edit this and pass to: /create-ticket --from-contract contract.yaml
title: "YOUR TICKET TITLE HERE"
repo: "omniclaude" # omnibase_core | omniclaude | omnibase_infra | omnidash | omniintelligence
requirements:
- id: "R1"
statement: "DESCRIBE WHAT MUST BE TRUE"
rationale: "WHY THIS REQUIREMENT EXISTS"
acceptance:
- "HOW TO VERIFY THIS IS DONE"
- "ANOTHER VERIFICATION CRITERION"
# Add more requirements as needed:
# - id: "R2"
# statement: "..."
# rationale: "..."
# acceptance:
# - "..."
verification:
- id: "V1"
title: "Unit tests pass"
kind: "unit_tests"
command: "uv run pytest tests/"
expected: "exit 0"
blocking: true
- id: "V2"
title: "Lint passes"
kind: "lint"
command: "uv run ruff check ."
expected: "exit 0"
blocking: true
context:
relevant_files: []
patterns_found: []
notes: ""Repository Options
| Repo | Description |
|---|---|
omnibase_core |
Core runtime, models, and validation |
omniclaude |
Claude Code plugin and hooks |
omnibase_infra |
Infrastructure and deployment |
omnidash |
Dashboard and monitoring UI |
omniintelligence |
Intelligence and RAG services |
omnimemory |
Memory and context services |
omninode_infra |
Node infrastructure |
Usage Examples
Basic:
/plan-ticketOutputs empty template.
With context:
/plan-ticket add rate limiting to API endpointsPre-fills title and suggests requirements.
Create ticket from template:
# Save template to file
# Edit as needed
# Then:
/create-ticket --from-contract contract.yaml --team OmninodeStep 3: Generate Contract
After outputting the ticket template, call generate-ticket-contract with:
ticket_id: the OMN-XXXX (or DRAFT if pre-creation)title: ticket titledescription: full ticket descriptionrepo: repo field from template
Output the result as a second fenced code block labeled Contract YAML.
Run validate_contract.py on the generated YAML and report any errors before printing.
If is_seam_ticket=true, also output a fenced code block labeled Golden Path Stub
with the generated test file content.
See Also
/create-ticket- Create ticket from contract YAML/generate-ticket-contract- Generate a ModelTicketContract YAML from ticket context/ticket-work- Execute tickets using contract-driven phases