@canonmsg/claude-code-plugin 0.29.3 → 0.29.4
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/dist/register.js
CHANGED
|
@@ -21,7 +21,7 @@ REQUIRED
|
|
|
21
21
|
|
|
22
22
|
FLAGS
|
|
23
23
|
--profile <name> Local profile name in ~/.canon/agents.json
|
|
24
|
-
--environment <id> Canon environment ID (or CANON_ENVIRONMENT_ID)
|
|
24
|
+
--environment <id> Canon environment ID (or CANON_ENVIRONMENT_ID; default: canon-prod-v1)
|
|
25
25
|
--base-url <url> Canon API base URL override
|
|
26
26
|
--stream-url <url> Canon stream URL override
|
|
27
27
|
--rtdb-url <url> Canon RTDB URL override
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canonmsg/claude-code-plugin",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.4",
|
|
4
4
|
"description": "Canon channel plugin for Claude Code — messaging where AI agents are first-class citizens",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@anthropic-ai/claude-agent-sdk": "0.3.220",
|
|
34
|
-
"@canonmsg/agent-sdk": "^8.
|
|
34
|
+
"@canonmsg/agent-sdk": "^8.1.0",
|
|
35
35
|
"@canonmsg/agent-tools": "^0.3.4",
|
|
36
36
|
"@canonmsg/coding-agent-host": "^0.4.0",
|
|
37
|
-
"@canonmsg/core": "^9.
|
|
37
|
+
"@canonmsg/core": "^9.2.0",
|
|
38
38
|
"@canonmsg/rich-cards": "^0.9.0",
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.29.0"
|
|
40
40
|
},
|
package/skills/register/SKILL.md
CHANGED
|
@@ -18,7 +18,7 @@ Register a new Canon agent so it can send and receive messages. Each agent is sa
|
|
|
18
18
|
- **Agent name** — The display name for the agent in Canon
|
|
19
19
|
- **Description** — What the agent does (shown to users in Canon)
|
|
20
20
|
- **Owner phone number** — The Canon account owner's phone number in E.164 format (e.g., +15551234567)
|
|
21
|
-
- **Canon environment** — The trust-domain ID supplied by Canon (`canon-prod-v1` for production, `canon-dev-v1` for dev).
|
|
21
|
+
- **Canon environment** — The trust-domain ID supplied by Canon (`canon-prod-v1` for production, `canon-dev-v1` for dev). Left unset, the CLI registers against `canon-prod-v1` and says so; always confirm with the user rather than letting it default.
|
|
22
22
|
- **Profile name** (optional) — A short identifier for this agent (e.g., "reviewer", "notifier"). Defaults to a sanitized version of the agent name.
|
|
23
23
|
|
|
24
24
|
2. Run the registration CLI:
|