You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: OpenClaw integration across all documentation
- forge-export.md: added openclaw to dispatch options
- README: added integrations/ to architecture diagram (EN + ES)
- architecture-components.md: new Integrations section with OpenClaw
bridge skill and export mechanisms
- changelog: v2.2.0 entry updated with OpenClaw features
- CLAUDE.md: Integrations subsection in Architecture
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,10 @@ Six subagent definitions in `agents/`: researcher (read-only exploration), archi
69
69
70
70
`audit/checklist.md` defines 12 items (5 obligatory scored 0-2, 7 recommended scored 0-1). `audit/scoring.md` normalizes to a 10-point scale. Security-critical items (settings.json, block-destructive hook) cap the score at 6.0 if missing. Registry in `registry/projects.yml` tracks scores across managed projects.
71
71
72
+
### Integrations
73
+
74
+
`integrations/` contains cross-tool bridges. Currently: OpenClaw (`integrations/openclaw/`) with a bridge skill for operating `/forge` from messaging channels, and `/forge export openclaw` for generating project-specific OpenClaw workspace skills.
75
+
72
76
## Conventions
73
77
74
78
- Rules files: markdown with `globs:` frontmatter for auto-load
| Coverage |`/forge rule-check`| Rule match rate against git history |
160
163
| Comparative |`/forge benchmark`| Full config vs minimal config on standard tasks |
164
+
165
+
## Integrations
166
+
167
+
`integrations/` contains cross-tool bridges that let other platforms use claude-kit.
168
+
169
+
### OpenClaw (`integrations/openclaw/`)
170
+
171
+
Two mechanisms:
172
+
173
+
1.**Bridge skill** (`integrations/openclaw/SKILL.md`) — standalone OpenClaw skill that proxies all `/forge` commands via `claude --print`. Install with `bash integrations/openclaw/install.sh` → symlinks into `~/.openclaw/skills/forge/`.
174
+
175
+
2.**Export** (`/forge export openclaw`) — generates a project-specific OpenClaw workspace skill at `~/.openclaw/skills/{project}/SKILL.md` with project context, rules, deny list, and claude CLI bridge. Part of the standard export-config skill.
176
+
177
+
| Mechanism | Scope | Content |
178
+
|-----------|-------|---------|
179
+
| Bridge skill | All projects | Proxies `/forge` commands, resolves project from registry |
180
+
| Export | Single project | Project-specific context, rules as instructions, CLI bridge |
181
+
182
+
### Adding new integrations
183
+
184
+
Each integration lives in `integrations/<tool>/` with:
185
+
-`SKILL.md` or equivalent config in the target tool's format
186
+
-`install.sh` for automated setup
187
+
- Documentation of what's preserved vs lost in the conversion
description: Export config to Cursor (.cursorrules), Codex (AGENTS.md), or Windsurf (.windsurfrules)
3
+
description: Export config to Cursor (.cursorrules), Codex (AGENTS.md), Windsurf (.windsurfrules), or OpenClaw (SKILL.md)
4
4
---
5
5
6
-
Run `/forge export` with target from $ARGUMENTS (cursor|codex|windsurf). Converts the project's claude-kit configuration to the target editor's format.
6
+
Run `/forge export` with target from $ARGUMENTS (cursor|codex|windsurf|openclaw). Converts the project's claude-kit configuration to the target editor's format.
0 commit comments