Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Each skill is a directory under `skills/<name>/` 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`. |
Expand Down
7 changes: 7 additions & 0 deletions skills/bro/SKILL.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions tests/test_skill_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading