hs-feature
Create a new feature ticket in Hot Sheet
Install
mkdir -p .claude/skills/hs-feature && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13229" && unzip -o skill.zip -d .claude/skills/hs-feature && rm skill.zipInstalls to .claude/skills/hs-feature
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create a new feature ticket in Hot SheetAbout this skill
Create a new Hot Sheet feature ticket. New features to be implemented.
Parsing the input:
- If the input starts with "next", "up next", or "do next" (case-insensitive), set
up_nexttotrueand use the remaining text as the title - Otherwise, use the entire input as the title
Create the ticket — MCP tool (preferred when the channel is connected):
Call the hotsheet_create_ticket tool with { "title": "<TITLE>", "category": "feature", "up_next": <true|false> }. The tool is schema-validated and routes to the channel server's --data-dir so there's no chance of cross-project misrouting.
Fallback (curl):
curl -s -X POST http://localhost:4174/api/tickets \
-H "Content-Type: application/json" \
-H "X-Hotsheet-Secret: 6f11befdc8c3a7c5263607dda96d69fb" \
-d '{"title": "<TITLE>", "defaults": {"category": "feature", "up_next": <true|false>}}'
If the request fails (connection refused or 403), re-read .hotsheet/settings.json for the current port and secret values — you may be connecting to the wrong Hot Sheet instance.
Report the created ticket number and title to the user.