plugins/exploration-cycle-plugin/skills/business-requirements-capture/SKILL.md
Captures and refines business requirements, including functional requirements, non-functional requirements, business rules, constraints, assumptions, and success measures. Produces structured BRD-style documents with [CONFIRMED] and [UNCONFIRMED] confidence markers. Trigger with "capture requirements", "generate a BRD", "document business rules", "list the constraints", or "create a requirements document".
npx skillsauth add richfrem/agent-plugins-skills business-requirements-captureInstall 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.
Generate structured Business Requirements Documents from exploration session captures.
python ./scripts/execute.py \
--input <file> [<file2>...] \
--mode <brd|rules|constraints> \
--output <output_file.md>
Modes:
brd (default): Full Business Requirements Document — functional/non-functional requirements, business rules, constraints, assumptions, success measures.rules: Business rules ledger only — decision logic, policy constraints, workflow conditions.constraints: Constraints and assumptions register only.Flags:
--input PATH [PATH ...] : Session brief, problem framing, BRD draft, or prior captures--output PATH : Destination file (default: exploration/captures/brd-draft.md)--mode MODE : Output scope (default: brd)When invoked interactively, follow this 3-stage pattern. Do not dump a full document at once.
Ask all three questions in a single message before reading or generating anything:
[UNCONFIRMED] source)exploration/ only if no inline input and no files named.)brd — full Business Requirements Document (functional + non-functional requirements, business rules, constraints, assumptions, success measures)rules — business rules ledger only (decision logic, policy constraints, workflow conditions)constraints — constraints and assumptions register onlyAfter the user responds: read each input file they identify. Note any that are missing or incomplete.
Build iteratively — do not present a massive markdown dump.
[CONFIRMED] / [UNCONFIRMED] decision rule (apply throughout this stage):
[CONFIRMED] only when: the user explicitly stated it, OR it appears clearly in an input file.[UNCONFIRMED] when: you inferred it, extrapolated it, or the source is ambiguous.[UNCONFIRMED] and surface it for human sign-off.[UNCONFIRMED] items and any [NEEDS HUMAN INPUT] markers into a single ## Consolidated Gaps section at the end.Once all sections are drafted:
## Consolidated Gaps?"data-ai
Task management agent. Auto-invoked for task creation, status tracking, and kanban board operations using Markdown files across lane directories. V2 enforces Kanban Sovereignty constraints preventing manual task file edits.
development
Create, audit, repair, and document cross-platform symlinks that work correctly on both Windows and macOS/Linux. Use this skill whenever the user mentions symlinks, symbolic links, junction points, .gitconfig symlinks, broken links after git pull, cross-platform path issues, or needs help with ln -s equivalents on Windows. Also trigger when the user reports that files are missing or wrong after switching between Mac and Windows machines using Git. This skill solves the common problem where symlinks committed on macOS show up as plain text files on Windows (and vice versa) because of Git's core.symlinks setting or missing Developer Mode / elevated permissions. **IMPORTANT FOR WINDOWS USERS:** Developer Mode must be enabled before creating symlinks. Without it, Git will check out symlinks as plain-text files or hardlinks, breaking cross-platform workflows.
development
Interactively prepares a targeted Red Team Review package. It conducts a brief discovery interview to determine the threat model, generates a strict security auditor prompt, compiles a manifest of relevant project files, and bundles them into a single Markdown artifact or ZIP archive ready for an external LLM (like Grok, ChatGPT, or Gemini) or a human reviewer.
tools
Reduces AI agent context bloat across three dimensions: (1) duplicate skill deduplication — clears stale agent directory copies since the IDE already reads from plugins/ directly; (2) instruction file optimization — rewrites CLAUDE.md, GEMINI.md, or .github/copilot-instructions.md to under ~80 lines, keeping only rules that directly change agent behaviour; (3) session token efficiency — guidance on cheap subagent delegation, context compounding across turns, and session hygiene. Trigger with "optimize context", "reduce context bloat", "deduplicate skills", "trim CLAUDE.md", "trim GEMINI.md", "fix my context usage", "why are my skills loading twice", "how do I reduce token usage", or "clean up agent directories".