Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

specs-tickets规格票

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

2

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b12consulting/skills --skill specs-tickets

简介

用于处理 Jira 项目中的任务、缺陷、Sprint 和状态流转。

  • 适合辅助查询工单、汇总迭代进展或创建新任务。
  • 通过 npx skills add 命令从指定仓库安装后调用。
  • 使用时需确认项目权限、字段配置及避免未经预览的批量操作。
  • specs-tickets 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Specs Tickets

Create and execute tickets through the spec-driven lifecycle, or resume work on existing ones.

Skill Dependencies

This skill is part of a set of three skills designed to work together:

  • spec-driven — Methodology reference (structure, formats, rules)
  • specs-setup — Initialize specs/ for a new project
  • specs-tickets (this skill) — Create and execute tickets through their lifecycle
  • specs-review — Audit specs health, consistency, and drift

If any of these skills are missing from the project, instruct the user to install them before proceeding:

npx skills add b12consulting/skills --skill <missing_skill>

Always load the spec-driven skill first for the full methodology reference. Load templates when creating documents.

Prerequisites

  1. Verify specs/ folder exists with Vision.md, PRD.md, Goals.md, and Architecture/README.md. If missing, prompt the user to run the specs-setup skill first.
  2. Read specs/README.md, then specs/Vision.md, specs/PRD.md, specs/Goals.md, and specs/Architecture/README.md to understand the project context.
  3. Check for coding standards (.instructions.md, CLAUDE.md, etc.). If missing, prompt the user to create them before implementation begins.

Entry Point: New Ticket or Existing?

Determine whether the user wants to create a new ticket or continue an existing one.

  • If the user describes new work → go to New Ticket
  • If the user references an existing ticket → go to Resume Ticket
  • If unclear, ask the user

New Ticket

Phase 0: Create Ticket

  1. Ask the user to describe the work to be done.
  2. Ask for the Jira issue key (optional — store in frontmatter if provided).
  3. Determine the next ticket number: scan specs/tickets/ for the highest existing number and increment by one. If no tickets exist, start at 001.
  4. Derive a short slug from the description (lowercase, hyphen-separated).
  5. Create the ticket folder and README.md:
specs/tickets/<NNN>-<slug>/README.md

Use this frontmatter:

---
id: "<NNN>"
title: "<Descriptive title>"
status: research
jira: "<JIRA-KEY>" # Omit if not provided
owner: ""
created: YYYY-MM-DD
updated: YYYY-MM-DD
---

Follow with a one-paragraph summary of the ticket.

Then proceed to Phase 1: Research.


Resume Ticket

1. Identify the Ticket

Ask the user which ticket to continue, or identify it from conversation context:

  • Ticket number (e.g., "ticket 003")
  • Jira key (e.g., "YAI-042") — scan ticket README frontmatter to find the match
  • Description (e.g., "the auth ticket") — scan ticket titles to find the best match

If ambiguous, list active tickets from specs/README.md and ask the user to pick one.

2. Read Ticket State

Read the ticket's README.md and note the status from frontmatter. Then read all existing documents in the ticket folder to understand the full context.

Summarize the current state for the user: what phase the ticket is in, what's been completed, and what comes next.

3. Check for Drift

Compare the ticket's documents against the current state of:

  • specs/Vision.md and specs/PRD.md — Have requirements changed since this ticket was written?
  • specs/Architecture/README.md — Has the architecture evolved?
  • The codebase — Has relevant code changed since the ticket was last worked on?

If drift is detected:

  • Report the specific inconsistencies to the user
  • Discuss whether the ticket needs updating before continuing
  • If specs changed, the ticket may need its Spec.md or Plan.md updated
  • If code changed, completed tasks may need re-verification

4. Resolve Blockers

If the ticket status is open-questions:

  • Present the unresolved questions from Decisions.md to the user
  • Ask for decisions on each
  • Record decisions in the Resolved section of Decisions.md
  • Update ticket status once all questions are answered

If the ticket has Dependencies.md with unresolved blockers:

  • Report the blocking tickets and their current status
  • Discuss whether to wait, work around, or re-scope

5. Resume the Lifecycle

Based on the current status, pick up at the appropriate phase:

