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: 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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
Who pulls the trigger is up to you. DMC has three driver modes, and each mode uses only the capabilities the host actually supports:
6
6
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.
8
8
-**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.
9
9
-**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.
10
10
@@ -28,7 +28,7 @@ The important seam is not self-hosted versus managed; it is API-first versus she
28
28
29
29
| Mode | Driver | Lifetime | Example |
30
30
|---|---|---|---|
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|
32
32
|**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 |
- 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.
161
161
- A Data Machine flow on the site that calls DMC's tools / abilities (in-process driver).
162
162
- 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.
163
163
- 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
252
252
│ Drivers — anything that pulls the trigger │
253
253
│ │
254
254
│ (a) External coding-agent runtime on the host │
255
-
│ Claude Code, OpenCode, kimaki, Studio Code │
255
+
│ any external coding agent CLI │
256
256
│ → reads AGENTS.md, calls back via WP-CLI / MCP / REST │
Copy file name to clipboardExpand all lines: docs/memory-disk-projection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ DMC should not decide what `MEMORY.md`, `SOUL.md`, `USER.md`, or guideline recor
24
24
-`wp_guideline` is optional. It is not guaranteed in WordPress core today.
25
25
- 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.
26
26
- 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.
28
28
- DMC should not subscribe to inferred low-level writes. It should consume explicit Data Machine memory/guideline events.
0 commit comments