itx:bug-new — for Claude Code itx:bug-new, clawrium, community, for Claude Code, ide skills, ai-agents, fleet-management, python, AskUserQuestion, <outcome>

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need bug report creation. ローカライズされた概要: itx:bug-new helps AI agents handle repository-specific developer workflows with documented implementation details. It covers ai-agents, cli, fleet-management workflows.

機能

Bug Report Creation
Create a GitHub issue for a bug based on the current conversation context.
Analyze Context : Review the current conversation for:
Error messages and stack traces
Unexpected behavior descriptions

# Core Topics

ric03uec ric03uec
[14]
[0]
Updated: 4/30/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
61
Canonical Locale
en
Detected Body Locale
en

適した場面: Ideal for AI agents that need bug report creation. ローカライズされた概要: itx:bug-new helps AI agents handle repository-specific developer workflows with documented implementation details. It covers ai-agents, cli, fleet-management workflows.

このスキルを使用する理由

推奨ポイント: itx:bug-new helps agents bug report creation. itx:bug-new helps AI agents handle repository-specific developer workflows with documented implementation details.

おすすめ

適した場面: Ideal for AI agents that need bug report creation.

実現可能なユースケース for itx:bug-new

ユースケース: Applying Bug Report Creation
ユースケース: Applying Create a GitHub issue for a bug based on the current conversation context
ユースケース: Applying Analyze Context : Review the current conversation for:

! セキュリティと制限

  • 制約事項: --label "needs-triage" \
  • 制約事項: Always add needs-triage label for new bugs
  • 制約事項: Requires repository-specific context from the skill documentation

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is itx:bug-new?

適した場面: Ideal for AI agents that need bug report creation. ローカライズされた概要: itx:bug-new helps AI agents handle repository-specific developer workflows with documented implementation details. It covers ai-agents, cli, fleet-management workflows.

How do I install itx:bug-new?

Run the command: npx killer-skills add ric03uec/clawrium. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for itx:bug-new?

Key use cases include: ユースケース: Applying Bug Report Creation, ユースケース: Applying Create a GitHub issue for a bug based on the current conversation context, ユースケース: Applying Analyze Context : Review the current conversation for:.

Which IDEs are compatible with itx:bug-new?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for itx:bug-new?

制約事項: --label "needs-triage" \. 制約事項: Always add needs-triage label for new bugs. 制約事項: Requires repository-specific context from the skill documentation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ric03uec/clawrium. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use itx:bug-new immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

itx:bug-new

Install itx:bug-new, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

name: itx:bug-new

Bug Report Creation

Create a GitHub issue for a bug based on the current conversation context.

Instructions

  1. Analyze Context: Review the current conversation for:

    • Error messages and stack traces
    • Unexpected behavior descriptions
    • Steps that led to the issue
    • Environment details (version, OS, etc.)
  2. Ask for Customer Outcome: Use AskUserQuestion to ask:

    "What should the user be able to do when this bug is fixed?"

    Example outcomes:

    • "User can install dependencies without version mismatch errors"
    • "User can add resources with special characters in names"
    • "User can run status command without timeout"
  3. Form Issue Title: Use the customer outcome as the issue title.

    • Format: <outcome> (what the user can do after fix)
    • Example: "User can install dependencies without version mismatch errors"
    • The user can change this later if needed
  4. Gather Details:

    • If the user provided a description argument, use it for context
    • Identify steps to reproduce if available
    • Note environment details
  5. Load Project Name (for environment section):

    bash
    1ITX_CONFIG="$(git rev-parse --show-toplevel)/.claude/itx-config.json" 2if [ -f "$ITX_CONFIG" ]; then 3 PROJECT_NAME=$(jq -r '.project.name // ""' "$ITX_CONFIG") 4 VERSION_LABEL=$(jq -r '.project.version_label // "Version"' "$ITX_CONFIG") 5fi 6 7# Fallback: use repository name if no config 8if [ -z "$PROJECT_NAME" ]; then 9 REMOTE_URL=$(git config --get remote.origin.url) 10 PROJECT_NAME=$(echo "$REMOTE_URL" | sed -E 's/.*[:/]([^/]+\/[^/]+)(\.git)?$/\1/' | cut -d'/' -f2) 11fi
  6. Create Issue: Use gh issue create with:

    bash
    1gh issue create \ 2 --title "<customer outcome from step 3>" \ 3 --label "bug" \ 4 --label "needs-triage" \ 5 --body "<structured bug report>"
  7. Bug Report Body Format:

    markdown
    1## Customer Outcome 2<The outcome statement - what user can do when fixed> 3 4## Description 5<What is currently happening / the bug> 6 7## Steps to Reproduce 81. <step> 92. <step> 10 11## Expected Behavior 12<What should happen> 13 14## Actual Behavior 15<What actually happens> 16 17## Environment 18- <project name> version: <version> 19- Platform: <os/platform> 20- Other relevant details: <details> 21 22--- 23 24<details> 25<summary>Prompt Log</summary> 26 27**Stage**: bug-creation 28**Skill**: /itx:bug-new 29**Timestamp**: <ISO timestamp> 30**Model**: <model> 31 32```prompt 33<original user prompt/context that led to this bug>
    </details> ```
  8. Return: The issue URL and number

Notes

  • Always ask for customer outcome before creating the issue
  • The outcome becomes the title - focus on what the user gains
  • Always add needs-triage label for new bugs
  • Include as much context as available from the conversation
  • If steps to reproduce are unclear, note that in the issue
  • Project name dynamically detected or loaded from config

Prompt Logging

REQUIRED: After creating the issue, append prompt log to .itx/<N>/00_PLAN.md.

See AGENTS.md for format specification.

bash
1mkdir -p .itx/<issue-number> 2# Append prompt log to .itx/<issue-number>/00_PLAN.md

関連スキル

Looking for an alternative to itx:bug-new or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

ローカライズされた概要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

nextjs-turbopack

[ 注目 ]
Logo of affaan-m
affaan-m

ローカライズされた概要: Next.js 16+ and Turbopack — incremental bundling, FS caching, dev speed, and when to use Turbopack vs webpack. It covers ai-agents, anthropic, claude workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

169.5k
0
生産性

widget-generator

Logo of f
f

ローカライズされた概要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

ローカライズされた概要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
ブラウザ