dwclaw-cli 1.0.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/.claude/cron/jobs.json +3 -0
- package/README.md +36 -0
- package/dist/bundle.js +46281 -0
- package/dist/main.js +2 -0
- package/docker/.env +31 -0
- package/docker/Dockerfile +61 -0
- package/docker/agent-template.json +9 -0
- package/docker/docker-compose.yml +43 -0
- package/docker/entrypoint.sh +27 -0
- package/package.json +53 -0
- package/skills/.skills_store_lock.json +11 -0
- package/skills/github-api/LICENSE.txt +21 -0
- package/skills/github-api/SKILL.md +763 -0
- package/skills/github-api/_meta.json +6 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Quick Start
|
|
2
|
+
1. config enviroment
|
|
3
|
+
cp .env.example .env
|
|
4
|
+
|
|
5
|
+
2. set up redis server (without password)
|
|
6
|
+
|
|
7
|
+
3. Register Feishu Bot (https://open.feishu.cn/app) Get im:message 权限
|
|
8
|
+
|
|
9
|
+
飞书事件与回调,添加事件 im.message.receive_v1
|
|
10
|
+
|
|
11
|
+
订阅方式:使用长连接接收事件
|
|
12
|
+
|
|
13
|
+
修改后记得发布版本
|
|
14
|
+
|
|
15
|
+
4. pnpm install
|
|
16
|
+
|
|
17
|
+
5. pnpm start
|
|
18
|
+
|
|
19
|
+
# IMPORTANT
|
|
20
|
+
支持多用户,各种组织顺序参考下面:
|
|
21
|
+
{app} : {module} : {userId} : {scope?} : {id?}
|
|
22
|
+
agent:mem:${userId}:${date?}:${cron_title?}
|
|
23
|
+
|
|
24
|
+
层级 含义 示例
|
|
25
|
+
app 应用命名空间 agent
|
|
26
|
+
module 功能模块 mem, dedup, task, cron
|
|
27
|
+
userId 用户标识 user_abc123
|
|
28
|
+
scope? 可选 - 子作用域 日期 20260317、分组等
|
|
29
|
+
id? 可选 - 具体标识 cron_title、messageId 等
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
安装腾讯的skillcli 可以让智能体更强大
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# Todo Plan
|
|
36
|
+
定时,SOUL,和控制浏览器,前端管理界面
|