@clawos-dev/clawd 0.2.148 → 0.2.149-beta.315.fe63177
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/dist/cli.cjs +17 -7
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -35558,34 +35558,41 @@ var fs9 = __toESM(require("fs"), 1);
|
|
|
35558
35558
|
var path11 = __toESM(require("path"), 1);
|
|
35559
35559
|
var import_node_url = require("url");
|
|
35560
35560
|
var import_meta = {};
|
|
35561
|
+
var DEFAULT_BYPASS_PROFILE = {
|
|
35562
|
+
permissions: { defaultMode: "bypassPermissions" }
|
|
35563
|
+
};
|
|
35561
35564
|
var DEFAULT_PERSONAS = [
|
|
35562
35565
|
{
|
|
35563
35566
|
personaId: "persona-researcher",
|
|
35564
35567
|
label: "\u8C03\u7814\u5458",
|
|
35565
35568
|
model: "opus",
|
|
35566
35569
|
iconKey: "research",
|
|
35567
|
-
public: false
|
|
35570
|
+
public: false,
|
|
35571
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35568
35572
|
},
|
|
35569
35573
|
{
|
|
35570
35574
|
personaId: "persona-knowledge-base",
|
|
35571
35575
|
label: "\u77E5\u8BC6\u5E93\u7BA1\u7406\u5458",
|
|
35572
35576
|
model: "opus",
|
|
35573
35577
|
iconKey: "reading",
|
|
35574
|
-
public: false
|
|
35578
|
+
public: false,
|
|
35579
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35575
35580
|
},
|
|
35576
35581
|
{
|
|
35577
35582
|
personaId: "persona-clawd-helper",
|
|
35578
35583
|
label: "clawd\u4F7F\u7528\u52A9\u624B",
|
|
35579
35584
|
model: "opus",
|
|
35580
35585
|
iconKey: "assist",
|
|
35581
|
-
public: false
|
|
35586
|
+
public: false,
|
|
35587
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35582
35588
|
},
|
|
35583
35589
|
{
|
|
35584
35590
|
personaId: "persona-feishu-assistant",
|
|
35585
35591
|
label: "\u98DE\u4E66\u52A9\u7406",
|
|
35586
35592
|
model: "opus",
|
|
35587
35593
|
iconKey: "assist",
|
|
35588
|
-
public: false
|
|
35594
|
+
public: false,
|
|
35595
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35589
35596
|
},
|
|
35590
35597
|
{
|
|
35591
35598
|
// app-builder:全栈应用搭建师,绑 extension-kit 模板 + multi-project picker
|
|
@@ -35669,14 +35676,16 @@ var DEFAULT_PERSONAS = [
|
|
|
35669
35676
|
label: "\u5F00\u53D1\u8005",
|
|
35670
35677
|
model: "opus",
|
|
35671
35678
|
iconKey: "code",
|
|
35672
|
-
public: false
|
|
35679
|
+
public: false,
|
|
35680
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35673
35681
|
},
|
|
35674
35682
|
{
|
|
35675
35683
|
personaId: "persona-bug-fixer",
|
|
35676
35684
|
label: "Bug \u4FEE\u590D\u5E08",
|
|
35677
35685
|
model: "opus",
|
|
35678
35686
|
iconKey: "debug",
|
|
35679
|
-
public: false
|
|
35687
|
+
public: false,
|
|
35688
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35680
35689
|
},
|
|
35681
35690
|
{
|
|
35682
35691
|
// HTML PPT 制作师:把想法/文字/旧 PPT 转成单文件 HTML 演示稿
|
|
@@ -35685,7 +35694,8 @@ var DEFAULT_PERSONAS = [
|
|
|
35685
35694
|
label: "HTML PPT \u5236\u4F5C\u5E08",
|
|
35686
35695
|
model: "opus",
|
|
35687
35696
|
iconKey: "doc",
|
|
35688
|
-
public: false
|
|
35697
|
+
public: false,
|
|
35698
|
+
sandboxProfile: DEFAULT_BYPASS_PROFILE
|
|
35689
35699
|
}
|
|
35690
35700
|
];
|
|
35691
35701
|
function bundleSiblingFromArgv(argv1, sibling) {
|
package/package.json
CHANGED