Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

ticket-craft门票工艺

Agent Skill

用于处理 Jira 项目、任务、缺陷、Sprint、负责人和状态流转。它适合让 Agent 辅助查询工单、汇总迭代进展、创建任务或整理需求和缺陷信息。使用时要确认项目权限、字段配置和工作流规则,不同团队的 Issue 类型、状态和必填字段可能不同;涉及批量改状态、改负责人或创建工单时,应先预览变更内容再执行。

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ticket-craft(门票工艺)
来源仓库:https://github.com/loomcrafthq/skills
仓库路径:skills/ticket-craft
安装命令:
npx skills add https://github.com/loomcrafthq/skills --skill ticket-craft
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/loomcrafthq/skills --skill ticket-craft

简介

用于处理 Jira 任务和缺陷管理,适合汇总迭代进展和创建工单。

  • 支持负责人分配和状态流转,但不同团队字段配置可能不同。
  • 通过 GitHub 安装,批量修改前应预览变更内容再执行。
  • 需确认项目权限和工作流规则,避免误操作影响进度。
  • ticket-craft 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Ticket Craft

Skill for creating, enriching, organizing, and tracking production-quality tickets. Optimized for execution by a developer or AI agent with zero ambiguity. Platform-agnostic.


Step 0: Bootstrap — context and PM tool

Execute before any action.

0a. Detect PM tool via MCP

MCP detectedPM tool
Linear MCPLinear
Jira MCPJira
GitHub MCPGitHub Issues
Notion MCPNotion
Asana MCPAsana
NoneAsk the user

If multiple PM MCPs are connected: ask which one to use. If none: offer dry-run mode (tickets as Markdown, no push).

0b. Load project context

Read in this order, stop at first success:

  1. CLAUDE.md or .claude/CLAUDE.md
  2. README.md or README.rst
  3. package.json, pyproject.toml, Cargo.toml, go.mod
  4. If nothing accessible: mini-questionnaire (project name, stack, PM tool if not detected)

Extract: project name, tech stack, architecture conventions, teams. Only ask questions whose answers cannot be found in files.


Mode detection

SignalMode
Ticket ID mentioned, "complete issue X", "enrich this ticket"ENRICH
Idea, concept, feature, or project without an IDDEFINE
"what's next", "grab the next ticket", "next task"NEXT
"ticket done", "I pushed", "it's done", ID + completion signalDONE
"I'm starting", "I'm taking ticket X", ID + start signalSTART

MODE ENRICH — Complete an existing ticket

  1. Fetch the ticket via MCP
  2. Identify missing or insufficient fields
  3. Fill in using the standard template (see Template section)
  4. Update via MCP

MODE START — Start a ticket

Triggers: "I'm starting ticket X", "I'm taking X", or after MODE NEXT if the user confirms they want to start the suggested ticket.

  1. Fetch the ticket via MCP to confirm its title
  2. Set status to In Progress via MCP
  3. Confirm: "Ticket X — [title] moved to In Progress."

Note: if Claude Code is available, START can be invoked automatically after a ticket is received via NEXT, without waiting for an explicit signal.


MODE DONE — Close a ticket

Manual triggers: "ticket done", "I pushed", "it's done", "close ticket X". Automatic trigger from Claude Code: after a successful git push, call this mode.

  1. Identify the relevant ticket (explicit ID, or the unique active In Progress ticket)
  2. Set status to Done via MCP
  3. If other tickets were blocked by this one, report them: "The following tickets are now unblocked: [list]"
  4. Automatically suggest the next ticket via MODE NEXT

MODE NEXT — Next ticket

Global aggregation: active milestone + Todo + Backlog, in that order of preference.

Selection algorithm

  1. Fetch via MCP all non-completed tickets:

- In Progress status (absolute priority — check if a ticket is already in progress) - Todo status - Backlog status - Include the active milestone if one exists

  1. Build the dependency graph:

- Exclude all tickets where at least one blockedBy is not in Done status - Keep only "unblocked" tickets (no active dependency)

  1. Sort unblocked tickets:

- Descending priority (Urgent > High > Normal > Low) - At equal priority: In Progress > Todo > Backlog - Still equal: active milestone before out-of-milestone

  1. Return the first ticket in the list:

