Borrowing it
Nothing to install: this file belongs to AI-agents-incubator/n8n-pilot. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/AI-agents-incubator/n8n-pilot/main/.claude/commands/bug-reporting.mdgit clone --depth 1 https://github.com/AI-agents-incubator/n8n-pilotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/ai-agents-incubator/n8n-pilot/bug-reporting)<a href="https://agentmods.dev/commands/ai-agents-incubator/n8n-pilot/bug-reporting"><img src="https://agentmods.dev/badge/commands/ai-agents-incubator/n8n-pilot/bug-reporting.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01146 |
| Opus 5 | $0.00000 | $0.00573 |
| Sonnet 5 | $0.00000 | $0.00229 |
| Haiku 4.5 | $0.00000 | $0.00115 |
Grade B, and why
bug-reporting scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat .claude/.framework-config | \ How it starts
The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bug Reporting Management Command
Purpose: Manage bug reporting settings for the framework.
Usage
/bug-reporting [enable|disable|status|test]
Commands
enable
Enable anonymous bug reporting. When enabled, the framework will:
- Log Cold Start and Completion protocol steps
- Create anonymized bug reports when errors occur
- Submit reports to GitHub Issues (if error is critical)
disable
Disable bug reporting. No logs will be created, no reports will be sent.
status
Show current bug reporting configuration:
- Current status (enabled/disabled)
- Project name
- Config version
- Last update timestamp
test
Test the bug reporting system by creating a sample report (does not submit).
Implementation
Enable Bug Reporting
if [ ! -f ".claude/.framework-config" ]; then
echo "⚠️ Framework config not found. Run 'start' first to initialize."
exit 1
fi
# Update config to enable
cat .claude/.framework-config | \
sed 's/"bug_reporting_enabled": false/"bug_reporting_enabled": true/' > \
.claude/.framework-config.tmp
mv .claude/.framework-config.tmp .claude/.framework-config
echo "✅ Bug reporting enabled"
echo ""
echo "What will be collected:"
echo " • Anonymous error reports when crashes occur"
echo " • Protocol execution logs (Cold Start, Completion)"
echo " • Framework version and step information"
echo ""
echo "What will NOT be collected:"
echo " • Your code or file contents"
echo " • File paths (anonymized)"
echo " • API keys, tokens, secrets (removed)"
echo ""
Disable Bug Reporting
if [ ! -f ".claude/.framework-config" ]; then
echo "⚠️ Framework config not found. Run 'start' first to initialize."
exit 1
fi
# Update config to disable
cat .claude/.framework-config | \
sed 's/"bug_reporting_enabled": true/"bug_reporting_enabled": false/' > \
.claude/.framework-config.tmp
mv .claude/.framework-config.tmp .claude/.framework-config
echo "✅ Bug reporting disabled"
echo ""
echo "Existing logs in .claude/logs/ will be preserved but not submitted."
echo "You can delete them manually if needed."
echo ""
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 181 lines · 0 tokens per session scan B 7e751d1e0038
bug-reporting is a command published in the GitHub repository AI-agents-incubator/n8n-pilot (29 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,146 tokens. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other commands, from other repositories
qa-changes
This skill should be used when the user asks to "QA a pull request", "test PR changes", "verify a PR works", "functionally test changes", or when an automated workflow triggers QA validation of code changes. Provides a structured methodology for setting up the environment, exercising changed behavior, and reporting…
doctor
Diagnosticar y reparar problemas del framework Don Cheli, git y entorno. Usa cuando el usuario dice "doctor", "problemas del framework", "don cheli no funciona", "repair Don Cheli", "debug setup", "setup broken", "framework broken", "reparar entorno". Detecta y repara issues de configuración, git y dependencias…
fix
Universal debugging and fix application with semantic code analysis.
doctor
Badi configuration validation. Checks all Badi components and produces a diagnostic report.
http-service
Build, review or debug a Bun HTTP service. Loads the http-service skill, then works the task through its workflow.
gh-issue-use-cypress
Like /gh-issue-use-browser, but pinned to the Cypress MCP — use when your project runs the Cypress MCP for browser automation. Example — /gh-issue-use-cypress "Composer > Save" saving toasts failure but the record persists.