hs-feature
Simplified creation of feature-specific tickets within the Hot Sheet tracking system.
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 SheetKey capabilities
- →Create a new feature ticket in Hot Sheet
- →Flag tickets as 'up next' priority
- →Parse input for title and priority
- →Interact with the MCP tool for ticket creation
- →Fallback to `curl` for ticket creation
- →Report created ticket number and title
How it works
This skill creates a new feature ticket in Hot Sheet by parsing the input for the title and an optional 'up next' flag. It uses either the `hotsheet_create_ticket` tool or a `curl` fallback to interact with the Hot Sheet API.
Inputs & outputs
When to use hs-feature
- →Tracking new features
- →Prioritizing development tasks
- →Logging feature ideas
About 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.
When not to use it
- →When creating tickets for categories other than 'feature'
- →When the user needs to modify existing tickets
- →When the user needs to list or view tickets
Limitations
- →The skill is specific to creating 'feature' tickets
- →The skill relies on the Hot Sheet API or MCP tool
- →The skill requires correct `port` and `secret` values for `curl` fallback
How it compares
This skill provides a structured and automated way to create feature tickets in Hot Sheet, including priority flagging, unlike manually creating tickets through a UI.
Compared to similar skills
hs-feature side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| hs-feature (this skill) | 0 | 1mo | Review | Beginner |
| planning-with-files | 233 | 6mo | Review | Intermediate |
| trello | 41 | 2mo | Review | Beginner |
| pmbok-project-management | 38 | 9mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by brianwestphal
View all by brianwestphal →You might also like
planning-with-files
davila7
Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.
trello
openclaw
Manage Trello boards, lists, and cards via the Trello REST API.
pmbok-project-management
jgtolentino
Comprehensive PMP/PMBOK project management methodologies and best practices. Use this skill when users need guidance on project management processes, templates, knowledge areas, process groups, tools, techniques, or certification preparation. Covers all 10 PMBOK Knowledge Areas and 5 Process Groups with practical templates, frameworks, and industry-standard approaches. Includes risk management, stakeholder engagement, schedule management, cost control, quality assurance, and resource planning.
clickup
civitai
Interact with ClickUp tasks and documents - get task details, view comments, create and manage tasks, create and edit docs. Use when working with ClickUp task/doc URLs or IDs.
ma-playbook
alirezarezvani
M&A strategy for acquiring companies or being acquired. Due diligence, valuation, integration, and deal structure. Use when evaluating acquisitions, preparing for acquisition, M&A due diligence, integration planning, or deal negotiation.
create-plan
antinomyhq
Generate detailed implementation plans for complex tasks. Creates comprehensive strategic plans in Markdown format with objectives, step-by-step implementation tasks using checkbox format, verification criteria, risk assessments, and alternative approaches. Use when users need thorough analysis and structured planning before implementation, when breaking down complex features into actionable steps, or when they explicitly ask for a plan, roadmap, or strategy. Strictly planning-focused with no code modifications.