📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-09-03 08:57:39 +00:00
parent 0b2b056032
commit 3294e63c9f
98 changed files with 3411 additions and 467 deletions
+53
View File
@@ -0,0 +1,53 @@
# IBM Bob Setup
[IBM Bob](https://bob.ibm.com) (`bob`) is IBM's AI-powered developer agent — an "everything is a
skill" architecture with a chat interface and IDE integrations. It natively loads
[Agent Skills](https://agentskills.io) and reads `AGENTS.md`, so all six brooks-lint modes run with
no conversion.
## Install
```bash
# simplest — one command (global)
curl -fsSL https://raw.githubusercontent.com/hyhmrright/brooks-lint/main/scripts/install.sh | bash -s -- bob
# from a clone
./scripts/install.sh bob # global: ~/.bob/skills
./scripts/install.sh bob --project # this repo: ./.bob/skills
```
Prefer a manual copy? Clone the repo and `cp -r skills/* ~/.bob/skills/` — the contents, not the
`skills/` folder itself, so `_shared/` lands as a sibling of the `brooks-*` folders.
Bob scans these skill roots, highest priority first, so an existing vendor-neutral install is picked
up automatically:
| Root | Notes |
|---|---|
| `<projectRoot>/.bob/skills` | what `--project` writes |
| `~/.bob/skills` | what the global install writes |
When the same skill name appears in two roots, the project-level skill takes precedence.
## Invoke
Just ask — Bob routes to a skill from its `description`:
- "review this PR" → `brooks-review`
- "audit the architecture" → `brooks-audit`
- "where's our worst tech debt?" → `brooks-debt`
For explicit invocation, type `/` followed by the skill token in the chat prompt, or type it by
hand: `/brooks-review`, `/brooks-audit`, `/brooks-debt`, `/brooks-test`, `/brooks-health`,
`/brooks-sweep`. The repo's `AGENTS.md` carries the Iron Law (Symptom → Source →
Consequence → Remedy) and the Health Score rules; Bob also loads `~/.bob/AGENTS.md` plus every
`AGENTS.md` from the project root down to your working directory.
## Notes
- IBM Bob is available at [bob.ibm.com](https://bob.ibm.com); download and sign-in instructions
are on that page.
- 🧪 Documented per IBM's [Skills](https://bob.ibm.com/docs/ide/features/skills) and
[Configuring](https://bob.ibm.com/docs/shell/configuration/configuring) pages; community
end-to-end verification welcome —
[open an issue](https://github.com/hyhmrright/brooks-lint/issues/new).
+3 -2
View File
@@ -33,7 +33,7 @@ layout wrong:
curl -fsSL https://raw.githubusercontent.com/hyhmrright/brooks-lint/main/scripts/install.sh | bash -s -- <platform>
```
`<platform>``opencode · cursor · windsurf · antigravity · pi · kiro · copilot · droid · dsh ·
`<platform>``opencode · cursor · windsurf · antigravity · pi · kiro · copilot · droid · dsh · bob ·
gemini · codex · claude · agents`. Add `--project` to install into the current repo instead of your
global config. `agents` targets the vendor-neutral `~/.agents/skills` folder that Cursor, Copilot, pi,
Gemini, Codex, and DeepSeek Harness all read.
@@ -51,6 +51,7 @@ Gemini, Codex, and DeepSeek Harness all read.
| Kiro | [kiro-setup.md](kiro-setup.md) | `.kiro/skills`, `~/.kiro/skills` | ✅ |
| Factory Droid | [factory-droid-setup.md](factory-droid-setup.md) | `~/.factory/skills`, `.factory/skills`, `.agent/skills` | ✅ |
| DeepSeek Harness | [dsh-setup.md](dsh-setup.md) | `.dsh/skills`, `.agents/skills`, `~/.dsh/skills`, `~/.agents/skills` | ✅ |
| IBM Bob | [bob-setup.md](bob-setup.md) | `.bob/skills`, `~/.bob/skills` | ✅ |
For Claude Code, Gemini CLI, and Codex CLI, see the [README install section](../README.md#installation).
`./scripts/install.sh gemini` and `./scripts/install.sh codex` also work and use the flat layout these
@@ -69,7 +70,7 @@ If your agent accepts a skills folder or an instruction file, brooks-lint works:
## Verification status
The marketplace-installed platforms (Claude Code, Gemini CLI, Codex CLI) are maintainer-verified. The
nine Agent-Skills platforms above are documented from each tool's official skill spec and verified at
ten Agent-Skills platforms above are documented from each tool's official skill spec and verified at
the file-layout level (the installer is tested), but not yet end-to-end run by the maintainer on every
platform. **Tried one? Tell us** — [open an issue](https://github.com/hyhmrright/brooks-lint/issues/new)
with the platform, version, and what you saw, working or broken.