Current StatusNext Action
researchReview Research.md findings. Proceed to Phase 2: Specify.
specifyingCheck if Spec.md has been validated. If yes, proceed to Phase 3: Plan. If no, present for validation.
open-questionsResolve questions (step 4), then return to previous phase.
plannedCheck if Tasks.md exists. If yes, present for validation. If no, proceed to Phase 4: Define Tasks.
in-progressCheck Tasks.md for uncompleted tasks. Continue from Phase 5: Implement.
doneInform the user the ticket is complete. Ask if they want to reopen or create a follow-up.
archivedInform the user the ticket was archived. Ask if they want to create a new ticket instead.

6. Update Journal

Add a Journal.md entry (create the file if it doesn't exist) noting when work resumed, any drift discovered, and decisions made during this session.


Ticket Lifecycle

The lifecycle has six phases. Each produces specific documents. User validation is required at key checkpoints before proceeding.

┌──────────┐    ┌─────────┐    ┌──────┐    ┌─────────────┐    ┌───────────┐    ┌──────┐
│ Research  │───▶│ Specify │───▶│ Plan │───▶│ Define Tasks│───▶│ Implement │───▶│ Done │
└──────────┘    └─────────┘    └──────┘    └─────────────┘    └───────────┘    └──────┘
                     ▲              ▲             ▲
                  User           User          User
                validates      confirms      validates

Any participant (human or agent) can execute any phase. The lifecycle defines the order, not who does what.


Phase 1: Research

Goal: Understand the problem space and gather information needed to write a good spec.

  1. Investigate the codebase, existing documentation, and any external resources relevant to the ticket.
  2. Identify technical constraints, existing patterns, and potential approaches.
  3. Document findings in Research.md:

- Objective: what we're trying to learn - Findings: organized by topic - Options considered with pros/cons - Recommendation - References

  1. Update ticket status to research.

Research.md is optional for straightforward tickets. If the path is clear from the user's description, skip directly to Phase 2. A one-line bug fix doesn't need research, but a new feature with multiple possible approaches does.


Phase 2: Specify

Goal: Define what "done" looks like.

  1. Based on research findings (or the user's description), write Spec.md:

- User stories: Who wants what and why. Assign a priority (P1, P2, P3…) to each story, where P1 is the most critical. Each story should be independently testable — include a one-line description of how it can be verified on its own. - Acceptance criteria: Concrete, testable conditions that prove the work is done - Scope boundaries: What's in scope and explicitly out of scope

  1. Clarification scan. Before finalising the spec, scan it for ambiguity across these categories: For each category that is partial or missing, decide whether clarification materially affects implementation. If it does, ask the user — limit yourself to the most impactful questions and ask them directly in conversation (no special format required). If a gap is better deferred to planning, note it internally and move on.

- Functional scope & behaviour (goals, out-of-scope declarations, user roles) - Domain & data model (entities, relationships, identity rules, state transitions) - Interaction & UX flow (critical journeys, error/empty/loading states) - Non-functional quality attributes (performance, scalability, reliability, observability, security) - Integration & external dependencies (APIs, data formats, failure modes) - Edge cases & failure handling (negative scenarios, rate limiting, conflicts) - Constraints & trade-offs (technical limits, rejected alternatives) - Terminology consistency (ambiguous or overloaded terms)

  1. If the ticket has cross-ticket dependencies, create Dependencies.md:

- What this ticket is blocked by - What this ticket blocks - External dependencies

  1. If there are unresolved questions that block specification, create Decisions.md:

- List each question with context in the Open section - Provide options with trade-offs for each - Include a suggested answer for each - Ask the user to decide on ALL open questions before proceeding - Move resolved questions to the Resolved section with the decision, date, and rationale

  1. Self-validate the spec. Before presenting to the user, check: If any check fails, fix the spec before presenting it.

- No implementation details (frameworks, libraries, APIs) have leaked into the spec - Every requirement is testable and unambiguous - Acceptance criteria are measurable - Scope is clearly bounded (both in-scope and out-of-scope stated) - No more than 3 items remain marked [NEEDS CLARIFICATION] — resolve or ask the user about the rest - All user stories have a priority (P1/P2/P3) and an independent-test description

  1. Update ticket status to specifying (or open-questions if questions exist).
  2. Present Spec.md to the user for validation.
CHECKPOINT: Do not proceed to Phase 3 until the user has validated the spec.

Phase 3: Plan

Goal: Define the implementation strategy.

  1. Based on the confirmed spec, write Plan.md:

- Approach: High-level implementation strategy - Key design decisions: Important choices and their rationale - Risks & mitigations: What could go wrong and how to handle it

  1. Check alignment with Architecture/README.md. If the plan requires architectural changes:

- Flag this to the user explicitly - Propose an ADR in specs/decisions/ - Update specs/Architecture/README.md only after user approval

  1. Update ticket status to planned.
  2. Present Plan.md to the user for confirmation.
CHECKPOINT: Do not proceed to Phase 4 until the user has confirmed the plan.

Phase 4: Define Tasks

Goal: Break the plan into executable steps.

  1. Based on the confirmed plan, write Tasks.md:

- Use this format for every task: - [] T001 [P] Description with file path - T001, T002, …: Sequential task ID - [P] (optional): Present only when the task can run in parallel with others (touches different files, no dependency on incomplete tasks) - Description: Clear action including the exact file path to create or modify - Group tasks by user-story priority (P1 first, then P2, etc.) so each group forms a self-contained, independently testable increment. - Within each group, order by dependency: models → services → interfaces → integration. - Include verification steps where appropriate (e.g., "run tests", "verify endpoint returns 200").

  1. Update ticket status to planned (if not already).
  2. Present Tasks.md to the user for validation.
CHECKPOINT: Do not proceed to Phase 5 until the user has validated the tasks.

Phase 4b: Pre-Implementation Consistency Check

Goal: Verify that Spec.md, Plan.md, and Tasks.md are consistent before writing code.

Build a coverage map:

  1. List every requirement and acceptance criterion from Spec.md.
  2. List every task from Tasks.md.
  3. Verify that every requirement maps to at least one task and every task traces back to a requirement or design decision in Plan.md.
  4. Flag:

- Uncovered requirements — requirements with no corresponding task. - Orphan tasks — tasks that don't map to any requirement (may indicate scope creep or a missing spec entry). - Terminology drift — the same concept named differently across the three files.

If gaps are found, update Tasks.md (or Spec.md if a requirement was missed) before proceeding. This check is lightweight — skip it for small tickets with ≤ 5 tasks.


Phase 5: Implement

Goal: Execute the tasks.

  1. Work through Tasks.md sequentially:

- Check off each task as it is completed - If a task reveals the spec or plan needs updating, pause implementation: - Update the relevant document - Log the change in Journal.md - Inform the user of the change - Get confirmation before continuing if the change is significant

  1. Drift detection during implementation: If implementation reveals a conflict with Vision, PRD, Goals, or Architecture:

- Alert the user immediately - Either create an ADR to update specs, or create a follow-up ticket to fix the code - Do not silently deviate from specs

  1. Update ticket status to in-progress.

Phase 6: Done

  1. Verify all acceptance criteria from Spec.md are met.
  2. Update ticket README.md:

- Set status to done - Update the updated date

  1. Update specs/README.md:

- Move ticket from "Active Tickets" to "Recently Completed"

  1. Add an entry to specs/Changelog.md describing what was shipped.
  2. If any ground truth documents (Vision, PRD, Goals, Architecture) were updated during implementation, verify consistency across all references.

Handling Changes Mid-Flight

Requirements often change during implementation. When they do:

  1. Update Spec.md with the new or changed requirements.
  2. Log the change and rationale in Journal.md.
  3. If the change affects Vision, PRD, Goals, or Architecture, create an ADR.
  4. If the change invalidates completed tasks, update Tasks.md accordingly.
  5. Re-validate with the user if the change is significant.

The spec is always the source of truth for the ticket, not the code. Keep them in sync.

Scaling Guidance

  • Small tickets (bug fix, config change): Phase 0 → Phase 2 → Phase 4 → Phase 5 → Phase 6. Skip Research and Plan.
  • Medium tickets (feature, refactor): All phases. Research may be brief.
  • Large tickets (new system, major redesign): All phases. Consider breaking into multiple tickets during Phase 4 if the task list exceeds ~15 items.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.29%
按下载量换算23

Claude

31.29%
按下载量换算21

Cursor

18.26%
按下载量换算12

Gemini CLI

8.54%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills