@clawos-dev/clawd 0.2.12 → 0.2.13-beta.14.45046af
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 +13 -10
- package/package.json +2 -1
package/dist/cli.cjs
CHANGED
|
@@ -8165,6 +8165,18 @@ var METHOD_NAMES = [
|
|
|
8165
8165
|
"ping"
|
|
8166
8166
|
];
|
|
8167
8167
|
|
|
8168
|
+
// ../protocol/src/events.ts
|
|
8169
|
+
var HISTORY_USER_META_VALUES = [
|
|
8170
|
+
"task-notification",
|
|
8171
|
+
"slash-command",
|
|
8172
|
+
"local-command",
|
|
8173
|
+
"system-reminder",
|
|
8174
|
+
"skill-hint",
|
|
8175
|
+
"meta-text",
|
|
8176
|
+
"attachment-skills",
|
|
8177
|
+
"attachment-deferred-tools"
|
|
8178
|
+
];
|
|
8179
|
+
|
|
8168
8180
|
// ../protocol/src/errors.ts
|
|
8169
8181
|
var ERROR_CODES = {
|
|
8170
8182
|
SESSION_NOT_FOUND: "SESSION_NOT_FOUND",
|
|
@@ -12326,16 +12338,7 @@ var ParsedEventBase = {
|
|
|
12326
12338
|
// reducer 用它做跨路径去重(managed stdout 和 observer JSONL 双写)。对齐 cc-direct cc-event-store
|
|
12327
12339
|
uuid: external_exports.string().optional()
|
|
12328
12340
|
};
|
|
12329
|
-
var HistoryUserMetaSchema = external_exports.enum(
|
|
12330
|
-
"task-notification",
|
|
12331
|
-
"slash-command",
|
|
12332
|
-
"local-command",
|
|
12333
|
-
"system-reminder",
|
|
12334
|
-
"skill-hint",
|
|
12335
|
-
"meta-text",
|
|
12336
|
-
"attachment-skills",
|
|
12337
|
-
"attachment-deferred-tools"
|
|
12338
|
-
]);
|
|
12341
|
+
var HistoryUserMetaSchema = external_exports.enum(HISTORY_USER_META_VALUES);
|
|
12339
12342
|
var SubagentToolStatsSchema = external_exports.object({
|
|
12340
12343
|
readCount: external_exports.number().int().nonnegative().optional(),
|
|
12341
12344
|
searchCount: external_exports.number().int().nonnegative().optional(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clawos-dev/clawd",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13-beta.14.45046af",
|
|
4
4
|
"description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"dev:watch": "tsx watch --clear-screen=false src/cli.ts",
|
|
23
23
|
"test": "vitest run",
|
|
24
24
|
"test:watch": "vitest",
|
|
25
|
+
"test:changed": "vitest run --changed origin/release",
|
|
25
26
|
"depcruise": "depcruise --config .dependency-cruiser.cjs src"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|