@ai-devkit/channel-connector 0.5.0 → 0.6.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.
- package/README.md +31 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @ai-devkit/channel-connector
|
|
2
|
+
|
|
3
|
+
Bridge AI DevKit agent sessions to external messaging channels.
|
|
4
|
+
|
|
5
|
+
This package powers the `ai-devkit channel` commands. Use it when you need the lower-level connector layer that routes messages between running AI coding agents and channels such as Telegram.
|
|
6
|
+
|
|
7
|
+
## What It Provides
|
|
8
|
+
|
|
9
|
+
- **Channel abstraction** — Common interface for external messaging channels
|
|
10
|
+
- **Agent routing** — Forward prompts to running AI coding agent sessions
|
|
11
|
+
- **Response delivery** — Send agent output back through the connected channel
|
|
12
|
+
- **Connector foundation** — Shared utilities for adding future channels
|
|
13
|
+
|
|
14
|
+
## Typical Use
|
|
15
|
+
|
|
16
|
+
Most users should use the CLI:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
ai-devkit channel connect telegram
|
|
20
|
+
ai-devkit channel start --agent <agent-name>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Use this package directly only when building custom channel integrations or extending AI DevKit's remote-control surface.
|
|
24
|
+
|
|
25
|
+
## Documentation
|
|
26
|
+
|
|
27
|
+
Full guides and workflow examples: **[ai-devkit.com/docs](https://ai-devkit.com/docs/)**
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|
package/package.json
CHANGED