skills/browser-extension/firefox-publishing/SKILL.md
Publish Firefox browser extensions to Mozilla Add-ons (AMO) — packaging, review process, source code submission, and Firefox-specific requirements.
npx skillsauth add kienbui1995/magic-powers firefox-publishingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
{
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}
gecko.id is REQUIRED for AMO submission (use email format or UUID)strict_min_version sets minimum Firefox versionFirefox requires source code if extension uses build tools (Webpack, Vite, Rollup, etc.):
# Submit source code separately
# Include: package.json, source files, build instructions
# Exclude: node_modules (provide npm install instructions in README)
zip -r source.zip src/ package.json package-lock.json README.md
Include a SOURCE_CODE_NOTES.md:
## Build Instructions
1. npm install
2. npm run build
3. Load dist/ as unpacked extension
Reviewers check:
| | AMO Listed | AMO Unlisted | Self-hosted | |-|-----------|-------------|------------| | Discovery | Public search | No | No | | Review | Required | Signed only | Manual signing | | Updates | AMO managed | Self-managed | Self-managed | | Use case | Public extension | Internal tools | Enterprise |
browser_specific_settings.gecko.id set in manifest?SOURCE_CODE_NOTES.md with build instructions?content-media
Use when designing for XR (AR/VR/MR), choosing interaction modes, or adapting 2D UI patterns for spatial computing
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
development
Use when executing a structured workflow — select and run a feature, bugfix, refactor, research, or incident template with correct agent and model assignments per phase.