create-issue
Create a well-structured issue in the configured tracker using Feature, Defect, or Task templates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a well-structured issue in the configured tracker using Feature, Defect, or Task templates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Walk a project from "no values provisioned" to "doctor --secrets is green" — eight idempotent steps with resume support via setup-state.toml. Wraps the secret framework (ADR-023 §3.8) for AI agents and headless onboarding.
Bootstrap devboy from scratch — install the CLI if missing, register the MCP server, run `devboy onboard` for the active agent, optionally bootstrap the secret framework, verify with `doctor`. First-run skill for both manual installs and the Claude Code / Codex plugin.
First-run wizard for the devboy secret framework — walk a fresh project from "no secret manifest, no router, no daemon" to "every required secret provisioned and verified". Idempotent eight-step flow per ADR-023 §3.8 with state at ~/.devboy/secrets/setup-state.toml so the user can resume or skip.
Analyse the user's Claude Code (or other agent) logs and auto-configure the layered-pipeline compression profiles for their tools, models, and workflow.
Diagnose and fix a broken devboy-tools setup — corrupt config, missing tokens, keychain trouble, wrong paths, plugin install failures.
Enumerate and introspect the active tool bundle — names, categories, schemas, how to invoke each tool from the CLI.
| name | create-issue |
| description | Create a well-structured issue in the configured tracker using Feature, Defect, or Task templates. |
| category | issue-tracking |
| version | 1 |
| compatibility | devboy-tools >= 0.18 |
| activation | ["create an issue","file a bug","open a ticket","make a new ticket","add a task"] |
| tools | ["create_issue","add_issue_comment","get_available_statuses","get_users","get_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.
review-mr flagged a deeper issue).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
<verb + concrete outcome>, 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
<component>: <what breaks>, 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
<scope>: <short outcome>, 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
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.
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).
Read the new issue back so the user sees exactly what was filed:
devboy tools call get_issue '{"key": "DEV-789"}'
update-issue.link-issues.