@sleep2agi/agent-network 2.3.0-preview.3 → 2.3.0-preview.31
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 +1 -1
- package/dist/bin/cli.d.ts +1 -0
- package/dist/bin/cli.js +1 -1
- package/dist/bin/goal-wake-log-render.d.ts +31 -0
- package/dist/src/client.js +1 -1
- package/dist/src/environ-alias.d.ts +14 -0
- package/dist/src/im/feishu/adapter.d.ts +106 -1
- package/dist/src/im/feishu/bridge.d.ts +7 -0
- package/dist/src/im/feishu/config.d.ts +31 -0
- package/dist/src/im/feishu/hub-upload.d.ts +88 -0
- package/dist/src/im/feishu/markdown-image-renderer.d.ts +61 -0
- package/dist/src/im/feishu/outbound-marker.d.ts +140 -0
- package/dist/src/im/feishu/outbound-paths.d.ts +50 -0
- package/dist/src/im/feishu/outbound-route.d.ts +62 -0
- package/dist/src/im/feishu/worker.js +390 -16
- package/dist/src/im/types.d.ts +38 -1
- package/dist/src/node-server.js +1 -1
- package/dist/src/normalize-runtime.d.ts +1 -1
- package/dist/src/opencode-pin.d.ts +41 -0
- package/dist/src/opencode-preset.d.ts +43 -0
- package/dist/src/project-key.d.ts +1 -0
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -91,7 +91,7 @@ http://localhost:3000
|
|
|
91
91
|
### 3. Log In, Create A Node, Start It
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
anet login --username admin --password anethub
|
|
94
|
+
anet login --hub http://127.0.0.1:9200 --username admin --password anethub
|
|
95
95
|
anet node create my-bot
|
|
96
96
|
anet node start my-bot
|
|
97
97
|
```
|
package/dist/bin/cli.d.ts
CHANGED