Product naming
WednesdayAI is the product name. A large set of operator surfaces still use the openclaw identifier on purpose, so existing installs, scripts, and state directories keep working across upgrades. Both layers are correct — do not “fix” operator paths to WednesdayAI names unless a future migration explicitly says so.Two layers
CLI binaries
- Primary:
wednesdayai - Permanent alias:
openclaw(same entrypoint,openclaw.mjs)
wednesdayai in new runbooks; existing scripts calling openclaw remain valid forever — the alias is a compatibility guarantee, not a deprecation.
What stays openclaw (do not rename)
Keep these asopenclaw / OPENCLAW even when they appear near WednesdayAI-branded text:
- All
OPENCLAW_*environment variables - State dir
~/.openclaw/and config fileopenclaw.json - Service and socket names (
openclaw-gateway.service, etc.) - Plugin SDK import
openclaw/plugin-sdk, manifest filenameopenclaw.plugin.json(legacy manifest key fallback included) - Transcript sentinel
__OPENCLAW_REDACTED__, schema idopenclaw.inbound_meta.v1, provenanceprovider: "openclaw"
System prompt markers
Assembled prompts embed HTML-comment markers (ADR 0051):<!-- WEDNESDAYAI_CACHE_BOUNDARY -->— splits the cache-stable prefix whenagents.defaults.systemPrompt.cache.boundaryis"auto"(default)<!-- WEDNESDAYAI_PROJECT_CONTEXT_END -->— ends the project-context block
Upgrade impact
Changing the cache-boundary marker text invalidates provider prompt-cache prefixes. After upgrading across the rename:- Expect a one-time cold cache on the first turn of each session/model (higher latency and cache-write cost once).
- No config change is required for markers.
- Out-of-tree tooling that grepped old marker strings needs updating.
Workspace seed files
New workspaces and bundled templates ship WednesdayAI prose. Existing workspaces are not rewritten on upgrade — editAGENTS.md / IDENTITY.md yourself if older wording remains in operator-owned files.
Verify after upgrade
/context list reports the cache boundary and project-context sizes cleanly.
Related
- Product naming (developer) — the contributor case map and guard tests
- What is WednesdayAI? — user-facing summary
- System prompt — where the identity line lives