From 864123df3fabbc25acec34efc046e3509baf8ba4 Mon Sep 17 00:00:00 2001 From: sable Date: Tue, 19 May 2026 05:51:41 +0000 Subject: [PATCH] docs(sable-5u7): fix llms.txt typo + correct platform skill counts (B8) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two corrections found while cross-reading our llms.txt against docs.rafter.so/llms.txt and verifying against the current AGENT_SKILLS source: 1. Line 16 had a truncated sentence — '(ode is immediately after analysis)'. Replaced with '(code is deleted immediately after analysis)' matching the wording at line 139 of the same file. 2. The Supported Agent Platforms table understated the skill count for Claude Code and Codex CLI. Both platforms install 3 security skills today (rafter, rafter-secure-design, rafter-code-review per node/src/commands/agent/init.ts:27 AGENT_SKILLS), not 2. OpenClaw installs the ClawHub-shaped rafter-security skill (single SKILL.md in workspace/skills/rafter-security/). The docs.rafter.so/llms.txt is intentionally different — covers the docs site, not the package — but the factual claims (platform names, install flag, what install does) should agree. This commit aligns the factual claims. Cross-rig coordination on the secbolt llms.txt is being nudged separately to juno. Closes sable-5u7. --- llms.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llms.txt b/llms.txt index a9b7af7d..aad0ff63 100644 --- a/llms.txt +++ b/llms.txt @@ -13,7 +13,7 @@ Founded by Rome Thorstenson. Source: [github.com/Raftersecurity/rafter-cli](http - **Local (free, offline, no key).** Secret scanning, command interception, policy, hooks, audit log, MCP server, extension/skill review. - **Remote — Rafter Code Security Engine (requires `RAFTER_API_KEY`).** Agentic SAST + SCA + secret detection against a GitHub repo, returning a prioritized, fix-oriented report. Triggered by `rafter run` (alias: `rafter scan`). -The two surfaces never overlap. `rafter secrets` is local-only; `rafter run` is remote-only (ode is immediately after analysis). Pick by the task, not by the name. +The two surfaces never overlap. `rafter secrets` is local-only; `rafter run` is remote-only (code is deleted immediately after analysis). Pick by the task, not by the name. ## Install @@ -109,9 +109,9 @@ Full schema: [docs.rafter.so/policy](https://docs.rafter.so/policy) (or see `sha | Platform | Flag | What's installed | |--------------|-----------------------|-------------------------------------| -| Claude Code | `--with-claude-code` | Pre/PostToolUse hooks + 2 skills | -| Codex CLI | `--with-codex` | 2 security skills | -| OpenClaw | `--with-openclaw` | 1 security skill | +| Claude Code | `--with-claude-code` | Pre/PostToolUse hooks + 3 skills | +| Codex CLI | `--with-codex` | 3 security skills | +| OpenClaw | `--with-openclaw` | Rafter Security skill (ClawHub) | | Cursor | `--with-cursor` | MCP server + global instructions | | Gemini CLI | `--with-gemini` | MCP server config | | Windsurf | `--with-windsurf` | MCP server config |