bug-filing

SkillFiles & storage

File a Bugzilla bug for Firefox/Gecko work, or draft a bug summary and description. Use when the user asks to file a bug, wants a bug summary/description for a change, or needs to report a defect/enhancement/task. Determines the product and component with `mach file-info`, drafts the summary and description, and opens a prefilled enter_bug.cgi form in the browser for the user to submit.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the bug-filing skill

What this skill tells your AI

The instructions your AI receives, as published by mozilla/enterprise-firefox in .agents/skills/bug-filing/SKILL.md and read by ahel’s review.

Overview

File a Mozilla bug by opening a prefilled Bugzilla "enter bug" form in the user's browser. The skill picks the right component automatically, drafts a well-formatted summary and description, and hands the form to the user to submit, so the bug is created under their own account with a chance to review and adjust.

Workflow

  1. Determine the product and component. Run ./mach file-info bugzilla-component <file> on a representative file the change touches. The output is Product :: Component; split on :: for the product and component URL params.

    • If it returns UNKNOWN, pick the closest sensible component rather than leaving it blank.
  2. Choose the bug type (per Mozilla's task/defect/enhancement guide):

    • defect — shipping software is not behaving as expected: a regression, a crash, an error.
    • enhancement — a new feature or function, or changing how an existing feature behaves.
    • task — change a configuration, update a parameter, or refactor existing code; engineering changes with no user-facing behavior change (tooling, tests, docs, build).
  3. Draft the summary and description and show them to the user.

    • Shape the summary to the bug type chosen above. In all three cases the mechanism, the file list, and any counts belong in the description, not the summary.
      • defect - the observable symptom, in the terms someone hitting it would use ("Restored tabs come back with blank titles"). Not the suspected cause and not the fix: either can turn out wrong, and the symptom is what people search for.
      • enhancement - the capability wanted ("Allow pinned tabs to be restored per window").
      • task - the action to take ("Use declareLazy in the remaining sessionstore modules").
    • Cut what goes stale or reads as code in prose: a count ("Six modules..."), a helper's namespace prefix (declareLazy, not XPCOMUtils.declareLazy), glob shorthand (lazy.*).
    • Use ordinary words, and never a term coined for the occasion. Where the project has no established name for the thing, describe it instead.
    • Match a sibling bug's shape when one exists, so the two are findable together, and let any trailing clause carry only what distinguishes this one.
    • In the description, wrap code identifiers (function, variable, class, file, pref, and flag names) in backticks so they render as code in the filed bug.
    • For a test-failure bug, include a link to the test's dashboard: https://tests.firefox.dev/test.html?test=<path>.
  4. Confirm with the user before filing. Ask for approval using the AskUserQuestion tool, with "Looks good, file the bug" as the first (recommended) option so the user can accept it with a single keypress; the automatic "Other" choice lets them request edits instead. Do not run the script until they approve.

  5. Open the prefilled form. Run the helper script with each Bugzilla enter_bug.cgi field as a field=value argument; it URL-encodes the values and opens the form in the browser (cross-platform, so Linux, macOS, and Windows all work):

    python3 .agents/skills/bug-filing/file-bug.py product=<P> component=<C> \
        bug_type=<T> short_desc=<summary> comment=<description>
    
    • Write short_desc and comment as plain text, with markdown backticks around code identifiers; the script does all the encoding.
    • Any form field works, so add more as the bug needs them, e.g. blocked=<bug> (blocks), dependson=<bug> (depends on), or see_also=<url>.

    The user reviews and submits the form to create the bug, then provides the bug number.

Notes

  • This skill only opens a prefilled form; it never submits the bug itself.

Signals

GitHub stars
22
Forks
42
Last commit
Sep 2026

ahel recommends instead

Advanced
Catalog kind
skill
Gateway key
bug-filing-mozilla
Source
github.com/mozilla/enterprise-firefox
bug-filing by mozilla: Skill · ahel