Build or update the BlueBubbles external channel plugin for Moltbot (extension package, REST...
npx skills add jwmossmoz/agent-skills --skill "bugzilla"
Install specific skill from multi-skill repository
# Description
Interact with Mozilla Bugzilla (bugzilla.mozilla.org) via REST API. Use when the user asks to search bugs, view bug details, create bugs, update bugs, add comments, or attach files. Triggers on "bugzilla", "bmo", "file a bug", "bug report", "mozilla bug".
# SKILL.md
name: bugzilla
description: Interact with Mozilla Bugzilla (bugzilla.mozilla.org) via REST API. Use when the user asks to search bugs, view bug details, create bugs, update bugs, add comments, or attach files. Triggers on "bugzilla", "bmo", "file a bug", "bug report", "mozilla bug".
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.
Usage
cd scripts && uv run bz.py <command> [options]
Run uv run bz.py --help or uv run bz.py <command> --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.py search --quicksearch "crash" --limit 10
uv run bz.py search --product Firefox --status NEW,ASSIGNED --priority P1
# View
uv run bz.py get 1234567 -v --include-comments
# Update
uv run bz.py update 1234567 --status RESOLVED --resolution FIXED
uv run bz.py needinfo 1234567 --request [email protected]
# Create
uv run bz.py create --product Firefox --component General --summary "Title" --version unspecified
References
- examples.md - Workflow examples and user request mappings
- api-reference.md - REST API endpoints and fields
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.