AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Rig Issue

skill-agent-rig-rig-rig-issue · by agent-rig

Create, view, move, or manage tickets in the project's issue tracker (Linear, GitHub Issues, or none). Triggers on: 'ticket', 'create ticket', 'move ticket', 'ticket board', 'show tickets', 'list tickets'.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-agent-rig-rig-rig-issue

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-agent-rig-rig-rig-issue)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
23d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rig Issue? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Ticket Manager

Manage tickets in whatever issue tracker the project is bound to. The tracker is config-driven — read .rig/config.json first and dispatch on tracker.provider. Never hardcode a team or project name.

Configuration

Reads .rig/config.json (missing keys → defaults):

| Key | Default | Used for | |---|---|---| | tracker.provider | none | linear \| github \| none. Selects the backend. | | tracker.team | — | Linear team name/key, or GitHub org, scoping list/create. | | tracker.project | — | Linear project name for list/create. | | tracker.ticketPrefix | — | Identifier prefix (e.g. ABC-) to recognize IDs. | | tracker.labelMapFile | .claude/label-mapping.md | Label source-of-truth for create. | | tracker.githubIntegration | false | If true, do NOT manually move states (see below). |

If tracker.provider is none: this skill can't run. Explain that ticket management needs a tracker, and point the user at .rig/config.json → set tracker.provider to linear or github (with team/project). Stop there.

Arguments

The user invoked this with: $ARGUMENTS

Actions

Parse the user's request as one of the actions below. Each action lists the Linear and GitHub form — use the one matching tracker.provider.

board or list (default if no args)

  • Linear: mcp__claude_ai_Linear__list_issues with project =

tracker.project, team = tracker.team, limit: 100.

  • GitHub: gh issue list --limit 100 --json number,title,state,labels

(add --repo from project.repo if not in-repo).

  • If tracker.board is configured, prefer the tracker adapter so you get

the real board columns (Status), which gh issue list can't see: run select --limit 100 (and --status / --dispatchable to filter), where ` = .rig/rig-tracker if executable else /scripts/rig-tracker.sh. It returns {number,title,url,status,labels,…} JSON. See [docs/tracker-adapter.md`](../../docs/tracker-adapter.md).

Display results grouped by status (Backlog, Todo, In Progress, In Review, Done — or GitHub's open/closed with labels). If the result is truncated (a full cursor page came back), say so and offer to page rather than silently showing a partial board.

show

  • Linear: mcp__claude_ai_Linear__get_issue with the identifier

(e.g. 18).

  • GitHub: gh issue view --json ....

create or new

  • Linear: mcp__claude_ai_Linear__save_issue with

team = tracker.team, project = tracker.project, title = the provided title, state: "Backlog", priority: 3 (Normal).

  • GitHub: gh issue create --title "" (with --repo if

needed).

Labels: if tracker.labelMapFile exists, read it and apply the mapping — typically one type label (feature/bug/chore, from the work's intended conventional-commit type) plus any area labels the work will touch. This is the same mapping a deterministic PR labeler would apply to the eventual PR, so the ticket and PR agree. If the file is absent, skip label logic gracefully — create the ticket without labels and note that no label map was found.

Then ask the user if they want to add a description. If yes, update the issue (Linear: save_issue with id + description; GitHub: gh issue edit --body ...).

move

Guard — tracker.githubIntegration: if true, a GitHub integration auto-transitions tracker state from branch/PR events. In that case do NOT move states manually — explain that state is driven by GitHub activity (open a branch/PR to advance it) and skip the transition. This preserves the origin's "don't move states by hand" rule behind the flag.

Otherwise, map the requested status:

  • backlog → "Backlog"
  • todo/ready → "Todo"
  • in-progress → "In Progress"
  • review → "In Review"
  • done → "Done"
  • canceled → "Canceled"
  • Linear: mcp__claude_ai_Linear__save_issue with id + state.
  • GitHub: GitHub Issues have only open/closed —

gh issue close/gh issue reopen, and reflect finer status via labels/project fields if the repo uses them.

  • If tracker.board is configured, move the board column via the adapter

(gh issue edit can't touch a ProjectV2 Status field): run set-status "" (resolver as in board above). Still close/reopen the underlying issue for the open/closed transition.

edit

Fetch the issue, show it to the user, let them describe changes, then update (Linear: save_issue; GitHub: gh issue edit).

deps

Fetch the issue and show its blocking/blocked-by relations. (Linear exposes these natively; on GitHub, surface any "blocked by #N" text or task-list references.)

Priority Mapping

When setting priority (Linear numeric priority):

  • critical/urgent → 1
  • high → 2
  • medium/normal → 3
  • low → 4

On GitHub, express priority via labels if the repo defines them; skip otherwise.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.