skills/retard_collaboration/SKILL.md
Use when the user asks for Retard mode, retard collaboration, creative multi-agent bug bounty brainstorming, or attack-chain generation from existing zero_day_team findings and wants lateral ideas, filtered concepts, or synthesized exploit chains.
npx skillsauth add ghostonbutterbread/bug-bounty-harness retard-collaborationInstall 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.
A 3-agent creative brainstorming harness that builds on zero_day_team findings to generate novel attack chains using deliberate creative chaos.
Agents:
/retard_collaboration <program> [--source <path>]
Examples:
/retard_collaboration evernote
/retard_collaboration evernote --source ~/Shared/bounty_recon/evernote/0day_team/
~/projects/bug_bounty_harness/agents/retard_collaboration.py
zero_day_team → retard_collaboration → chainer
Run zero_day_team first to get findings, then feed the findings to retard_collaboration to generate creative chains.
File-based 3-stage pipeline:
/tmp/collab_{program}_{date}/
creative/findings.txt ← wild ideas (gpt-4.1)
analyst/filtered.txt ← diamonds only (gpt-5.4)
synthesizer/chains.md ← novel chains (gpt-5.4)
shared_context/
zero_day_findings.txt ← from zero_day_team
app_map.txt ← optional app map
task.txt
Stage 1 — Creative Chaos (gpt-4.1):
Stage 2 — Analyst (gpt-5.4):
Stage 3 — Synthesizer (gpt-5.4):
~/Shared/bounty_recon/{program}/ghost/collaboration/{date}/
├── collaborative_chains.md ← main output (chains)
├── creative/findings.txt ← raw creative output
├── analyst/filtered.txt ← filtered ideas
└── synthesizer/chains.md ← synthesizer output
# 1. Run zero_day_team first
python3 agents/zero_day_team.py evernote ~/source/
# 2. Run retard_collaboration on the findings
python3 agents/retard_collaboration.py evernote --source ~/Shared/bounty_recon/evernote/0day_team/
# 3. Run chainer on the collaborative output (optional)
python3 agents/chainer.py evernote --source ~/Shared/bounty_recon/evernote/ghost/collaboration/
The name reflects a real technique: deliberately impaired or unconventional reasoning generates more diverse ideas than pure optimization. A slightly "dumb" agent breaks out of local minima that a fully capable agent never leaves.
The creative chaos agent uses:
--skip-creative — Skip creative stage (if output already exists)--skip-analyst — Skip analyst stage--verbose — Print raw agent outputConcept inspired by research on impaired agents and creative diversity in LLM ensembles.
testing
Systematic live request mutation: flip booleans, field ops, headers, content-type, parser differentials, replay vs intercept, null/empty testing. Inherits live-testing-policy scope/rate/ownership rules.
development
Test password reset, forgot-password, reset-token, email reset, and account recovery flows for account takeover risks.
tools
Targeted param/field discovery using tech stack clues, naming conventions, and controlled-rate ffuf — then feeds findings into request-exploration for mutation. Not brute-force; informed and scoped.
testing
Ghost-only workflow for creating approved bug bounty test accounts and saving credential references.