@parall/daemon 1.57.1 → 1.57.2
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/bundle/manifest.json +11 -11
- package/bundle/parall-browser-pod.js +22 -2
- package/bundle/parall-claude-agent.js +28 -2
- package/bundle/parall-codex-agent.js +28 -2
- package/bundle/parall-daemon.js +22 -2
- package/package.json +6 -6
package/bundle/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.57.
|
|
3
|
-
"built_at": "2026-08-
|
|
2
|
+
"version": "1.57.2",
|
|
3
|
+
"built_at": "2026-08-26T07:35:41.010Z",
|
|
4
4
|
"min_node_version": "20.0.0",
|
|
5
5
|
"files": {
|
|
6
6
|
"bb-browser-daemon.js": {
|
|
@@ -16,29 +16,29 @@
|
|
|
16
16
|
"size": 18
|
|
17
17
|
},
|
|
18
18
|
"parall-browser-pod.js": {
|
|
19
|
-
"sha256": "
|
|
20
|
-
"size":
|
|
19
|
+
"sha256": "81a136935d0fa9ded798144cda124e4de3c3d22d2c24d2af0a2105365b3c3891",
|
|
20
|
+
"size": 2969047
|
|
21
21
|
},
|
|
22
22
|
"parall-channel-exec.js": {
|
|
23
23
|
"sha256": "7c2a6e12483a45e9eb4a42cd7d4cdd3c4fa21dd09ac1347d9a3e177b4ddee930",
|
|
24
24
|
"size": 7220
|
|
25
25
|
},
|
|
26
26
|
"parall-claude-agent.js": {
|
|
27
|
-
"sha256": "
|
|
28
|
-
"size":
|
|
27
|
+
"sha256": "abca61cfc6fa086584781ffc300f493b8fe818b168da379dd0638afa9582d9db",
|
|
28
|
+
"size": 2849176
|
|
29
29
|
},
|
|
30
30
|
"parall-codex-agent.js": {
|
|
31
|
-
"sha256": "
|
|
32
|
-
"size":
|
|
31
|
+
"sha256": "0f41b9dd43be175c6f7e5a8989f799004588732d2a81674656add743c524ea11",
|
|
32
|
+
"size": 2881123
|
|
33
33
|
},
|
|
34
34
|
"parall-daemon.js": {
|
|
35
|
-
"sha256": "
|
|
36
|
-
"size":
|
|
35
|
+
"sha256": "79e558e4e69e73db93029418e82c607dcb18e9d1891342a974af7c1f35f9cec6",
|
|
36
|
+
"size": 3037422
|
|
37
37
|
},
|
|
38
38
|
"parall-openclaw-agent.js": {
|
|
39
39
|
"sha256": "856a1c3a9ae0ffef8efe2481fa1171dbeb1d67cccb88616aa9bf16da96a69355",
|
|
40
40
|
"size": 9923
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"signature": "
|
|
43
|
+
"signature": "s7/Y06qvTX2tprHtamtkdVNBDk1CBafGArPkoJDAKbO6gNrcSYcONmDGpP0/gcHvLTeuabt82mW5mGRE9Pq8Bg=="
|
|
44
44
|
}
|
|
@@ -63823,6 +63823,7 @@ var ENDPOINTS = {
|
|
|
63823
63823
|
WIKI: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}`,
|
|
63824
63824
|
WIKI_RESTORE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restore`,
|
|
63825
63825
|
WIKI_TREE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree`,
|
|
63826
|
+
WIKI_TREE_LAST_COMMITS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree/last-commits`,
|
|
63826
63827
|
WIKI_BLOB: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/blob`,
|
|
63827
63828
|
WIKI_COPY: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/copy`,
|
|
63828
63829
|
WIKI_NODE_SECTIONS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/node-sections`,
|
|
@@ -65873,8 +65874,27 @@ var ParallClient = class _ParallClient extends AttachmentClient {
|
|
|
65873
65874
|
const res = await this.request("GET", ENDPOINTS.WIKIS_DELETED(orgId));
|
|
65874
65875
|
return res.data;
|
|
65875
65876
|
}
|
|
65876
|
-
|
|
65877
|
-
|
|
65877
|
+
/**
|
|
65878
|
+
* List the direct children of a wiki directory. The response carries
|
|
65879
|
+
* `head_sha`, the immutable commit it was read at; render the rows first
|
|
65880
|
+
* and fetch their dates with `getWikiTreeLastCommits` pinned to it.
|
|
65881
|
+
* `last_commit: true` is the legacy single-request form (dates composed
|
|
65882
|
+
* server-side); prefer the two-phase flow so the structure is never held
|
|
65883
|
+
* back by history reads. Pass `signal` to abort on navigation.
|
|
65884
|
+
*/
|
|
65885
|
+
async getWikiTree(orgId, wikiId, params, opts) {
|
|
65886
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE(orgId, wikiId), void 0, params, false, opts);
|
|
65887
|
+
}
|
|
65888
|
+
/**
|
|
65889
|
+
* Second phase of a directory listing: last-commit dates for the direct
|
|
65890
|
+
* children of `path` at `ref`, which must be the `head_sha` a
|
|
65891
|
+
* `getWikiTree` response carried (a branch name is rejected). Merge the
|
|
65892
|
+
* dates only while the returned `head_sha` still matches the rows on
|
|
65893
|
+
* screen; a failure just leaves the dates blank. Pass `signal` to abort
|
|
65894
|
+
* on navigation.
|
|
65895
|
+
*/
|
|
65896
|
+
async getWikiTreeLastCommits(orgId, wikiId, params, opts) {
|
|
65897
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE_LAST_COMMITS(orgId, wikiId), void 0, params, false, opts);
|
|
65878
65898
|
}
|
|
65879
65899
|
/**
|
|
65880
65900
|
* Resolve a server-returned, host-relative media URL (a wiki `signed_url`
|
|
@@ -51487,6 +51487,9 @@ function formatApprovalDecisionReason(status, reason) {
|
|
|
51487
51487
|
return "";
|
|
51488
51488
|
return `Reason (JSON): ${JSON.stringify(normalized)}`;
|
|
51489
51489
|
}
|
|
51490
|
+
function threadWatcherHint(threadRootId) {
|
|
51491
|
+
return `[Hint: watcher \u2014 you were not addressed in this reply. Reply only if you add something new; otherwise run \`parall no-reply\`. If this thread is not relevant to you, or you have nothing more to contribute, run \`parall messages unwatch prll://${threadRootId}\` so later replies stop waking you.]`;
|
|
51492
|
+
}
|
|
51490
51493
|
function buildEventBody(event) {
|
|
51491
51494
|
const lines = [];
|
|
51492
51495
|
if (event.type === "message") {
|
|
@@ -51506,6 +51509,9 @@ function buildEventBody(event) {
|
|
|
51506
51509
|
}
|
|
51507
51510
|
if (event.deliveryReason)
|
|
51508
51511
|
lines.push(`[Delivery: ${sanitizeMeta(event.deliveryReason)}]`);
|
|
51512
|
+
if (event.deliveryReason === "watcher" && event.threadRootId) {
|
|
51513
|
+
lines.push(threadWatcherHint(sanitizeMeta(event.threadRootId)));
|
|
51514
|
+
}
|
|
51509
51515
|
if (event.unreadCount != null && event.unreadCount > 1) {
|
|
51510
51516
|
const countStr = event.unreadCount >= 1e3 ? "999+" : String(event.unreadCount);
|
|
51511
51517
|
const sinceStr = event.unreadSince ? ` | since: prll://${event.unreadSince}` : "";
|
|
@@ -52002,6 +52008,7 @@ var ENDPOINTS = {
|
|
|
52002
52008
|
WIKI: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}`,
|
|
52003
52009
|
WIKI_RESTORE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restore`,
|
|
52004
52010
|
WIKI_TREE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree`,
|
|
52011
|
+
WIKI_TREE_LAST_COMMITS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree/last-commits`,
|
|
52005
52012
|
WIKI_BLOB: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/blob`,
|
|
52006
52013
|
WIKI_COPY: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/copy`,
|
|
52007
52014
|
WIKI_NODE_SECTIONS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/node-sections`,
|
|
@@ -54143,8 +54150,27 @@ var ParallClient = class _ParallClient extends AttachmentClient {
|
|
|
54143
54150
|
const res = await this.request("GET", ENDPOINTS.WIKIS_DELETED(orgId));
|
|
54144
54151
|
return res.data;
|
|
54145
54152
|
}
|
|
54146
|
-
|
|
54147
|
-
|
|
54153
|
+
/**
|
|
54154
|
+
* List the direct children of a wiki directory. The response carries
|
|
54155
|
+
* `head_sha`, the immutable commit it was read at; render the rows first
|
|
54156
|
+
* and fetch their dates with `getWikiTreeLastCommits` pinned to it.
|
|
54157
|
+
* `last_commit: true` is the legacy single-request form (dates composed
|
|
54158
|
+
* server-side); prefer the two-phase flow so the structure is never held
|
|
54159
|
+
* back by history reads. Pass `signal` to abort on navigation.
|
|
54160
|
+
*/
|
|
54161
|
+
async getWikiTree(orgId, wikiId, params, opts) {
|
|
54162
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE(orgId, wikiId), void 0, params, false, opts);
|
|
54163
|
+
}
|
|
54164
|
+
/**
|
|
54165
|
+
* Second phase of a directory listing: last-commit dates for the direct
|
|
54166
|
+
* children of `path` at `ref`, which must be the `head_sha` a
|
|
54167
|
+
* `getWikiTree` response carried (a branch name is rejected). Merge the
|
|
54168
|
+
* dates only while the returned `head_sha` still matches the rows on
|
|
54169
|
+
* screen; a failure just leaves the dates blank. Pass `signal` to abort
|
|
54170
|
+
* on navigation.
|
|
54171
|
+
*/
|
|
54172
|
+
async getWikiTreeLastCommits(orgId, wikiId, params, opts) {
|
|
54173
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE_LAST_COMMITS(orgId, wikiId), void 0, params, false, opts);
|
|
54148
54174
|
}
|
|
54149
54175
|
/**
|
|
54150
54176
|
* Resolve a server-returned, host-relative media URL (a wiki `signed_url`
|
|
@@ -51487,6 +51487,9 @@ function formatApprovalDecisionReason(status, reason) {
|
|
|
51487
51487
|
return "";
|
|
51488
51488
|
return `Reason (JSON): ${JSON.stringify(normalized)}`;
|
|
51489
51489
|
}
|
|
51490
|
+
function threadWatcherHint(threadRootId) {
|
|
51491
|
+
return `[Hint: watcher \u2014 you were not addressed in this reply. Reply only if you add something new; otherwise run \`parall no-reply\`. If this thread is not relevant to you, or you have nothing more to contribute, run \`parall messages unwatch prll://${threadRootId}\` so later replies stop waking you.]`;
|
|
51492
|
+
}
|
|
51490
51493
|
function buildEventBody(event) {
|
|
51491
51494
|
const lines = [];
|
|
51492
51495
|
if (event.type === "message") {
|
|
@@ -51506,6 +51509,9 @@ function buildEventBody(event) {
|
|
|
51506
51509
|
}
|
|
51507
51510
|
if (event.deliveryReason)
|
|
51508
51511
|
lines.push(`[Delivery: ${sanitizeMeta(event.deliveryReason)}]`);
|
|
51512
|
+
if (event.deliveryReason === "watcher" && event.threadRootId) {
|
|
51513
|
+
lines.push(threadWatcherHint(sanitizeMeta(event.threadRootId)));
|
|
51514
|
+
}
|
|
51509
51515
|
if (event.unreadCount != null && event.unreadCount > 1) {
|
|
51510
51516
|
const countStr = event.unreadCount >= 1e3 ? "999+" : String(event.unreadCount);
|
|
51511
51517
|
const sinceStr = event.unreadSince ? ` | since: prll://${event.unreadSince}` : "";
|
|
@@ -52002,6 +52008,7 @@ var ENDPOINTS = {
|
|
|
52002
52008
|
WIKI: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}`,
|
|
52003
52009
|
WIKI_RESTORE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restore`,
|
|
52004
52010
|
WIKI_TREE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree`,
|
|
52011
|
+
WIKI_TREE_LAST_COMMITS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree/last-commits`,
|
|
52005
52012
|
WIKI_BLOB: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/blob`,
|
|
52006
52013
|
WIKI_COPY: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/copy`,
|
|
52007
52014
|
WIKI_NODE_SECTIONS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/node-sections`,
|
|
@@ -54143,8 +54150,27 @@ var ParallClient = class _ParallClient extends AttachmentClient {
|
|
|
54143
54150
|
const res = await this.request("GET", ENDPOINTS.WIKIS_DELETED(orgId));
|
|
54144
54151
|
return res.data;
|
|
54145
54152
|
}
|
|
54146
|
-
|
|
54147
|
-
|
|
54153
|
+
/**
|
|
54154
|
+
* List the direct children of a wiki directory. The response carries
|
|
54155
|
+
* `head_sha`, the immutable commit it was read at; render the rows first
|
|
54156
|
+
* and fetch their dates with `getWikiTreeLastCommits` pinned to it.
|
|
54157
|
+
* `last_commit: true` is the legacy single-request form (dates composed
|
|
54158
|
+
* server-side); prefer the two-phase flow so the structure is never held
|
|
54159
|
+
* back by history reads. Pass `signal` to abort on navigation.
|
|
54160
|
+
*/
|
|
54161
|
+
async getWikiTree(orgId, wikiId, params, opts) {
|
|
54162
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE(orgId, wikiId), void 0, params, false, opts);
|
|
54163
|
+
}
|
|
54164
|
+
/**
|
|
54165
|
+
* Second phase of a directory listing: last-commit dates for the direct
|
|
54166
|
+
* children of `path` at `ref`, which must be the `head_sha` a
|
|
54167
|
+
* `getWikiTree` response carried (a branch name is rejected). Merge the
|
|
54168
|
+
* dates only while the returned `head_sha` still matches the rows on
|
|
54169
|
+
* screen; a failure just leaves the dates blank. Pass `signal` to abort
|
|
54170
|
+
* on navigation.
|
|
54171
|
+
*/
|
|
54172
|
+
async getWikiTreeLastCommits(orgId, wikiId, params, opts) {
|
|
54173
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE_LAST_COMMITS(orgId, wikiId), void 0, params, false, opts);
|
|
54148
54174
|
}
|
|
54149
54175
|
/**
|
|
54150
54176
|
* Resolve a server-returned, host-relative media URL (a wiki `signed_url`
|
package/bundle/parall-daemon.js
CHANGED
|
@@ -492,6 +492,7 @@ var init_constants = __esm({
|
|
|
492
492
|
WIKI: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}`,
|
|
493
493
|
WIKI_RESTORE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restore`,
|
|
494
494
|
WIKI_TREE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree`,
|
|
495
|
+
WIKI_TREE_LAST_COMMITS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/tree/last-commits`,
|
|
495
496
|
WIKI_BLOB: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/blob`,
|
|
496
497
|
WIKI_COPY: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/copy`,
|
|
497
498
|
WIKI_NODE_SECTIONS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/node-sections`,
|
|
@@ -2723,8 +2724,27 @@ var init_client = __esm({
|
|
|
2723
2724
|
const res = await this.request("GET", ENDPOINTS.WIKIS_DELETED(orgId));
|
|
2724
2725
|
return res.data;
|
|
2725
2726
|
}
|
|
2726
|
-
|
|
2727
|
-
|
|
2727
|
+
/**
|
|
2728
|
+
* List the direct children of a wiki directory. The response carries
|
|
2729
|
+
* `head_sha`, the immutable commit it was read at; render the rows first
|
|
2730
|
+
* and fetch their dates with `getWikiTreeLastCommits` pinned to it.
|
|
2731
|
+
* `last_commit: true` is the legacy single-request form (dates composed
|
|
2732
|
+
* server-side); prefer the two-phase flow so the structure is never held
|
|
2733
|
+
* back by history reads. Pass `signal` to abort on navigation.
|
|
2734
|
+
*/
|
|
2735
|
+
async getWikiTree(orgId, wikiId, params, opts) {
|
|
2736
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE(orgId, wikiId), void 0, params, false, opts);
|
|
2737
|
+
}
|
|
2738
|
+
/**
|
|
2739
|
+
* Second phase of a directory listing: last-commit dates for the direct
|
|
2740
|
+
* children of `path` at `ref`, which must be the `head_sha` a
|
|
2741
|
+
* `getWikiTree` response carried (a branch name is rejected). Merge the
|
|
2742
|
+
* dates only while the returned `head_sha` still matches the rows on
|
|
2743
|
+
* screen; a failure just leaves the dates blank. Pass `signal` to abort
|
|
2744
|
+
* on navigation.
|
|
2745
|
+
*/
|
|
2746
|
+
async getWikiTreeLastCommits(orgId, wikiId, params, opts) {
|
|
2747
|
+
return this.request("GET", ENDPOINTS.WIKI_TREE_LAST_COMMITS(orgId, wikiId), void 0, params, false, opts);
|
|
2728
2748
|
}
|
|
2729
2749
|
/**
|
|
2730
2750
|
* Resolve a server-returned, host-relative media URL (a wiki `signed_url`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/daemon",
|
|
3
|
-
"version": "1.57.
|
|
3
|
+
"version": "1.57.2",
|
|
4
4
|
"description": "Parall local agent runtime — daemon supervisor + bridge runtimes, bundled as standalone JS files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"@aws-sdk/client-s3": "3.984.0",
|
|
34
34
|
"@pinixai/bb-browser-pro": "0.15.0",
|
|
35
35
|
"ws": "^8.18.0",
|
|
36
|
-
"@parall/agent-core": "1.57.
|
|
37
|
-
"@parall/sdk": "1.57.
|
|
38
|
-
"@parall/
|
|
39
|
-
"@parall/
|
|
40
|
-
"@parall/
|
|
36
|
+
"@parall/agent-core": "1.57.2",
|
|
37
|
+
"@parall/sdk": "1.57.2",
|
|
38
|
+
"@parall/codex-agent": "1.57.2",
|
|
39
|
+
"@parall/claude-agent": "1.57.2",
|
|
40
|
+
"@parall/openclaw-agent": "1.57.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^22.0.0",
|