@parall/cli 1.12.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/dist/commands/agents.d.ts +3 -0
- package/dist/commands/agents.d.ts.map +1 -0
- package/dist/commands/agents.js +18 -0
- package/dist/commands/chats.d.ts +3 -0
- package/dist/commands/chats.d.ts.map +1 -0
- package/dist/commands/chats.js +105 -0
- package/dist/commands/dm.d.ts +3 -0
- package/dist/commands/dm.d.ts.map +1 -0
- package/dist/commands/dm.js +51 -0
- package/dist/commands/mcp.d.ts +3 -0
- package/dist/commands/mcp.d.ts.map +1 -0
- package/dist/commands/mcp.js +439 -0
- package/dist/commands/messages.d.ts +3 -0
- package/dist/commands/messages.d.ts.map +1 -0
- package/dist/commands/messages.js +102 -0
- package/dist/commands/projects.d.ts +3 -0
- package/dist/commands/projects.d.ts.map +1 -0
- package/dist/commands/projects.js +104 -0
- package/dist/commands/refs.d.ts +3 -0
- package/dist/commands/refs.d.ts.map +1 -0
- package/dist/commands/refs.js +50 -0
- package/dist/commands/tasks.d.ts +3 -0
- package/dist/commands/tasks.d.ts.map +1 -0
- package/dist/commands/tasks.js +240 -0
- package/dist/commands/users.d.ts +3 -0
- package/dist/commands/users.d.ts.map +1 -0
- package/dist/commands/users.js +49 -0
- package/dist/commands/wiki.d.ts +3 -0
- package/dist/commands/wiki.d.ts.map +1 -0
- package/dist/commands/wiki.js +644 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/lib/client.d.ts +24 -0
- package/dist/lib/client.d.ts.map +1 -0
- package/dist/lib/client.js +47 -0
- package/dist/lib/output.d.ts +3 -0
- package/dist/lib/output.d.ts.map +1 -0
- package/dist/lib/output.js +18 -0
- package/dist/lib/wiki.d.ts +269 -0
- package/dist/lib/wiki.d.ts.map +1 -0
- package/dist/lib/wiki.js +1800 -0
- package/package.json +43 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ParallClient } from '@parall/sdk';
|
|
2
|
+
export type ResolvedCredentials = {
|
|
3
|
+
client: ParallClient;
|
|
4
|
+
orgId: string;
|
|
5
|
+
};
|
|
6
|
+
/** Runtime context injected by the agent runtime via ENV. */
|
|
7
|
+
export type RuntimeContext = {
|
|
8
|
+
sessionId?: string;
|
|
9
|
+
stepId?: string;
|
|
10
|
+
chatId?: string;
|
|
11
|
+
triggerMessageId?: string;
|
|
12
|
+
/** When true, CLI should not send automatic reply messages — the bridge handles text projection. */
|
|
13
|
+
noReply: boolean;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Read per-dispatch context from ENV.
|
|
17
|
+
*
|
|
18
|
+
* Step ID resolution order:
|
|
19
|
+
* 1. PRLL_STEP_ID env var (set by openclaw-channel before_tool_call hook)
|
|
20
|
+
* 2. PRLL_STEP_ID_FILE file contents (written by bridge for subprocess runtimes)
|
|
21
|
+
*/
|
|
22
|
+
export declare function resolveRuntimeContext(): RuntimeContext;
|
|
23
|
+
export declare function resolveCredentials(): ResolvedCredentials;
|
|
24
|
+
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/lib/client.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,MAAM,MAAM,mBAAmB,GAAG;IAChC,MAAM,EAAE,YAAY,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,6DAA6D;AAC7D,MAAM,MAAM,cAAc,GAAG;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,oGAAoG;IACpG,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF;;;;;;GAMG;AACH,wBAAgB,qBAAqB,IAAI,cAAc,CAmBtD;AAED,wBAAgB,kBAAkB,IAAI,mBAAmB,CAoBxD"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as fs from 'node:fs';
|
|
2
|
+
import { ParallClient } from '@parall/sdk';
|
|
3
|
+
/**
|
|
4
|
+
* Read per-dispatch context from ENV.
|
|
5
|
+
*
|
|
6
|
+
* Step ID resolution order:
|
|
7
|
+
* 1. PRLL_STEP_ID env var (set by openclaw-channel before_tool_call hook)
|
|
8
|
+
* 2. PRLL_STEP_ID_FILE file contents (written by bridge for subprocess runtimes)
|
|
9
|
+
*/
|
|
10
|
+
export function resolveRuntimeContext() {
|
|
11
|
+
let stepId = process.env.PRLL_STEP_ID?.trim() || undefined;
|
|
12
|
+
if (!stepId && process.env.PRLL_STEP_ID_FILE) {
|
|
13
|
+
try {
|
|
14
|
+
const content = fs.readFileSync(process.env.PRLL_STEP_ID_FILE, 'utf-8').trim();
|
|
15
|
+
if (content)
|
|
16
|
+
stepId = content;
|
|
17
|
+
}
|
|
18
|
+
catch {
|
|
19
|
+
// File not yet written or unreadable — no step context
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
sessionId: process.env.PRLL_SESSION_ID?.trim() || undefined,
|
|
24
|
+
stepId,
|
|
25
|
+
chatId: process.env.PRLL_CHAT_ID?.trim() || undefined,
|
|
26
|
+
triggerMessageId: process.env.PRLL_TRIGGER_MESSAGE_ID?.trim() || undefined,
|
|
27
|
+
noReply: process.env.PRLL_NO_REPLY === '1',
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export function resolveCredentials() {
|
|
31
|
+
const url = process.env.PRLL_API_URL;
|
|
32
|
+
const apiKey = process.env.PRLL_API_KEY;
|
|
33
|
+
const orgId = process.env.PRLL_ORG_ID;
|
|
34
|
+
const missing = [
|
|
35
|
+
!url && 'PRLL_API_URL',
|
|
36
|
+
!apiKey && 'PRLL_API_KEY',
|
|
37
|
+
!orgId && 'PRLL_ORG_ID',
|
|
38
|
+
].filter(Boolean);
|
|
39
|
+
if (missing.length > 0) {
|
|
40
|
+
console.error(JSON.stringify({ error: `Missing env vars: ${missing.join(', ')}` }));
|
|
41
|
+
process.exit(1);
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
client: new ParallClient({ baseUrl: url, token: apiKey }),
|
|
45
|
+
orgId: orgId,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"output.d.ts","sourceRoot":"","sources":["../../src/lib/output.ts"],"names":[],"mappings":"AAEA,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAE7C;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,KAAK,CAW9C"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ApiError } from '@parall/sdk';
|
|
2
|
+
export function printJson(data) {
|
|
3
|
+
console.log(JSON.stringify(data, null, 2));
|
|
4
|
+
}
|
|
5
|
+
export function printError(err) {
|
|
6
|
+
let msg;
|
|
7
|
+
if (err instanceof ApiError) {
|
|
8
|
+
msg = { error: err.message, status: err.status };
|
|
9
|
+
}
|
|
10
|
+
else if (err instanceof Error) {
|
|
11
|
+
msg = { error: err.message };
|
|
12
|
+
}
|
|
13
|
+
else {
|
|
14
|
+
msg = { error: String(err) };
|
|
15
|
+
}
|
|
16
|
+
console.error(JSON.stringify(msg));
|
|
17
|
+
return process.exit(1);
|
|
18
|
+
}
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
import { type ParallClient, type Wiki, type WikiChangeset, type WikiDiff, type WikiDiffFile, type WikiTreeEntry } from '@parall/sdk';
|
|
2
|
+
export type ParallContext = {
|
|
3
|
+
client: ParallClient;
|
|
4
|
+
orgId: string;
|
|
5
|
+
agentId?: string;
|
|
6
|
+
/** Per-account wiki mount root. Takes priority over process.env.PRLL_WIKI_MOUNT_ROOT. */
|
|
7
|
+
mountRoot?: string;
|
|
8
|
+
/** Base URL of the wiki-service. Defaults to PRLL_WIKI_URL, then PRLL_API_URL. */
|
|
9
|
+
baseUrl?: string;
|
|
10
|
+
};
|
|
11
|
+
export type WikiSearchOptions = {
|
|
12
|
+
ref?: string;
|
|
13
|
+
pathPrefix?: string;
|
|
14
|
+
limit?: number;
|
|
15
|
+
includeContent?: boolean;
|
|
16
|
+
};
|
|
17
|
+
export type WikiNodeSection = {
|
|
18
|
+
wiki_id: string;
|
|
19
|
+
wiki_slug: string;
|
|
20
|
+
wiki_name: string;
|
|
21
|
+
node_id: string;
|
|
22
|
+
path: string;
|
|
23
|
+
title: string;
|
|
24
|
+
heading_path?: string[];
|
|
25
|
+
section_path: string;
|
|
26
|
+
level: number;
|
|
27
|
+
start_line: number;
|
|
28
|
+
end_line: number;
|
|
29
|
+
};
|
|
30
|
+
export type WikiOutlineResult = {
|
|
31
|
+
wiki_id: string;
|
|
32
|
+
wiki_slug: string;
|
|
33
|
+
wiki_name: string;
|
|
34
|
+
ref?: string;
|
|
35
|
+
path_prefix?: string;
|
|
36
|
+
generated_at: string;
|
|
37
|
+
file_count: number;
|
|
38
|
+
nodes: WikiNodeSection[];
|
|
39
|
+
source: WikiContentSource;
|
|
40
|
+
};
|
|
41
|
+
export type WikiQueryDocument = {
|
|
42
|
+
path: string;
|
|
43
|
+
title: string;
|
|
44
|
+
score: number;
|
|
45
|
+
matched_headings: string[];
|
|
46
|
+
node_count: number;
|
|
47
|
+
};
|
|
48
|
+
export type WikiQuerySectionResult = WikiSearchResult & {
|
|
49
|
+
document_score: number;
|
|
50
|
+
reasoning: string[];
|
|
51
|
+
};
|
|
52
|
+
export type WikiQueryResult = {
|
|
53
|
+
wiki_id: string;
|
|
54
|
+
wiki_slug: string;
|
|
55
|
+
wiki_name: string;
|
|
56
|
+
query: string;
|
|
57
|
+
ref?: string;
|
|
58
|
+
path_prefix?: string;
|
|
59
|
+
generated_at: string;
|
|
60
|
+
file_count: number;
|
|
61
|
+
source: WikiContentSource;
|
|
62
|
+
documents: WikiQueryDocument[];
|
|
63
|
+
sections: WikiQuerySectionResult[];
|
|
64
|
+
};
|
|
65
|
+
export type WikiSearchResult = WikiNodeSection & {
|
|
66
|
+
score: number;
|
|
67
|
+
snippet: string;
|
|
68
|
+
content?: string;
|
|
69
|
+
source: WikiContentSource;
|
|
70
|
+
};
|
|
71
|
+
export type WikiSectionResult = WikiNodeSection & {
|
|
72
|
+
content: string;
|
|
73
|
+
source: WikiContentSource;
|
|
74
|
+
};
|
|
75
|
+
export type WikiChangesetDiffResult = {
|
|
76
|
+
wiki_id: string;
|
|
77
|
+
wiki_slug: string;
|
|
78
|
+
wiki_name: string;
|
|
79
|
+
changeset_id: string;
|
|
80
|
+
diff: WikiDiff;
|
|
81
|
+
};
|
|
82
|
+
export type WikiWorkspaceStatusResult = {
|
|
83
|
+
wiki_id: string;
|
|
84
|
+
wiki_slug: string;
|
|
85
|
+
wiki_name: string;
|
|
86
|
+
mount_path: string;
|
|
87
|
+
mode: string;
|
|
88
|
+
default_ref: string;
|
|
89
|
+
changed_paths: string[];
|
|
90
|
+
diff_files: WikiDiffFile[];
|
|
91
|
+
dirty: boolean;
|
|
92
|
+
source: 'local_mount';
|
|
93
|
+
};
|
|
94
|
+
export type WikiWorkspaceDiffResult = {
|
|
95
|
+
wiki_id: string;
|
|
96
|
+
wiki_slug: string;
|
|
97
|
+
wiki_name: string;
|
|
98
|
+
mount_path: string;
|
|
99
|
+
changed_paths: string[];
|
|
100
|
+
diff_files: WikiDiffFile[];
|
|
101
|
+
patch: string;
|
|
102
|
+
source: 'local_mount';
|
|
103
|
+
};
|
|
104
|
+
export type WikiProposeOptions = {
|
|
105
|
+
changesetId?: string;
|
|
106
|
+
title: string;
|
|
107
|
+
message?: string;
|
|
108
|
+
sourceChatId?: string;
|
|
109
|
+
sourceMessageId?: string;
|
|
110
|
+
sourceRunId?: string;
|
|
111
|
+
};
|
|
112
|
+
export type WikiProposeResult = {
|
|
113
|
+
wiki_id: string;
|
|
114
|
+
wiki_slug: string;
|
|
115
|
+
wiki_name: string;
|
|
116
|
+
mount_path: string;
|
|
117
|
+
changed_paths: string[];
|
|
118
|
+
diff_files: WikiDiffFile[];
|
|
119
|
+
changeset: WikiChangeset;
|
|
120
|
+
source: 'local_mount';
|
|
121
|
+
};
|
|
122
|
+
type WikiContentSource = 'local_mount' | 'api';
|
|
123
|
+
export declare function listWikis(ctx: ParallContext): Promise<Wiki[]>;
|
|
124
|
+
export declare function resolveWikiRef(ctx: ParallContext, wikiRef?: string): Promise<Wiki>;
|
|
125
|
+
/**
|
|
126
|
+
* Resolve wiki reference. If wikiRef is omitted or empty, auto-resolves to
|
|
127
|
+
* the org's single wiki. Errors if the org has zero or multiple wikis without
|
|
128
|
+
* a ref specified.
|
|
129
|
+
*/
|
|
130
|
+
export declare function resolveWikiRefOrDefault(ctx: ParallContext, wikiRef?: string): Promise<Wiki>;
|
|
131
|
+
export declare function getWikiTree(ctx: ParallContext, wikiRef?: string, options?: {
|
|
132
|
+
path?: string;
|
|
133
|
+
}): Promise<{
|
|
134
|
+
wiki: Wiki;
|
|
135
|
+
path: string;
|
|
136
|
+
entries: WikiTreeEntry[];
|
|
137
|
+
}>;
|
|
138
|
+
export declare function getWikiBlob(ctx: ParallContext, wikiRef: string | undefined, options: {
|
|
139
|
+
path: string;
|
|
140
|
+
}): Promise<{
|
|
141
|
+
wiki: Wiki;
|
|
142
|
+
content: string;
|
|
143
|
+
size: number;
|
|
144
|
+
}>;
|
|
145
|
+
export declare function getWikiOutline(ctx: ParallContext, wikiRef?: string, options?: {
|
|
146
|
+
ref?: string;
|
|
147
|
+
pathPrefix?: string;
|
|
148
|
+
}): Promise<WikiOutlineResult>;
|
|
149
|
+
export declare function searchWiki(ctx: ParallContext, wikiRef: string | undefined, query: string, options?: WikiSearchOptions): Promise<WikiSearchResult[]>;
|
|
150
|
+
export declare function queryWiki(ctx: ParallContext, wikiRef: string | undefined, query: string, options?: WikiSearchOptions): Promise<WikiQueryResult>;
|
|
151
|
+
export declare function getWikiSection(ctx: ParallContext, wikiRef: string | undefined, options: {
|
|
152
|
+
nodeId: string;
|
|
153
|
+
ref?: string;
|
|
154
|
+
}): Promise<WikiSectionResult>;
|
|
155
|
+
export declare function getWikiChangesetDiff(ctx: ParallContext, wikiRef: string | undefined, changesetId: string): Promise<WikiChangesetDiffResult>;
|
|
156
|
+
export declare function getWikiWorkspaceStatus(ctx: ParallContext, wikiRef?: string): Promise<WikiWorkspaceStatusResult>;
|
|
157
|
+
export declare function getWikiWorkspaceDiff(ctx: ParallContext, wikiRef?: string): Promise<WikiWorkspaceDiffResult>;
|
|
158
|
+
export type AfcsStatusResult = {
|
|
159
|
+
wiki_id: string;
|
|
160
|
+
wiki_slug: string;
|
|
161
|
+
wiki_name: string;
|
|
162
|
+
mount_path: string;
|
|
163
|
+
mode: string;
|
|
164
|
+
default_ref: string;
|
|
165
|
+
/** Local workspace changes vs last-synced manifest. */
|
|
166
|
+
local_changes: WikiDiffFile[];
|
|
167
|
+
/** Pending changesets created by this agent. */
|
|
168
|
+
changesets: AfcsChangesetSummary[];
|
|
169
|
+
/** Permission summary — null if the API is not yet available. */
|
|
170
|
+
permissions: AfcsPermissionSummary | null;
|
|
171
|
+
};
|
|
172
|
+
export type AfcsChangesetSummary = {
|
|
173
|
+
id: string;
|
|
174
|
+
status: string;
|
|
175
|
+
title: string;
|
|
176
|
+
changed_paths: string[];
|
|
177
|
+
feedback: string | null;
|
|
178
|
+
created_at: string;
|
|
179
|
+
updated_at: string;
|
|
180
|
+
};
|
|
181
|
+
export type AfcsPermissionSummary = {
|
|
182
|
+
readable_prefixes: string[];
|
|
183
|
+
writable_prefixes: string[];
|
|
184
|
+
};
|
|
185
|
+
export declare function getAfcsStatus(ctx: ParallContext, wikiRef?: string): Promise<AfcsStatusResult>;
|
|
186
|
+
export type AfcsDiffResult = {
|
|
187
|
+
wiki_id: string;
|
|
188
|
+
wiki_slug: string;
|
|
189
|
+
wiki_name: string;
|
|
190
|
+
mount_path: string;
|
|
191
|
+
changed_paths: string[];
|
|
192
|
+
diff_files: WikiDiffFile[];
|
|
193
|
+
patch: string;
|
|
194
|
+
};
|
|
195
|
+
export declare function getAfcsDiff(ctx: ParallContext, wikiRef?: string): Promise<AfcsDiffResult>;
|
|
196
|
+
export declare function proposeWikiChangeset(ctx: ParallContext, wikiRef: string | undefined, options: WikiProposeOptions): Promise<WikiProposeResult>;
|
|
197
|
+
/**
|
|
198
|
+
* Discard all local changes and restore files to the last synced state.
|
|
199
|
+
* Reads the local manifest and restores all files from the server.
|
|
200
|
+
*/
|
|
201
|
+
export declare function resetWikiWorkspace(ctx: ParallContext, wikiRef?: string): Promise<{
|
|
202
|
+
wiki_id: string;
|
|
203
|
+
wiki_slug: string;
|
|
204
|
+
files_restored: number;
|
|
205
|
+
}>;
|
|
206
|
+
export type AfcsChangesetsResult = {
|
|
207
|
+
wiki_id: string;
|
|
208
|
+
wiki_slug: string;
|
|
209
|
+
wiki_name: string;
|
|
210
|
+
changesets: AfcsChangesetSummary[];
|
|
211
|
+
};
|
|
212
|
+
export declare function listWikiChangesets(ctx: ParallContext, wikiRef?: string): Promise<AfcsChangesetsResult>;
|
|
213
|
+
export type AfcsChangesetDetailResult = {
|
|
214
|
+
wiki_id: string;
|
|
215
|
+
wiki_slug: string;
|
|
216
|
+
wiki_name: string;
|
|
217
|
+
changeset: WikiChangeset;
|
|
218
|
+
};
|
|
219
|
+
export declare function getWikiChangesetDetail(ctx: ParallContext, wikiRef: string | undefined, changesetId: string): Promise<AfcsChangesetDetailResult>;
|
|
220
|
+
export type AfcsAccessRequestResult = {
|
|
221
|
+
wiki_id: string;
|
|
222
|
+
wiki_slug: string;
|
|
223
|
+
wiki_name: string;
|
|
224
|
+
path: string;
|
|
225
|
+
reason: string | undefined;
|
|
226
|
+
status: 'submitted';
|
|
227
|
+
message: string;
|
|
228
|
+
};
|
|
229
|
+
export declare function requestWikiAccess(ctx: ParallContext, wikiRef: string | undefined, targetPath: string, reason?: string): Promise<AfcsAccessRequestResult>;
|
|
230
|
+
export type AfcsLogEntry = {
|
|
231
|
+
type: 'file_version' | 'operation';
|
|
232
|
+
id: string;
|
|
233
|
+
path?: string;
|
|
234
|
+
action: string;
|
|
235
|
+
actor_id: string;
|
|
236
|
+
version?: number;
|
|
237
|
+
created_at: string;
|
|
238
|
+
};
|
|
239
|
+
export type AfcsLogResult = {
|
|
240
|
+
wiki_id: string;
|
|
241
|
+
wiki_slug: string;
|
|
242
|
+
wiki_name: string;
|
|
243
|
+
path?: string;
|
|
244
|
+
entries: AfcsLogEntry[];
|
|
245
|
+
};
|
|
246
|
+
export declare function getWikiLog(ctx: ParallContext, wikiRef?: string, filePath?: string): Promise<AfcsLogResult>;
|
|
247
|
+
export type SyncResult = {
|
|
248
|
+
ok: true;
|
|
249
|
+
mounts: number;
|
|
250
|
+
synced: {
|
|
251
|
+
slug: string;
|
|
252
|
+
path: string;
|
|
253
|
+
}[];
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* List accessible wikis for this org, sync each via REST
|
|
257
|
+
* (manifest comparison + bulk download), and remove stale directories.
|
|
258
|
+
* Mount path is determined client-side: {mountRoot}/{slug}/
|
|
259
|
+
*/
|
|
260
|
+
export declare function syncAllMounts(ctx: ParallContext): Promise<SyncResult>;
|
|
261
|
+
/**
|
|
262
|
+
* Run {@link syncAllMounts} in a loop, sleeping `intervalSec` between
|
|
263
|
+
* iterations. Returns a `stop` callback to break the loop.
|
|
264
|
+
*/
|
|
265
|
+
export declare function watchMounts(ctx: ParallContext, intervalSec: number): {
|
|
266
|
+
stop: () => void;
|
|
267
|
+
};
|
|
268
|
+
export {};
|
|
269
|
+
//# sourceMappingURL=wiki.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wiki.d.ts","sourceRoot":"","sources":["../../src/lib/wiki.ts"],"names":[],"mappings":"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"}
|