@@ -41,6 +41,16 @@ Before you begin, familiarize yourself with how rules work in your AI coding too
4141
4242 :material-book-open-page-variant: [OpenCode Skills Documentation](https://opencode.ai/docs/skills/)
4343
44+ === "OpenClaw"
45+ OpenClaw uses ` .openclaw/skills ` for skill configuration.
46+
47+ :material-book-open-page-variant: [OpenClaw Documentation](https://github.com/openclaw/openclaw)
48+
49+ === "Hermes"
50+ Hermes uses ` .hermes/skills ` for skill configuration.
51+
52+ :material-book-open-page-variant: [Hermes Skills Documentation](https://hermes-agent.nousresearch.com/docs/skills/)
53+
4454## Installation
4555
4656### Option 1: Install Pre-built Rules (Recommended)
@@ -201,6 +211,34 @@ Select your AI coding tool and follow the instructions:
201211 !!! info "Codex Skills Documentation"
202212 For more information, see the [OpenAI Codex Skills documentation](https://developers.openai.com/codex/skills/).
203213
214+ === "OpenClaw"
215+
216+ OpenClaw uses the [Agent Skills standard](https://agentskills.io/) for skill discovery.
217+
218+ 1. **Download** [`ide-rules-openclaw.zip`](https://github.com/cosai-oasis/project-codeguard/releases) from the Releases page
219+ 2. **Extract** the ZIP file
220+ 3. **Copy** the `.openclaw/` directory to your project root:
221+
222+ ```bash
223+ cp -r .openclaw/ /path/to/your/project/
224+ ```
225+
226+ 4. **Start a new session** in OpenClaw to load the rules
227+
228+ === "Hermes"
229+
230+ Hermes uses the [Agent Skills standard](https://agentskills.io/) for skill discovery.
231+
232+ 1. **Download** [`ide-rules-hermes.zip`](https://github.com/cosai-oasis/project-codeguard/releases) from the Releases page
233+ 2. **Extract** the ZIP file
234+ 3. **Copy** the `.hermes/` directory to your project root:
235+
236+ ```bash
237+ cp -r .hermes/ /path/to/your/project/
238+ ```
239+
240+ 4. **Start a new session** in Hermes to load the rules
241+
204242** Using multiple tools?** Download [ ` ide-rules-all.zip ` ] ( https://github.com/cosai-oasis/project-codeguard/releases ) for all formats in one archive.
205243
206244!!! tip "Repository Level Installation"
@@ -240,6 +278,8 @@ cp -r dist/.github/ /path/to/your/project/
240278cp -r dist/.agent/ /path/to/your/project/
241279cp -r dist/.opencode/ /path/to/your/project/
242280cp -r dist/.codex/ /path/to/your/project/
281+ cp -r dist/.openclaw/ /path/to/your/project/
282+ cp -r dist/.hermes/ /path/to/your/project/
243283```
244284
245285## Core vs OWASP Sources
@@ -270,6 +310,8 @@ For GitHub repositories, you can automate rule updates with a workflow that runs
270310- Antigravity (` .agent/rules/ ` )
271311- OpenCode (` .opencode/skills/software-security/rules/ ` )
272312- Codex (` .codex/skills/software-security/rules/ ` )
313+ - OpenClaw (` .openclaw/skills/software-security/rules/ ` )
314+ - Hermes (` .hermes/skills/software-security/rules/ ` )
273315
274316### Setup
275317
@@ -294,6 +336,12 @@ your-project/
294336│ └── rules/
295337├── .github/
296338│ └── instructions/
339+ ├── .hermes/
340+ │ └── skills/
341+ │ └── software-security/
342+ ├── .openclaw/
343+ │ └── skills/
344+ │ └── software-security/
297345├── .opencode/
298346│ └── skills/
299347│ └── software-security/
0 commit comments