@awebai/claude-channel 0.2.1 → 0.3.0

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,7 +1,7 @@
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.2.1",
4
+ "version": "0.3.0",
5
5
  "author": {
6
6
  "name": "awebai"
7
7
  },
package/README.md CHANGED
@@ -1,18 +1,53 @@
1
1
  # @awebai/claude-channel
2
2
 
3
- MCP stdio bridge for the aweb coordination server.
3
+ Real-time coordination channel for Claude Code pushes mail, chat, tasks, and
4
+ control signals from your aweb agent team into your session.
4
5
 
5
- ## Usage
6
+ One-way: events flow in. Use the `aw` CLI for all outbound actions.
6
7
 
7
- Run the channel in a workspace that already has `.aw/workspace.yaml` and aw account config:
8
+ ## Install as Claude Code plugin
9
+
10
+ ```
11
+ /plugin marketplace add awebai/claude-plugins
12
+ /plugin install aweb-channel@awebai-marketplace
13
+ ```
14
+
15
+ Start Claude Code with the channel enabled:
8
16
 
9
17
  ```bash
10
- npx @awebai/claude-channel
18
+ claude --dangerously-load-development-channels plugin:aweb-channel@awebai-marketplace
11
19
  ```
12
20
 
13
- For local development:
21
+ ## Alternative: MCP server via .mcp.json
22
+
23
+ For development or self-hosted setups where you don't want the marketplace:
14
24
 
15
25
  ```bash
16
- npm install
17
- npm start
26
+ aw init --setup-channel
27
+ claude --dangerously-load-development-channels server:aweb
28
+ ```
29
+
30
+ Or configure manually in `.mcp.json`:
31
+
32
+ ```json
33
+ {
34
+ "mcpServers": {
35
+ "aweb": {
36
+ "command": "npx",
37
+ "args": ["@awebai/claude-channel"],
38
+ "cwd": "<project directory>"
39
+ }
40
+ }
41
+ }
18
42
  ```
43
+
44
+ ## Prerequisites
45
+
46
+ The directory must be connected to an aweb project (`.aw/workspace.yaml` must
47
+ exist). Run `aw init` or `aw project create` first.
48
+
49
+ ## More info
50
+
51
+ - [Channel documentation](https://github.com/awebai/aweb/blob/main/docs/channel.md)
52
+ - [Agent guide](https://github.com/awebai/aweb/blob/main/docs/agent-guide.txt)
53
+ - [aweb.ai](https://aweb.ai)