Skill

ticket_intake

Fetch and parse a ticket from Jira, Linear, or GitHub Issues. Use when starting work on a ticket, beginning a new feature, or when given a ticket ID or issue URL. Accepts a ticket ID or full URL as argument, auto-detects the ticketing system, and produces a structured requirements summary.

From full-orchestration
Install
1
Run in your terminal
$
npx claudepluginhub shouenlee/ghcp-dev-plugin --plugin full-orchestration
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Ticket Intake

State file: .claude/swe-state/{ticket-id}.json

Fetch a ticket, parse requirements, present a summary for user confirmation.

Usage

/ticket_intake PROJ-123
/ticket_intake https://myorg.atlassian.net/browse/PROJ-123
/ticket_intake #42

Phase 1: Detect System

Input PatternSystemFetch Method
URL with atlassian.net or jiraJiraMCP: getJiraIssue
URL with linear.appLinearMCP: linear_get_issue
URL with github.com, or bare #NGitHubgh issue view
PROJ-123 patternJira (default)MCP: getJiraIssue
UnrecognizedUnknownPrompt user

Note: Tool names are for the official Atlassian Rovo and Linear MCP servers. Community servers may use different names (e.g., jira_get_issue for sooperset/mcp-atlassian).

Extract ticket ID from the input (Jira key from path, GitHub number, Linear ID).


Phase 2: Fetch Ticket Data

Jira: getJiraIssue with issueIdOrKey. If MCP unavailable:

claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse

Linear: linear_get_issue with issueId. If MCP unavailable:

claude mcp add --transport sse linear-server https://mcp.linear.app/sse

GitHub: gh issue view <N> --json title,body,comments,labels,assignees,milestone

Generic: Ask user for a curl command or API endpoint.


Phase 3: Extract Fields

Parse fetched data into structured fields: title, description, acceptance criteria, comments (with author/timestamp), linked issues, labels, priority, assignee.

For acceptance criteria, search the description for:

  • - [ ] / - [x] checkboxes
  • Numbered lists after "Acceptance Criteria", "AC", "Requirements", or "Definition of Done" headings
  • Bullet lists under "Expected Behavior" or "Success Criteria"

Phase 4: Identify Affected Areas

Extract keywords (file names, function names, endpoints, class names) from the ticket. Use Grep and Glob to search the codebase. Categorize matches as existing (needs modification), new (referenced but doesn't exist), or test (related test file). Deduplicate and rank by relevance.


Phase 5: Present Summary & Write Ticket File

Display the summary (source, title, priority, requirements, acceptance criteria, linked issues, affected areas). Ask the user to review — they can edit, add context, or confirm.

On confirmation, write .claude/swe-state/{ticket-id}/ticket.json:

{
  "ticket_id": "",
  "source": "jira|linear|github|generic",
  "url": "",
  "title": "",
  "description": "",
  "acceptance_criteria": [],
  "comments": [{"author": "", "body": "", "timestamp": ""}],
  "linked_issues": [{"id": "", "relationship": "", "title": ""}],
  "labels": [],
  "priority": "",
  "assignee": "",
  "affected_areas": [{"path": "", "category": "existing|new|test", "reason": ""}]
}

Then update pipeline state: set stages.intake.completed = true.

Similar Skills
cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.5k
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitMar 6, 2026