@zvada/cr8 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +2 -2
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +4 -2
- package/dist/cr8.mjs +116 -116
- package/docs/user/cli.md +3 -1
- package/docs/user/desktop.md +6 -2
- package/docs/user/install.md +31 -8
- package/docs/user/mcp.md +3 -1
- package/package.json +4 -1
- package/skills/cr8-design/SKILL.md +1 -1
- package/skills/cr8-flows/SKILL.md +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cr8",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A local-first design canvas shared by people and AI agents.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Adam Zvada",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"command": "npx",
|
|
14
14
|
"args": [
|
|
15
15
|
"-y",
|
|
16
|
-
"@zvada/cr8@0.3.
|
|
16
|
+
"@zvada/cr8@0.3.1",
|
|
17
17
|
"mcp-connect"
|
|
18
18
|
]
|
|
19
19
|
}
|
package/README.md
CHANGED
|
@@ -79,7 +79,9 @@ The first time you generate an image, CR8 asks you to connect your account: **Co
|
|
|
79
79
|
|
|
80
80
|
### With an agent
|
|
81
81
|
|
|
82
|
-
Claude Code
|
|
82
|
+
MCP hosts must support **2026-07-28** to drive CR8. The Claude Code and Codex versions [checked on 2026-09-14](docs/user/install.md#host-compatibility) still requested older protocols; saving their configuration does not verify a connection. Until your host supports the required protocol, agents can use the [JSON CLI](#from-a-terminal-or-a-script) and people can use the local browser.
|
|
83
|
+
|
|
84
|
+
A compatible host's `mcp-connect` registration joins the runtime already opened by `cr8 start` in that workspace, so you and the agent edit the same project. When none is running, the host starts CR8 on demand and stops its process when the session ends. These commands save user-level configuration:
|
|
83
85
|
|
|
84
86
|
```bash
|
|
85
87
|
claude mcp add --transport stdio --scope user cr8 -- cr8 mcp-connect # Claude Code
|
|
@@ -88,7 +90,7 @@ codex mcp add cr8 -- cr8 mcp-connect # Codex
|
|
|
88
90
|
|
|
89
91
|
One user-level registration follows each agent session's project folder. Desktop onboarding and Settings can add it directly through the installed agent CLI, without a running chat. Browser Settings offers setup prompts and manual configuration. Setup creates no design files.
|
|
90
92
|
|
|
91
|
-
|
|
93
|
+
After verifying the connection with a read-only `list_skills` call, ask for a deliverable:
|
|
92
94
|
|
|
93
95
|
> Initialize CR8 at `designs/thumbnail` and make a 1280 × 720 YouTube thumbnail for an AI mobile-app builder. Keep every layer editable and show me the canvas.
|
|
94
96
|
|