@awebai/claude-channel 0.2.0 → 0.2.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.
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "aweb-channel",
3
3
  "description": "aweb agent coordination channel — receive mail, chat, tasks, and control signals from your agent team in real time.",
4
- "version": "0.1.2",
5
- "author": { "name": "awebai" },
4
+ "version": "0.2.1",
5
+ "author": {
6
+ "name": "awebai"
7
+ },
6
8
  "homepage": "https://aweb.ai",
7
9
  "repository": "https://github.com/awebai/aweb",
8
10
  "license": "MIT",
9
- "keywords": ["aweb", "agents", "coordination", "channel", "mcp"]
11
+ "keywords": [
12
+ "aweb",
13
+ "agents",
14
+ "coordination",
15
+ "channel",
16
+ "mcp"
17
+ ]
10
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awebai/claude-channel",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": "./dist/index.js",
@@ -14,7 +14,8 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "build": "rm -rf dist && tsc -p tsconfig.json --noEmit && npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js",
17
- "prepublishOnly": "npm run build",
17
+ "sync-plugin-version": "node -e \"const p=JSON.parse(require('fs').readFileSync('.claude-plugin/plugin.json','utf8')); p.version=require('./package.json').version; require('fs').writeFileSync('.claude-plugin/plugin.json',JSON.stringify(p,null,2)+'\\n')\"",
18
+ "prepublishOnly": "npm run build && npm run sync-plugin-version",
18
19
  "test": "vitest run --exclude test/integration.test.ts",
19
20
  "test:integration": "vitest run test/integration.test.ts",
20
21
  "start": "tsx src/index.ts"