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

Get Issues

skill-meteora-pro-devboy-tools-get-issues · by meteora-pro

Fetch and summarise issues from the configured tracker — filter, paginate, then drill into a single issue when needed.

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

Install

$ agentstack add skill-meteora-pro-devboy-tools-get-issues

✓ 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 Used
  • 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-meteora-pro-devboy-tools-get-issues)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Get Issues? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

get-issues

Enumerate issues from whichever tracker is active (GitLab, GitHub, ClickUp, or Jira) and hand back either a compact summary of the result set or the full body of a single ticket the user cares about. The skill is always a read-only operation — it never mutates state.

When to use

  • The user asks "what issues are open?", "show me the backlog", or names a label / assignee they want to filter by.
  • Another skill (e.g. solve-issue) needs to look up a specific ticket before acting on it.
  • The agent is gathering context for a daily report or status update.

Procedure

1. Scope the query

Most useful filters live directly on get_issues:

# Default: 20 most recently updated open issues
devboy tools call get_issues '{"state": "open", "limit": 20}'

# Narrow by label / assignee / free-text search
devboy tools call get_issues '{"state": "open", "labels": ["bug"], "assignee": "alice"}'
devboy tools call get_issues '{"search": "websocket reconnect", "limit": 10}'

Supported keys: state (open / closed / all), search, labels, assignee, limit (1–100), offset, sort_by (created_at / updated_at), sort_order (asc / desc), projectKey, nativeQuery. On Jira, nativeQuery accepts raw JQL and takes precedence over the other filters.

2. Paginate when the result set is large

get_issues returns at most 100 items per call. Walk the pages with offset:

devboy tools call get_issues '{"state": "open", "limit": 50, "offset": 0}'
devboy tools call get_issues '{"state": "open", "limit": 50, "offset": 50}'

Stop once a page returns fewer items than limit.

3. Summarise the set

Before dumping the raw list to the user, produce a compact roll-up:

  • Total count, grouped by state (open / closed).
  • Top labels and assignees by frequency.
  • Any priority or status values that cluster (e.g. "4 urgent, 12 normal").

If the user asked a qualitative question ("is anything blocking the release?"), prioritise issues with blocked, urgent, or in_progress status over a flat listing.

4. Drill into a single issue

Once the user picks one, fetch the full record — including comments and relations in a single call:

devboy tools call get_issue '{"key": "DEV-123"}'
# or, to skip related chatter
devboy tools call get_issue '{"key": "DEV-123", "includeComments": false, "includeRelations": false}'

For heavier comment threads, page them separately:

devboy tools call get_issue_comments '{"key": "DEV-123"}'
devboy tools call get_issue_relations '{"key": "DEV-123"}'

5. (Optional) Enumerate tracker statuses

If the user asks "what states can an issue be in?", surface the tracker's workflow:

devboy tools call get_available_statuses

This is handy before calling update-issue on a provider whose state vocabulary is not "open / closed".

Success criteria

  • The filtered result set matches what the user asked for (state, label, assignee).
  • The summary names the total count and the top groupings, not just the first page.
  • For any issue the user inspects, the detail call returns real fields — not ProviderUnsupported or an empty payload.

Non-goals

  • This skill does not create, update, or close issues — use create-issue / update-issue.
  • It does not start a branch or MR — that is solve-issue.

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.