@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.
Files changed (2) hide show
  1. package/README.md +31 -0
  2. 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
@@ -3,7 +3,7 @@
3
3
  "nx": {
4
4
  "name": "channel-connector"
5
5
  },
6
- "version": "0.5.0",
6
+ "version": "0.6.0",
7
7
  "description": "Generic messaging bridge for connecting to external communication platforms",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",