@coze-arch/cli 0.0.17 → 0.0.19-beta.1
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/lib/__templates__/expo/.coze +1 -0
- package/lib/__templates__/expo/.cozeproj/scripts/validate.sh +8 -0
- package/lib/__templates__/expo/package.json +2 -1
- package/lib/__templates__/nextjs/.coze +1 -0
- package/lib/__templates__/nextjs/package.json +3 -1
- package/lib/__templates__/nextjs/scripts/validate.sh +10 -0
- package/lib/__templates__/nuxt-vue/.coze +1 -0
- package/lib/__templates__/nuxt-vue/eslint.config.mjs +25 -0
- package/lib/__templates__/nuxt-vue/package.json +9 -2
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +790 -10
- package/lib/__templates__/nuxt-vue/scripts/validate.sh +10 -0
- package/lib/__templates__/pi-agent/.coze +10 -0
- package/lib/__templates__/pi-agent/AGENTS.md +144 -0
- package/lib/__templates__/pi-agent/README.md +216 -0
- package/lib/__templates__/pi-agent/_gitignore +3 -0
- package/lib/__templates__/pi-agent/_npmrc +23 -0
- package/lib/__templates__/pi-agent/bin/pi-bot.ts +8 -0
- package/lib/__templates__/pi-agent/docs/project-overview.md +374 -0
- package/lib/__templates__/pi-agent/docs/user/getting-started.md +47 -0
- package/lib/__templates__/pi-agent/package.json +63 -0
- package/lib/__templates__/pi-agent/pi-resources/SYSTEM.md +15 -0
- package/lib/__templates__/pi-agent/pi-resources/extensions/preference-memory/index.ts +355 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-asr/SKILL.md +36 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-asr/scripts/asr.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-image-gen/SKILL.md +41 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-image-gen/scripts/gen.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-tts/SKILL.md +85 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-tts/scripts/tts.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-video-gen/SKILL.md +53 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-video-gen/scripts/gen.mjs +9 -0
- package/lib/__templates__/pi-agent/pnpm-lock.yaml +8282 -0
- package/lib/__templates__/pi-agent/scripts/dev.sh +14 -0
- package/lib/__templates__/pi-agent/scripts/prepare.sh +35 -0
- package/lib/__templates__/pi-agent/src/agent.ts +363 -0
- package/lib/__templates__/pi-agent/src/channels/feishu/index.ts +760 -0
- package/lib/__templates__/pi-agent/src/channels/feishu/streaming-card.ts +297 -0
- package/lib/__templates__/pi-agent/src/channels/wechat/index.ts +171 -0
- package/lib/__templates__/pi-agent/src/cli.ts +117 -0
- package/lib/__templates__/pi-agent/src/config.ts +708 -0
- package/lib/__templates__/pi-agent/src/core.ts +218 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/channels.ts +104 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/docs.ts +204 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/models.ts +98 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/overview.ts +33 -0
- package/lib/__templates__/pi-agent/src/dashboard/config-store.ts +64 -0
- package/lib/__templates__/pi-agent/src/dashboard/index.ts +39 -0
- package/lib/__templates__/pi-agent/src/dashboard/server.ts +622 -0
- package/lib/__templates__/pi-agent/src/dashboard/types.ts +25 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/index.html +13 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/postcss.config.cjs +7 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/app-layout.tsx +186 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/page-title.tsx +17 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/alert.tsx +22 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/badge.tsx +25 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/button.tsx +40 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/card.tsx +29 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/input.tsx +18 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/label.tsx +8 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/select.tsx +80 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/separator.tsx +23 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/hooks/use-fetch.ts +32 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/hooks/use-local-storage-state.ts +23 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/main.tsx +30 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/channels-page.tsx +188 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/chat-page.tsx +451 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/docs-page.tsx +65 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/models-page.tsx +122 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/overview-page.tsx +134 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/services/chat-ws-service.ts +167 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/styles.css +294 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/utils/index.ts +11 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/tsconfig.json +13 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/vite.config.ts +17 -0
- package/lib/__templates__/pi-agent/src/index.ts +123 -0
- package/lib/__templates__/pi-agent/src/pi-resources.ts +125 -0
- package/lib/__templates__/pi-agent/src/session-store.ts +223 -0
- package/lib/__templates__/pi-agent/src/tools/common/format-coze-error.ts +12 -0
- package/lib/__templates__/pi-agent/src/tools/index.ts +2 -0
- package/lib/__templates__/pi-agent/src/tools/web-fetch/index.ts +195 -0
- package/lib/__templates__/pi-agent/src/tools/web-search/index.ts +206 -0
- package/lib/__templates__/pi-agent/template.config.js +45 -0
- package/lib/__templates__/pi-agent/tests/cli.test.ts +136 -0
- package/lib/__templates__/pi-agent/tests/config.test.ts +315 -0
- package/lib/__templates__/pi-agent/tests/dashboard-docs-api.test.ts +125 -0
- package/lib/__templates__/pi-agent/tests/dashboard-models-api.test.ts +171 -0
- package/lib/__templates__/pi-agent/tests/feishu-channel.test.ts +149 -0
- package/lib/__templates__/pi-agent/tests/feishu-streaming-card.test.ts +15 -0
- package/lib/__templates__/pi-agent/tests/pi-resources.test.ts +73 -0
- package/lib/__templates__/pi-agent/tests/preference-memory.test.ts +43 -0
- package/lib/__templates__/pi-agent/tests/session-store.test.ts +61 -0
- package/lib/__templates__/pi-agent/tests/smoke/run-smoke.ts +275 -0
- package/lib/__templates__/pi-agent/tests/web-fetch.test.ts +157 -0
- package/lib/__templates__/pi-agent/tests/web-search.test.ts +208 -0
- package/lib/__templates__/pi-agent/tsconfig.json +21 -0
- package/lib/__templates__/pi-agent/types/larksuiteoapi-node-sdk.d.ts +113 -0
- package/lib/__templates__/taro/.coze +1 -0
- package/lib/__templates__/taro/.cozeproj/scripts/validate.sh +8 -0
- package/lib/__templates__/taro/package.json +1 -1
- package/lib/__templates__/templates.json +18 -31
- package/lib/__templates__/vite/.coze +1 -0
- package/lib/__templates__/vite/package.json +3 -1
- package/lib/__templates__/vite/scripts/validate.sh +10 -0
- package/lib/cli.js +13 -2
- package/package.json +1 -1
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
declare module "@larksuiteoapi/node-sdk" {
|
|
2
|
+
export enum AppType {
|
|
3
|
+
SelfBuild = "SelfBuild"
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export enum Domain {
|
|
7
|
+
Feishu = "https://open.feishu.cn",
|
|
8
|
+
Lark = "https://open.larksuite.com"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export enum LoggerLevel {
|
|
12
|
+
warn = "warn"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface ClientOptions {
|
|
16
|
+
appId: string;
|
|
17
|
+
appSecret: string;
|
|
18
|
+
appType: AppType;
|
|
19
|
+
domain?: Domain | string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface MessageReplyArgs {
|
|
23
|
+
path: {
|
|
24
|
+
message_id: string;
|
|
25
|
+
};
|
|
26
|
+
data: {
|
|
27
|
+
msg_type: string;
|
|
28
|
+
content: string;
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface MessageReactionCreateArgs {
|
|
33
|
+
path: {
|
|
34
|
+
message_id: string;
|
|
35
|
+
};
|
|
36
|
+
data: {
|
|
37
|
+
reaction_type: {
|
|
38
|
+
emoji_type: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface MessageReactionDeleteArgs {
|
|
44
|
+
path: {
|
|
45
|
+
message_id: string;
|
|
46
|
+
reaction_id: string;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export class Client {
|
|
51
|
+
constructor(options: ClientOptions);
|
|
52
|
+
request(args: {
|
|
53
|
+
method: string;
|
|
54
|
+
url: string;
|
|
55
|
+
data: Record<string, never>;
|
|
56
|
+
}): Promise<{
|
|
57
|
+
bot?: {
|
|
58
|
+
open_id?: string;
|
|
59
|
+
};
|
|
60
|
+
data?: {
|
|
61
|
+
bot?: {
|
|
62
|
+
open_id?: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
}>;
|
|
66
|
+
im: {
|
|
67
|
+
message: {
|
|
68
|
+
reply(args: MessageReplyArgs): Promise<unknown>;
|
|
69
|
+
};
|
|
70
|
+
messageReaction: {
|
|
71
|
+
create(args: MessageReactionCreateArgs): Promise<{
|
|
72
|
+
code?: number;
|
|
73
|
+
msg?: string;
|
|
74
|
+
data?: {
|
|
75
|
+
reaction_id?: string;
|
|
76
|
+
reaction_type?: {
|
|
77
|
+
emoji_type?: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
}>;
|
|
81
|
+
delete(args: MessageReactionDeleteArgs): Promise<{
|
|
82
|
+
code?: number;
|
|
83
|
+
msg?: string;
|
|
84
|
+
data?: {
|
|
85
|
+
reaction_id?: string;
|
|
86
|
+
reaction_type?: {
|
|
87
|
+
emoji_type?: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}>;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export class EventDispatcher {
|
|
96
|
+
constructor(options: {
|
|
97
|
+
encryptKey: string;
|
|
98
|
+
verificationToken: string;
|
|
99
|
+
});
|
|
100
|
+
register(handlers: Record<string, (data: unknown) => Promise<void> | void>): void;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export class WSClient {
|
|
104
|
+
constructor(options: {
|
|
105
|
+
appId: string;
|
|
106
|
+
appSecret: string;
|
|
107
|
+
domain?: Domain | string;
|
|
108
|
+
loggerLevel?: LoggerLevel;
|
|
109
|
+
});
|
|
110
|
+
start(args: { eventDispatcher: EventDispatcher }): Promise<void>;
|
|
111
|
+
close(args?: { force?: boolean }): void;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -7,6 +7,7 @@ build = ["bash", ".cozeproj/scripts/dev_build.sh"]
|
|
|
7
7
|
run = ["bash", ".cozeproj/scripts/dev_run.sh"]
|
|
8
8
|
deps = ["git"] # -> apt install git
|
|
9
9
|
pack = ["bash", ".cozeproj/scripts/pack.sh"]
|
|
10
|
+
validate = ["bash", ".cozeproj/scripts/validate.sh"]
|
|
10
11
|
|
|
11
12
|
[deploy]
|
|
12
13
|
build = ["bash", ".cozeproj/scripts/deploy_build.sh"]
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"postinstall": "weapp-tw patch",
|
|
20
20
|
"kill:all": "pkill -9 -f 'concurrently' 2>/dev/null || true; pkill -9 -f 'nest start' 2>/dev/null || true; pkill -9 -f 'taro build' 2>/dev/null || true; pkill -9 -f 'node.*dev' 2>/dev/null || true; echo 'All dev processes cleaned'",
|
|
21
21
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\"",
|
|
22
|
-
"lint:build": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\" --max-warnings=0",
|
|
22
|
+
"lint:build": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\" --max-warnings=0 --quiet",
|
|
23
23
|
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\" --fix",
|
|
24
24
|
"new": "taro new",
|
|
25
25
|
"preview:tt": "taro build --type tt --preview",
|
|
@@ -95,31 +95,23 @@
|
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
|
-
"name": "
|
|
99
|
-
"description": "
|
|
100
|
-
"location": "./
|
|
98
|
+
"name": "pi-agent",
|
|
99
|
+
"description": "Pi Agent:`coze init ${COZE_WORKSPACE_PATH} --template pi-agent`\n- 适用:基于 pi-agent-core 的 AI Agent 应用\n- 支持飞书、微信等多渠道接入\n- 内置 Dashboard 管理面板\n- 使用 TypeScript + Express + Vite",
|
|
100
|
+
"location": "./pi-agent",
|
|
101
101
|
"paramsSchema": {
|
|
102
102
|
"type": "object",
|
|
103
103
|
"properties": {
|
|
104
|
-
"appName": {
|
|
105
|
-
"type": "string",
|
|
106
|
-
"minLength": 1,
|
|
107
|
-
"pattern": "^[a-z0-9-]+$",
|
|
108
|
-
"description": "Application name (lowercase, alphanumeric and hyphens only)"
|
|
109
|
-
},
|
|
110
104
|
"port": {
|
|
111
105
|
"type": "number",
|
|
112
106
|
"default": 5000,
|
|
113
107
|
"minimum": 1024,
|
|
114
108
|
"maximum": 65535,
|
|
115
|
-
"description": "
|
|
109
|
+
"description": "Dashboard server port"
|
|
116
110
|
},
|
|
117
|
-
"
|
|
118
|
-
"type": "
|
|
119
|
-
"default":
|
|
120
|
-
"
|
|
121
|
-
"maximum": 65535,
|
|
122
|
-
"description": "NestJS backend server port"
|
|
111
|
+
"workspaceDir": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"default": "/workspace/workspace",
|
|
114
|
+
"description": "Workspace directory path"
|
|
123
115
|
}
|
|
124
116
|
},
|
|
125
117
|
"required": [],
|
|
@@ -127,9 +119,9 @@
|
|
|
127
119
|
}
|
|
128
120
|
},
|
|
129
121
|
{
|
|
130
|
-
"name": "
|
|
131
|
-
"description": "
|
|
132
|
-
"location": "./
|
|
122
|
+
"name": "taro",
|
|
123
|
+
"description": "Taro(小程序 + H5):`coze init ${COZE_WORKSPACE_PATH} --template taro`\n- 适用:微信小程序、H5 跨端应用\n- 前后端分离架构:Taro 4 + NestJS\n- 支持微信小程序和 H5 双端构建\n- 使用 TailwindCSS + weapp-tailwindcss 实现跨端样式",
|
|
124
|
+
"location": "./taro",
|
|
133
125
|
"paramsSchema": {
|
|
134
126
|
"type": "object",
|
|
135
127
|
"properties": {
|
|
@@ -144,19 +136,14 @@
|
|
|
144
136
|
"default": 5000,
|
|
145
137
|
"minimum": 1024,
|
|
146
138
|
"maximum": 65535,
|
|
147
|
-
"description": "
|
|
148
|
-
},
|
|
149
|
-
"includeTests": {
|
|
150
|
-
"type": "boolean",
|
|
151
|
-
"default": true,
|
|
152
|
-
"nullable": true,
|
|
153
|
-
"description": "Include test files"
|
|
139
|
+
"description": "H5 development server port"
|
|
154
140
|
},
|
|
155
|
-
"
|
|
156
|
-
"type": "
|
|
157
|
-
"default":
|
|
158
|
-
"
|
|
159
|
-
"
|
|
141
|
+
"serverPort": {
|
|
142
|
+
"type": "number",
|
|
143
|
+
"default": 3000,
|
|
144
|
+
"minimum": 1024,
|
|
145
|
+
"maximum": 65535,
|
|
146
|
+
"description": "NestJS backend server port"
|
|
160
147
|
}
|
|
161
148
|
},
|
|
162
149
|
"required": [],
|
|
@@ -7,8 +7,10 @@
|
|
|
7
7
|
"dev": "bash ./scripts/dev.sh",
|
|
8
8
|
"preinstall": "npx only-allow pnpm",
|
|
9
9
|
"lint": "eslint",
|
|
10
|
+
"lint:build": "eslint . --quiet",
|
|
10
11
|
"start": "bash ./scripts/start.sh",
|
|
11
|
-
"ts-check": "tsc -p tsconfig.json"
|
|
12
|
+
"ts-check": "tsc -p tsconfig.json",
|
|
13
|
+
"validate": "pnpm run --parallel '/^(ts-check|lint:build)$/'"
|
|
12
14
|
},
|
|
13
15
|
"dependencies": {
|
|
14
16
|
"@supabase/supabase-js": "2.95.3",
|
package/lib/cli.js
CHANGED
|
@@ -2107,7 +2107,7 @@ const EventBuilder = {
|
|
|
2107
2107
|
};
|
|
2108
2108
|
|
|
2109
2109
|
var name = "@coze-arch/cli";
|
|
2110
|
-
var version = "0.0.
|
|
2110
|
+
var version = "0.0.19-beta.1";
|
|
2111
2111
|
var description = "coze coding devtools cli";
|
|
2112
2112
|
var license = "MIT";
|
|
2113
2113
|
var author = "fanwenjie.fe@bytedance.com";
|
|
@@ -5985,7 +5985,6 @@ const getCommandConfig = (
|
|
|
5985
5985
|
) => {
|
|
5986
5986
|
let commandConfig;
|
|
5987
5987
|
|
|
5988
|
-
// 根据命令名称映射到配置路径
|
|
5989
5988
|
switch (commandName) {
|
|
5990
5989
|
case 'dev':
|
|
5991
5990
|
commandConfig = _optionalChain$4([config, 'access', _ => _.dev, 'optionalAccess', _2 => _2.run]);
|
|
@@ -5996,6 +5995,9 @@ const getCommandConfig = (
|
|
|
5996
5995
|
case 'start':
|
|
5997
5996
|
commandConfig = _optionalChain$4([config, 'access', _5 => _5.deploy, 'optionalAccess', _6 => _6.run]);
|
|
5998
5997
|
break;
|
|
5998
|
+
case 'validate':
|
|
5999
|
+
commandConfig = _optionalChain$4([config, 'access', _7 => _7.dev, 'optionalAccess', _8 => _8.validate]);
|
|
6000
|
+
break;
|
|
5999
6001
|
default:
|
|
6000
6002
|
throw new Error(`Unknown command: ${commandName}`);
|
|
6001
6003
|
}
|
|
@@ -7100,6 +7102,15 @@ const registerCommand$3 = program => {
|
|
|
7100
7102
|
.action(async options => {
|
|
7101
7103
|
await executeRun('start', options);
|
|
7102
7104
|
});
|
|
7105
|
+
|
|
7106
|
+
// validate 命令
|
|
7107
|
+
program
|
|
7108
|
+
.command('validate')
|
|
7109
|
+
.description('Validate project (lint + type check)')
|
|
7110
|
+
.option('--log-file <path>', 'Log file path')
|
|
7111
|
+
.action(async options => {
|
|
7112
|
+
await executeRun('validate', options);
|
|
7113
|
+
});
|
|
7103
7114
|
};
|
|
7104
7115
|
|
|
7105
7116
|
// ABOUTME: Nuxt route scanner
|