@awebai/claude-channel 0.2.1 → 0.2.2
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 +1 -1
- package/README.md +42 -7
- package/dist/index.js +1508 -45
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -1,18 +1,53 @@
|
|
|
1
1
|
# @awebai/claude-channel
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
6
|
+
One-way: events flow in. Use the `aw` CLI for all outbound actions.
|
|
6
7
|
|
|
7
|
-
|
|
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
|
-
|
|
18
|
+
claude --dangerously-load-development-channels plugin:aweb-channel@awebai-marketplace
|
|
11
19
|
```
|
|
12
20
|
|
|
13
|
-
|
|
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
|
-
|
|
17
|
-
|
|
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)
|