Agento-patronum create-ticket
Create a GitHub issue for agento-patronum. Supports three types: feature/enhancement, bug, and refactor.
install
source · Clone the upstream repo
git clone https://github.com/emaarco/agento-patronum
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/emaarco/agento-patronum "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/create-ticket" ~/.claude/skills/emaarco-agento-patronum-create-ticket && rm -rf "$T"
manifest:
.claude/skills/create-ticket/SKILL.mdsource content
Skill: create-ticket
Create a GitHub issue for agento-patronum using the correct template and title convention.
Sync note: The body sections below mirror
. If templates change, update this skill to match..github/ISSUE_TEMPLATE/
Supported types
| Type | Title convention | Label |
|---|---|---|
| | enhancement |
| | bug |
| | refactor |
Steps
1. Determine ticket type
If not provided as argument, ask the user which type applies.
2. Confirm the title
Show the title convention for the chosen type and confirm with the user before proceeding. Keep titles concise (max ~72 characters).
3. Gather body content
feature: Summary, Current state, Desired state, Added value, Technical notes (optional)
bug: Summary, Steps to reproduce, Current behavior, Expected behavior, Technical context (optional)
refactor: Summary, Current state, Desired state, Added value, Technical notes (optional)
4. Create the issue
gh issue create \ --title "<title>" \ --label "<label>" \ --body "<formatted body>"
Format body as Markdown with
## headings matching the template field labels exactly. Example for a bug:
## Summary <content> ## Steps to reproduce <content> ## Current behavior <content> ## Expected behavior <content> ## Technical context <content>