Skip to content

Commit 8105010

Browse files
authored
docs: remove vendor brand names from README and docs (#476)
Scrub Claude Code/OpenCode/kimaki brand enumerations from the doc layer, replacing them with generic phrasing consistent with the rest of the docs. Layer-purity follow-up to #471 (PHP source already scrubbed); the grep test covers docs too. Closes #475
1 parent 058caa3 commit 8105010

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Who pulls the trigger is up to you. DMC has three driver modes, and each mode uses only the capabilities the host actually supports:
66

7-
- **An external coding-agent runtime** on your machine pointed at the site (Claude Code, OpenCode, kimaki, Studio Code) — interactive, human-in-the-loop; requires shell/git/workspace access.
7+
- **An external coding-agent runtime** on your machine pointed at the site — interactive, human-in-the-loop; requires shell/git/workspace access.
88
- **The site itself, via a Data Machine flow** — scheduled or webhook-triggered; can use API-first GitHub/GitSync abilities without a shell, or workspace abilities when the host supports them.
99
- **An ephemeral CI job** that boots a WordPress instance with DMC loaded for a single check (Playground + GitHub Actions). The site exists for one job, codes for one PR, dies.
1010

@@ -28,7 +28,7 @@ The important seam is not self-hosted versus managed; it is API-first versus she
2828

2929
| Mode | Driver | Lifetime | Example |
3030
|---|---|---|---|
31-
| **Co-located runtime** | External agent CLI on the host | Long-lived install | [`wp-coding-agents`](https://github.com/Extra-Chill/wp-coding-agents) on a VPS, a Studio site with kimaki |
31+
| **Co-located runtime** | External agent CLI on the host | Long-lived install | [`wp-coding-agents`](https://github.com/Extra-Chill/wp-coding-agents) on a VPS, a Studio site with a co-located coding agent |
3232
| **In-process flow** | DM AI step inside a flow | Long-lived install | An Intelligence wiki maintenance flow calling workspace abilities; a webhook-triggered PR review flow |
3333
| **Ephemeral CI** | DM flow inside Playground / GitHub Actions | One job | [`wc-site-generator`](https://github.com/chubes4/wc-site-generator) static-site validation; the Stage 5 Playground proof |
3434

@@ -157,7 +157,7 @@ on it are how parallel agents corrupt each other's work.
157157
- PHP 8.2+
158158
- [Data Machine](https://github.com/Extra-Chill/data-machine) plugin (core)
159159
- A driver for the abilities you plan to use — at least one of:
160-
- An external coding-agent runtime on the same host (Claude Code, OpenCode, kimaki, Studio Code, etc.); see [`wp-coding-agents`](https://github.com/Extra-Chill/wp-coding-agents) for an opinionated setup.
160+
- An external coding-agent runtime on the same host; see [`wp-coding-agents`](https://github.com/Extra-Chill/wp-coding-agents) for an opinionated setup.
161161
- A Data Machine flow on the site that calls DMC's tools / abilities (in-process driver).
162162
- A CI workflow that boots WordPress with DMC loaded and runs a DM flow against it; see [`wc-site-generator`](https://github.com/chubes4/wc-site-generator) for the canonical Playground-based example.
163163
- Shell-backed workspace/git features require `exec()`, a local `git` binary, and a visible writable workspace path.
@@ -252,7 +252,7 @@ The bundled records do not provision flows or schedules. Create flows from these
252252
│ Drivers — anything that pulls the trigger │
253253
│ │
254254
│ (a) External coding-agent runtime on the host │
255-
Claude Code, OpenCode, kimaki, Studio Code
255+
any external coding agent CLI
256256
│ → reads AGENTS.md, calls back via WP-CLI / MCP / REST │
257257
│ │
258258
│ (b) In-process Data Machine flow on the site │

docs/memory-disk-projection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DMC should not decide what `MEMORY.md`, `SOUL.md`, `USER.md`, or guideline recor
2424
- `wp_guideline` is optional. It is not guaranteed in WordPress core today.
2525
- Guideline-backed projection must feature-detect `post_type_exists( 'wp_guideline' )` and `taxonomy_exists( 'wp_guideline_type' )`, or rely on an explicit producer contract/polyfill.
2626
- Disk projection is one-way until a separate sync-back design exists.
27-
- Data Machine core should not learn about OpenCode, Claude Code, or Kimaki.
27+
- Data Machine core should not learn about specific external coding-agent runtimes.
2828
- DMC should not subscribe to inferred low-level writes. It should consume explicit Data Machine memory/guideline events.
2929

3030
## Current Safe Slice

0 commit comments

Comments
 (0)