@my-life-buddies/cli 0.15.1 → 0.17.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 +37 -40
- package/dist/bin/buddy.js +214 -35
- package/dist/bin/buddy.js.map +4 -4
- package/dist/bin/core.js +258 -259
- package/dist/bin/core.js.map +4 -4
- package/dist/bin/preview.js +1 -3
- package/dist/bin/preview.js.map +2 -2
- package/dist/web/app.js +2 -2
- package/package.json +3 -3
- package/resources/agent-template/package-lock.json +4 -6
- package/resources/agent-template/package.json +1 -2
package/dist/web/app.js
CHANGED
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
const note = document.querySelector(".preview-note");
|
|
245
245
|
if (note) note.textContent = buddy ? (buddy.isDev ? "开发预览版 · 仅你可见" : "搭搭 App") : "搭搭 App · DEV";
|
|
246
246
|
elements.environmentRuntime.textContent = "Node.js · Buddy Runtime";
|
|
247
|
-
elements.environmentModel.textContent = state.project.model || "
|
|
247
|
+
elements.environmentModel.textContent = state.project.model || "由业务代码选择";
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
let pairingRevision = -1;
|
|
@@ -794,7 +794,7 @@
|
|
|
794
794
|
class: "pairing-qr", src: pairing.qrCodeDataUrl, width: "256", height: "256", alt: "打开当前开发版搭子的二维码",
|
|
795
795
|
}));
|
|
796
796
|
copy.append(node("p", { class: "pairing-status" }, "真机入口已准备好"));
|
|
797
|
-
copy.append(node("p", { class: "pairing-hint" }, "使用支持 App 链接的扫码工具打开。手机需安装支持预览入口的搭搭 App
|
|
797
|
+
copy.append(node("p", { class: "pairing-hint" }, "使用支持 App 链接的扫码工具打开。手机需安装支持预览入口的搭搭 App,并登录同一创造者账号。"));
|
|
798
798
|
if (pairing.code) copy.append(node("p", { class: "pairing-code" }, pairing.code));
|
|
799
799
|
const link = node("a", { class: "pairing-link", href: pairing.url }, pairing.url);
|
|
800
800
|
copy.append(link);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@my-life-buddies/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "搭搭 Developer Platform 命令行工具",
|
|
6
6
|
"publishConfig": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"ws": "8.21.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@buddy/cli-core": "0.
|
|
43
|
-
"@buddy/preview": "0.
|
|
42
|
+
"@buddy/cli-core": "0.17.0",
|
|
43
|
+
"@buddy/preview": "0.17.0"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "buddy-agent-project",
|
|
3
2
|
"version": "0.0.0",
|
|
4
3
|
"lockfileVersion": 3,
|
|
5
4
|
"requires": true,
|
|
6
5
|
"packages": {
|
|
7
6
|
"": {
|
|
8
|
-
"name": "buddy-agent-project",
|
|
9
7
|
"version": "0.0.0",
|
|
10
8
|
"dependencies": {
|
|
11
|
-
"@my-life-buddies/buddy-runtime": "0.
|
|
9
|
+
"@my-life-buddies/buddy-runtime": "0.17.0",
|
|
12
10
|
"typebox": "1.3.7"
|
|
13
11
|
},
|
|
14
12
|
"engines": {
|
|
@@ -981,9 +979,9 @@
|
|
|
981
979
|
}
|
|
982
980
|
},
|
|
983
981
|
"node_modules/@my-life-buddies/buddy-runtime": {
|
|
984
|
-
"version": "0.
|
|
985
|
-
"resolved": "https://registry.npmjs.org/@my-life-buddies/buddy-runtime/-/buddy-runtime-0.
|
|
986
|
-
"integrity": "sha512-
|
|
982
|
+
"version": "0.17.0",
|
|
983
|
+
"resolved": "https://registry.npmjs.org/@my-life-buddies/buddy-runtime/-/buddy-runtime-0.17.0.tgz",
|
|
984
|
+
"integrity": "sha512-mhA8iNvdDcxOrhcZ1TjyZBrGkyosxbPzT2+GJKQMJD/PMGXmxGolsdRTpGQA75DOlHsZJf3/dG+OfP18H6VEZg==",
|
|
987
985
|
"dependencies": {
|
|
988
986
|
"@earendil-works/pi-agent-core": "0.85.1",
|
|
989
987
|
"@earendil-works/pi-ai": "0.85.1",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "buddy-agent-project",
|
|
3
2
|
"version": "0.0.0",
|
|
4
3
|
"private": true,
|
|
5
4
|
"type": "module",
|
|
@@ -10,7 +9,7 @@
|
|
|
10
9
|
"node": ">=24"
|
|
11
10
|
},
|
|
12
11
|
"dependencies": {
|
|
13
|
-
"@my-life-buddies/buddy-runtime": "0.
|
|
12
|
+
"@my-life-buddies/buddy-runtime": "0.17.0",
|
|
14
13
|
"typebox": "1.3.7"
|
|
15
14
|
}
|
|
16
15
|
}
|