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

Create Issue

skill-meteora-pro-devboy-tools-create-issue · by meteora-pro

Create a well-structured issue in the configured tracker using Feature, Defect, or Task templates.

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

Install

$ agentstack add skill-meteora-pro-devboy-tools-create-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-meteora-pro-devboy-tools-create-issue)

Reliability & compatibility

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

About

create-issue

Turn a free-form user request into a structured ticket the team can actually work on. The skill picks one of three templates, fills it, creates the issue, and (optionally) attaches reproduction details or logs as a follow-up comment.

When to use

  • The user describes a bug, a feature idea, or a piece of work without a ticket yet.
  • Another skill discovered something worth filing (e.g. review-mr flagged a deeper issue).
  • The user asks to "open a ticket for this" in the middle of a longer conversation.

Procedure

1. Pick the template

Classify the request before writing anything. The three templates share the same shape — swap the word and tweak the slots.

Feature — new capability, user-visible change, or design work.

## Title
, e.g. "Add bulk archive to issue list"

## Context
Who asked for this and why. Link the user conversation or meeting note.

## Acceptance criteria
- [ ] Observable behaviour #1
- [ ] Observable behaviour #2
- [ ] Docs / changelog updated

## Notes
Design sketches, open questions, out-of-scope.

Defect — something is demonstrably broken.

## Title
: , e.g. "Dashboard: pipeline badge shows stale status after retry"

## Context
Environment, version, user impact. Link the failing run / screenshot / log if there is one.

## Acceptance criteria
- [ ] Steps to reproduce no longer trigger the bug
- [ ] Regression test covers the fix
- [ ] Release note drafted

## Notes
Suspected root cause, related incidents.

Task — chore, refactor, docs, infra, anything that is not a user-facing feature and not a bug.

## Title
: , e.g. "Infra: rotate CI signing keys"

## Context
Why now, what it unblocks.

## Acceptance criteria
- [ ] The concrete thing is done
- [ ] Follow-up tickets filed for anything we deliberately punted

## Notes

2. Create the issue

Pass the title and the rendered Markdown body to create_issue:

devboy tools call create_issue '{
  "title": "Dashboard: pipeline badge shows stale status after retry",
  "description": "## Context\nSeen by @alice on prod v2.4.1. The badge keeps the first status after a manual retry.\n\n## Acceptance criteria\n- [ ] Badge refreshes within 5s of retry\n- [ ] Regression test covers the fix\n\n## Notes\nSuspected cache miss in `PipelineStatusService`.",
  "labels": ["bug", "dashboard"],
  "assignees": ["alice"]
}'

On Windows, JSON needs escaped quotes:

devboy tools call create_issue "{\"title\": \"...\", \"description\": \"...\"}"

Useful optional fields: parentId (ClickUp subtasks), issueType (Jira: Task / Bug / Story), projectId (Jira project key override), markdown: false when the description is plain text.

3. Attach reproduction details as a comment

Keep the description tight — offload long logs, stack traces, or screenshots to a comment. add_issue_comment takes the key returned by step 2:

devboy tools call add_issue_comment '{
  "key": "DEV-789",
  "body": "Full stack trace from staging:\n\n```\nReferenceError: ...\n```"
}'

On ClickUp, the same tool accepts attachments for small files (each ≤ 10 MB, base64-encoded).

4. Confirm the result

Read the new issue back so the user sees exactly what was filed:

devboy tools call get_issue '{"key": "DEV-789"}'

Success criteria

  • The created issue has a clear title, a populated body following the chosen template, and the right labels / assignees.
  • Any reproduction material lives in a comment rather than bloating the description.
  • The agent reports the new issue key back to the user so they can link it elsewhere.

Non-goals

  • This skill does not triage or reassign existing issues — that is update-issue.
  • It does not link issues together — that is link-issues.

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.