- Title, ID, current status, size, priority - 2-3 line summary of the ticket - List of tickets it will unblock once completed

  1. Offer to start it: "Do you want me to move this ticket to In Progress?"

MODE DEFINE — Define a project or feature from an idea

Step 1: Chat interview

Never generate tickets before having sufficient answers.

Isolated feature:

  • End-user goal?
  • Known technical constraints? (existing auth, DB schema, third-party APIs?)
  • Edge cases or specific business rules?
  • Definition of done?

Full project:

  • Problem being solved?
  • User personas?
  • Must-have vs nice-to-have?
  • Constraints: deadline, imposed stack, third-party integrations?
  • References or inspirations?

Keep going until there's enough context. Signal: "I have enough to generate the backlog."

Step 2: Verify or create the project in the PM tool

Via MCP: search for existing project. If absent, create it with name + description.

Step 3: Generate issues in logical order

Creation order (IDs reflect the sequence):

  1. Infrastructure / setup — Urgent priority
  2. Data layer / models — High priority
  3. Backend / API — High to Normal priority
  4. Frontend / UI — Normal priority
  5. Third-party integrations — Normal to Low priority
  6. Polish / nice-to-have — Low priority

Principles:

  • 1 ticket = 1 clear responsibility, implementable in 1 session without context switching
  • Fine granularity to minimize dependencies
  • Assign blockedBy after all tickets are created (IDs known)

Step 4: Mandatory summary table

IDTitleSizePriorityStatusBlocked by
#1Setup databaseMUrgentTodo
#2User model + migrationsSHighTodo#1
#3POST /register endpointMHighTodo#1, #2

Ticket template

Each ticket follows this format in the description field. Goal: implementable without asking any questions.

## Context
Why this ticket exists. What problem it solves. Link to the broader project.

## Scope
**In scope:**
- ...

**Out of scope:**
- ...

## Technical Specs
Stack used, architecture constraints, relevant endpoints, DB schema if applicable,
specific libraries, patterns to follow.
Be exhaustive: no unknowns should remain.

## Acceptance Criteria
- [ ] Criterion 1 (objectively verifiable)
- [ ] Criterion 2

## Definition of Done
- [ ] Code implemented and working
- [ ] 0 lint / type checking errors
- [ ] Unit tests for business logic
- [ ] 0 regressions on existing features
- [ ] [Ticket-specific criteria]

## QA Checklist
Reproducible steps for a human or QA agent.
- [ ] ...

## Edge Cases & Gotchas
Identified edge cases, boundary behaviors, errors to handle explicitly.
- ...

T-Shirt Sizing

Map to the PM tool's native system if different from story points.

SizeValueCriteria
XS1Less than 1h, trivial change
S21-3h, well-defined scope
M33-8h, minor unknowns
L51-2 days, real complexity
XL8More than 2 days — split if possible

XL ticket: split unless truly indivisible.


Priority

Adapt to the PM tool's native values (Linear: 1-4, Jira: Highest/High/Medium/Low/Lowest).

LevelContext
Urgent / HighestBlocking other tickets, infra foundation
HighCritical for MVP, on the critical path
Normal / MediumMain non-blocking feature
LowNice-to-have, polish, future iterations

Status mapping

Adapt to the detected PM tool's native statuses.

Generic statusLinearJiraGitHub Issues
BacklogBacklogBacklogopen + label backlog
TodoTodoTo Doopen
In ProgressIn ProgressIn Progressopen + label in-progress
DoneDoneDoneclosed

Title format

[Verb] [Subject] or [Verb] [Subject] — [Context]

Examples:

  • "Implement JWT authentication"
  • "Create User model + migrations"
  • "Add GET /matches endpoint"
  • "Configure CI/CD pipeline"

Quality rules

  • Never create a ticket without Acceptance Criteria
  • Never create a ticket without Technical Specs filled in
  • Dependencies declared in the PM tool's native field, not just in the text
  • Labels / tags: use existing ones, create if necessary
  • Summary table always displayed after batch generation
  • After each DONE, report unblocked tickets and suggest the next one

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.3%
按下载量换算24

Claude

26.65%
按下载量换算17

Cursor

19.8%
按下载量换算12

Gemini CLI

8.84%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills