원클릭으로
new-task
Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | new-task |
| description | Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories |
| user-invocable | true |
| argument-hint | <description of task> |
You are creating a new task for the OpenMates project. Your job is to take the user's raw input (which may be a brain dump, a bug report, a feature idea, or a vague note) and turn it into a well-structured task with all fields properly filled.
Use GitHub Issues by default. Use Linear only for programmatically stored/recorded product issues, marketing work, sensitive/private work, or when the user explicitly asks for Linear.
Analyze the user's input and determine:
Bug, Feature, Improvement, Idea, Security, Performance, EncryptionUI, Backend, DevOps, testing, docs, marketing, paymentcronjob, user-feedback, SEOv0.14) or the next minor product line for larger features (for example v0.15). Patch numbers such as 0.14.1 are artifact revisions, not user-facing milestones.none, inline, or full using docs/contributing/guides/spec-driven-development.mdShow the user what will be created:
## New Task Preview
**Title:** Fix broken reminder creation UI
**Type:** Bug Fix
**Priority:** High (2)
**Labels:** Bug, UI
**Project:** Web App
**Milestone:** v0.14
### Description
The create reminder UI is broken — [expanded description based on user input].
### Acceptance Criteria
- [ ] Reminder creation works reliably
- [ ] UI matches Figma design
### Example Scenarios
- S-1: Given ..., when ..., then ...
### Spec Readiness
- Spec size: inline | full | none
- Full spec path: docs/specs/<slug>/spec.yml (if needed)
Use AskUserQuestion:
For GitHub-default tasks, call github_issue_write with a concise title, structured body, labels, and assignees only when the user requested them.
If the task needs a full spec, include a Spec Readiness section in the issue
body and tell the user to run specify before implementation. Do not implement
full-spec work directly from a bare issue.
For Linear-only tasks, use python3 scripts/linear.py create --team OPE --title "..." --description "..." and add state/priority/labels when needed. Do not use Linear MCP tools.
If the task type is "Idea", automatically add the Idea label and set priority to None (0).
Show the created task with its identifier and URL:
Created: #123 — "Title"
URL: https://github.com/glowingkitty/OpenMates/issues/123
For Linear-only tasks, show the OPE-XXX identifier returned by scripts/linear.py.
"Fix: Fix Show More chats: pagination broken" → "Fix: Show More chats pagination broken""Feat: Feat: test auto-create" → "Feat: test auto-create linear issue""fix it" → Ask user to clarifyIdea label if no clear actionBug:
## Problem
[What's broken]
## Expected Behavior
[What should happen]
## Steps to Reproduce
1. ...
## Related
- Files: ...
- Commits: ...
## Spec Readiness
- Spec size: none | inline | full
- Examples: S-1, S-2
- Verification: existing or proposed test files
Feature:
## Goal
[What this feature does]
## Design
[UI/UX considerations, Figma links if mentioned]
## Acceptance Criteria
- [ ] ...
## Example Scenarios
- S-1: Given ..., when ..., then ...
## Spec Readiness
- Spec size: none | inline | full
- Full spec required before implementation: yes/no
Idea:
## Concept
[The idea]
## Why
[Why this could be valuable]
## Open Questions
- ...
Research:
## Question
[What we need to learn]
## Context
[Why this matters now]
## Deliverables
- [ ] Summary document / findings
- [ ] Recommendation
Idea label automaticallyCreate a pull request from dev to main with proper formatting and draft release
Create a pull request from dev to main with proper formatting and draft release
Create a draft GitHub release with proper versioning and release notes
Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories
Start an iOS/macOS Apple app development or web-parity audit session — loads design rules, maps web sources to native code, supports Linux static audits, and verifies with Xcode when available
Convert repeated Playwright wait/stabilize/lookup/assertion fixes into shared deterministic helpers. Use when the same spec or flow fails repeatedly, commits say wait/stabilize/lookup/assertion, or an E2E fix looks like a one-off timing patch.