bugzilla

📁 jwmossmoz/agent-skills 📅 1 day ago
1
总安装量
1
周安装量
#47815
全站排名
安装命令
npx skills add https://github.com/jwmossmoz/agent-skills --skill bugzilla

Agent 安装分布

amp 1
opencode 1
kimi-cli 1
codex 1
claude-code 1

Skill 文档

Bugzilla CLI

Requires: export BUGZILLA_API_KEY="your-key" (get from https://bugzilla.mozilla.org/userprefs.cgi?tab=apikey)

Read-only ops work without auth.

Use this local skills checkout path for commands in this file:

SKILLS_ROOT=/Users/jwmoss/github_moz/agent-skills/skills
BZ="$SKILLS_ROOT/bugzilla/scripts/bz.py"

Usage

uv run "$BZ" <command> [options]

Run uv run "$BZ" --help for full options.

Commands

Command Purpose
search Find bugs by product, component, status, assignee, etc.
get View bug details, comments, history
create File a new bug (requires: product, component, summary, version)
update Modify status, assignee, priority, add comments
comment Add comment to a bug
attachment Attach files to a bug
needinfo Request or clear needinfo flags
products List products and components
whoami Verify authentication

Quick Examples

# Search
uv run "$BZ" search --quicksearch "crash" --limit 10
uv run "$BZ" search --product Firefox --status NEW,ASSIGNED --priority P1

# View
uv run "$BZ" get 1234567 -v --include-comments
uv run "$BZ" get 1234567 --include-comments --full-comments
uv run "$BZ" get 1234567 --include-comments --include-history --format json

# Update
uv run "$BZ" update 1234567 --status RESOLVED --resolution FIXED
uv run "$BZ" needinfo 1234567 --request user@mozilla.com

# Create
uv run "$BZ" create --product Firefox --component General --summary "Title" --version unspecified

References