From 40fce0fb61dad7c9fbb5a1d7d6b8c86d3c8ef850 Mon Sep 17 00:00:00 2001 From: Ben Sykes Date: Sun, 9 Aug 2026 13:48:58 -0400 Subject: [PATCH] feat: add bro slash-command skill for plain restatements --- README.md | 1 + skills/bro/SKILL.md | 7 +++++++ tests/test_skill_contract.py | 1 + 3 files changed, 9 insertions(+) create mode 100644 skills/bro/SKILL.md diff --git a/README.md b/README.md index 377dc7d..54a7f33 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Each skill is a directory under `skills//` containing a `SKILL.md` (plus a | Skill | Description | | --- | --- | | `agentsmd-generator` | Generate project-level `AGENTS.md` onboarding guides covering structure, tooling, testing, task flow, and conventions. | +| `bro` | Slash-command only (`/bro`): restate the last message plainly and concisely, without jargon. | | `jj-case-insensitive-clone-fix` | Diagnose and fix the `jj git clone` "Failed to update refs" error on case-insensitive filesystems (e.g. macOS APFS). | | `research_codebase` | Map how a codebase works today and save a dated, citation-backed report under `thoughts/`, using parallel sub-agents by default. | | `sdd-linear` | Run the Spec-Driven Development (SDD) workflow with Linear issues, sub-issues, attachments, and comments as the system of record instead of `docs/specs`. | diff --git a/skills/bro/SKILL.md b/skills/bro/SKILL.md new file mode 100644 index 0000000..93915a9 --- /dev/null +++ b/skills/bro/SKILL.md @@ -0,0 +1,7 @@ +--- +name: bro +description: "Use when asked to restate plainly. Rewrites concisely." +disable-model-invocation: true +--- + +Restate your last message. Stop using jargon and speak coherently. State it more simply and concisely, like one human talking to another. diff --git a/tests/test_skill_contract.py b/tests/test_skill_contract.py index 4645a85..121fd95 100644 --- a/tests/test_skill_contract.py +++ b/tests/test_skill_contract.py @@ -19,6 +19,7 @@ # Skills expected to be present in this repository. EXPECTED_SKILLS = { "agentsmd-generator", + "bro", "jj-case-insensitive-clone-fix", "research_codebase", "sdd-linear",