cccc-sdk 0.1.4 → 0.4.3

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 CHANGED
@@ -14,6 +14,8 @@ TypeScript/Node.js client for the CCCC daemon (IPC v1).
14
14
  npm install cccc-sdk
15
15
  ```
16
16
 
17
+ Compatibility is determined by Daemon IPC v1 contracts and operation probing, not by strict package-version matching.
18
+
17
19
  ## Quick start
18
20
 
19
21
  ```typescript
@@ -75,6 +77,72 @@ await client.groupAutomationManage({
75
77
  });
76
78
  ```
77
79
 
80
+ ## Actor Profiles (global reusable runtime presets)
81
+
82
+ ```typescript
83
+ const client = await CCCCClient.create();
84
+
85
+ const upsert = await client.actorProfileUpsert({
86
+ profile: {
87
+ name: 'Codex PTY',
88
+ runtime: 'codex',
89
+ runner: 'pty',
90
+ command: ['codex', 'exec'],
91
+ submit: 'enter',
92
+ env: { CODEX_MODEL: 'gpt-5' },
93
+ capabilityDefaults: {
94
+ autoloadCapabilities: ['pack:space'],
95
+ defaultScope: 'actor',
96
+ },
97
+ },
98
+ });
99
+
100
+ const profile = upsert.profile as { id?: string } | undefined;
101
+ const profileId = String(profile?.id ?? '');
102
+
103
+ await client.actorAdd({
104
+ groupId,
105
+ actorId: 'reviewer',
106
+ profileId,
107
+ });
108
+
109
+ await client.actorProfileSecretUpdate({
110
+ profileId,
111
+ set: { OPENAI_API_KEY: '...' },
112
+ });
113
+ ```
114
+
115
+ ## Current high-value surfaces
116
+
117
+ ```typescript
118
+ const client = await CCCCClient.create();
119
+
120
+ const caps = await client.capabilityState({
121
+ groupId,
122
+ actorId: 'foreman',
123
+ });
124
+
125
+ const policy = await client.capabilityAllowlistGet();
126
+ const preview = await client.capabilityAllowlistValidate({
127
+ mode: 'patch',
128
+ patch: { defaults: { source_level: { skillsmp_remote: 'indexed' } } },
129
+ });
130
+
131
+ const space = await client.groupSpaceStatus({
132
+ groupId,
133
+ });
134
+
135
+ await client.contextSync({
136
+ groupId,
137
+ by: 'user',
138
+ ops: [
139
+ { op: 'coordination.note.add', kind: 'decision', summary: 'Use the simpler path' },
140
+ ],
141
+ });
142
+ ```
143
+
144
+ If you need a daemon op that does not have a dedicated helper yet, you can always fall back to `call()` / `callRaw()`.
145
+
78
146
  ## Events stream
79
147
 
80
148
  ```typescript
package/dist/client.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * CCCC SDK client
3
3
  */
4
- import type { DaemonEndpoint, DaemonResponse, CCCCClientOptions, CompatibilityOptions, SendOptions, SendCrossGroupOptions, ReplyOptions, ActorAddOptions, ActorUpdateOptions, ActorEnvPrivateUpdateOptions, GroupCreateOptions, GroupUpdateOptions, GroupAutomationUpdateOptions, GroupAutomationManageOptions, GroupAutomationResetBaselineOptions, InboxListOptions, ContextSyncOptions, EventsStreamOptions, EventStreamItem, FileSendOptions, LedgerTailOptions, TerminalTailOptions, CCCSEvent, SendResult, SendAndWaitOptions, PingResult, GroupsResult, GroupShowResult, GroupCreateResult, ActorListResult, ActorAddResult, InboxListResult, ContextGetResult } from './types.js';
4
+ import type { DaemonEndpoint, DaemonResponse, CCCCClientOptions, CompatibilityOptions, SendOptions, SendCrossGroupOptions, ReplyOptions, ActorAddOptions, ActorUpdateOptions, ActorEnvPrivateUpdateOptions, ActorProfileUpsertOptions, ActorProfileSecretUpdateOptions, ActorProfileSecretCopyFromActorOptions, ActorProfileSecretCopyFromProfileOptions, GroupCreateOptions, GroupUpdateOptions, CapabilityOverviewOptions, CapabilitySearchOptions, CapabilityEnableOptions, CapabilityBlockOptions, CapabilityStateOptions, CapabilityAllowlistGetOptions, CapabilityAllowlistValidateOptions, CapabilityAllowlistUpdateOptions, CapabilityAllowlistResetOptions, CapabilityImportOptions, CapabilityUninstallOptions, CapabilityToolCallOptions, GroupAutomationUpdateOptions, GroupAutomationManageOptions, GroupAutomationResetBaselineOptions, GroupSpaceStatusOptions, GroupSpaceSpacesOptions, GroupSpaceCapabilitiesOptions, GroupSpaceBindOptions, GroupSpaceIngestOptions, GroupSpaceQueryOptions, GroupSpaceSourcesOptions, GroupSpaceArtifactOptions, GroupSpaceJobsOptions, GroupSpaceSyncOptions, GroupSpaceProviderCredentialStatusOptions, GroupSpaceProviderCredentialUpdateOptions, GroupSpaceProviderHealthCheckOptions, GroupSpaceProviderAuthOptions, InboxListOptions, ContextSyncOptions, EventsStreamOptions, EventStreamItem } from './types.js';
5
5
  /**
6
6
  * Client for communicating with the CCCC daemon over IPC (Unix socket or TCP).
7
7
  *
@@ -35,14 +35,13 @@ export declare class CCCCClient {
35
35
  callRaw(op: string, args?: Record<string, unknown>): Promise<DaemonResponse>;
36
36
  /**
37
37
  * Send an IPC request and return only the result payload.
38
- * @typeParam T - Expected result type (defaults to `Record<string, unknown>`).
39
38
  * @param op - The IPC operation name.
40
39
  * @param args - Operation arguments.
41
- * @returns The `result` field from the daemon response, cast to `T`.
40
+ * @returns The `result` field from the daemon response (empty object if absent).
42
41
  * @throws {DaemonAPIError} If the daemon returns an error.
43
42
  * @throws {DaemonUnavailableError} If the connection fails.
44
43
  */
45
- call<T = Record<string, unknown>>(op: string, args?: Record<string, unknown>): Promise<T>;
44
+ call(op: string, args?: Record<string, unknown>): Promise<Record<string, unknown>>;
46
45
  /**
47
46
  * Assert that the connected daemon meets the caller's compatibility requirements.
48
47
  * Checks IPC version, capabilities, and operation support by probing.
@@ -51,25 +50,25 @@ export declare class CCCCClient {
51
50
  * @throws {IncompatibleDaemonError} If any compatibility check fails.
52
51
  * @throws {DaemonUnavailableError} If the connection fails.
53
52
  */
54
- assertCompatible(options?: CompatibilityOptions): Promise<PingResult>;
53
+ assertCompatible(options?: CompatibilityOptions): Promise<Record<string, unknown>>;
55
54
  /**
56
55
  * Ping the daemon and return diagnostic information (ipc_v, capabilities, etc.).
57
56
  * @returns Daemon ping result.
58
57
  * @throws {DaemonUnavailableError} If the daemon is not reachable.
59
58
  */
60
- ping(): Promise<PingResult>;
59
+ ping(): Promise<Record<string, unknown>>;
61
60
  /**
62
61
  * List all groups
63
62
  */
64
- groups(): Promise<GroupsResult>;
63
+ groups(): Promise<Record<string, unknown>>;
65
64
  /**
66
65
  * Show group details
67
66
  */
68
- groupShow(groupId: string): Promise<GroupShowResult>;
67
+ groupShow(groupId: string): Promise<Record<string, unknown>>;
69
68
  /**
70
69
  * Create group
71
70
  */
72
- groupCreate(options?: GroupCreateOptions): Promise<GroupCreateResult>;
71
+ groupCreate(options?: GroupCreateOptions): Promise<Record<string, unknown>>;
73
72
  /**
74
73
  * Update group
75
74
  */
@@ -121,14 +120,14 @@ export declare class CCCCClient {
121
120
  /**
122
121
  * List actors in group
123
122
  */
124
- actorList(groupId: string): Promise<ActorListResult>;
123
+ actorList(groupId: string): Promise<Record<string, unknown>>;
125
124
  /**
126
125
  * Add an actor to a group.
127
126
  * @param options - Actor configuration (id, runtime, runner, etc.).
128
127
  * @returns The daemon result (includes assigned actor id).
129
128
  * @throws {DaemonAPIError} On invalid group or duplicate actor id.
130
129
  */
131
- actorAdd(options: ActorAddOptions): Promise<ActorAddResult>;
130
+ actorAdd(options: ActorAddOptions): Promise<Record<string, unknown>>;
132
131
  /**
133
132
  * Update actor
134
133
  */
@@ -138,17 +137,9 @@ export declare class CCCCClient {
138
137
  */
139
138
  actorRemove(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
140
139
  /**
141
- * Start actor.
142
- * @param groupId - Group ID.
143
- * @param actorId - Actor ID.
144
- * @param options - Optional settings. Pass `{ idempotent: true }` to suppress errors when the actor is already running.
145
- * @returns The daemon result.
146
- * @throws {DaemonAPIError} On error (unless idempotent and actor already running).
140
+ * Start actor
147
141
  */
148
- actorStart(groupId: string, actorId: string, options?: string | {
149
- by?: string;
150
- idempotent?: boolean;
151
- }): Promise<Record<string, unknown>>;
142
+ actorStart(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
152
143
  /**
153
144
  * Stop actor
154
145
  */
@@ -166,59 +157,108 @@ export declare class CCCCClient {
166
157
  */
167
158
  actorEnvPrivateUpdate(options: ActorEnvPrivateUpdateOptions): Promise<Record<string, unknown>>;
168
159
  /**
169
- * Send a chat message to a group.
170
- * @param options - Message content, recipients, and priority.
171
- * @returns The created event and optional ack event.
172
- * @throws {DaemonAPIError} On invalid group, missing permissions, etc.
160
+ * List global actor profiles.
173
161
  */
174
- send(options: SendOptions): Promise<SendResult>;
162
+ actorProfileList(by?: string): Promise<Record<string, unknown>>;
175
163
  /**
176
- * Send message across groups.
177
- * @returns The created event and optional ack event.
164
+ * Get one actor profile and current usage.
178
165
  */
179
- sendCrossGroup(options: SendCrossGroupOptions): Promise<SendResult>;
166
+ actorProfileGet(profileId: string, by?: string): Promise<Record<string, unknown>>;
180
167
  /**
181
- * Reply to a message.
182
- * @returns The created event and optional ack event.
168
+ * Create/update one actor profile.
183
169
  */
184
- reply(options: ReplyOptions): Promise<SendResult>;
170
+ actorProfileUpsert(options: ActorProfileUpsertOptions): Promise<Record<string, unknown>>;
185
171
  /**
186
- * Send a message and wait for a reply to it.
187
- * Opens the event stream **before** sending to avoid race conditions,
188
- * then yields control to the stream until a matching reply arrives.
189
- *
190
- * @param options - Send options plus `listenAs` (the actor to listen as) and optional `waitTimeoutMs`.
191
- * @returns The reply event (a `chat.message` whose `reply_to` matches the sent event ID).
192
- * @throws {DaemonAPIError} On send/stream errors.
193
- * @throws {Error} If the timeout elapses or the signal is aborted before a reply arrives.
172
+ * Delete one actor profile (rejected when still in use).
194
173
  */
195
- sendAndWaitForReply(options: SendAndWaitOptions): Promise<CCCSEvent>;
174
+ actorProfileDelete(profileId: string, by?: string, forceDetach?: boolean): Promise<Record<string, unknown>>;
196
175
  /**
197
- * Acknowledge chat message
176
+ * List profile-level secret keys and masked previews.
198
177
  */
199
- chatAck(groupId: string, actorId: string, eventId: string, by?: string): Promise<Record<string, unknown>>;
178
+ actorProfileSecretKeys(profileId: string, by?: string): Promise<Record<string, unknown>>;
179
+ /**
180
+ * Update profile-level private env.
181
+ */
182
+ actorProfileSecretUpdate(options: ActorProfileSecretUpdateOptions): Promise<Record<string, unknown>>;
183
+ /**
184
+ * Copy one actor's runtime env (public + private) into a profile's private env.
185
+ */
186
+ actorProfileSecretCopyFromActor(options: ActorProfileSecretCopyFromActorOptions): Promise<Record<string, unknown>>;
187
+ /**
188
+ * Copy one profile's secrets into another profile.
189
+ */
190
+ actorProfileSecretCopyFromProfile(options: ActorProfileSecretCopyFromProfileOptions): Promise<Record<string, unknown>>;
191
+ /**
192
+ * Read the global capability overview snapshot.
193
+ */
194
+ capabilityOverview(options?: CapabilityOverviewOptions): Promise<Record<string, unknown>>;
195
+ /**
196
+ * Search the capability registry for one group/caller scope.
197
+ */
198
+ capabilitySearch(options: CapabilitySearchOptions): Promise<Record<string, unknown>>;
199
+ /**
200
+ * Enable or disable a capability.
201
+ */
202
+ capabilityEnable(options: CapabilityEnableOptions): Promise<Record<string, unknown>>;
203
+ /**
204
+ * Block or unblock a capability.
205
+ */
206
+ capabilityBlock(options: CapabilityBlockOptions): Promise<Record<string, unknown>>;
207
+ /**
208
+ * Read effective capability exposure for one caller scope.
209
+ */
210
+ capabilityState(options: CapabilityStateOptions): Promise<Record<string, unknown>>;
211
+ /**
212
+ * Read capability allowlist default, overlay, and effective snapshots.
213
+ */
214
+ capabilityAllowlistGet(options?: CapabilityAllowlistGetOptions): Promise<Record<string, unknown>>;
215
+ /**
216
+ * Dry-run capability allowlist overlay validation without persistence.
217
+ */
218
+ capabilityAllowlistValidate(options?: CapabilityAllowlistValidateOptions): Promise<Record<string, unknown>>;
219
+ /**
220
+ * Persist capability allowlist overlay with optional optimistic concurrency.
221
+ */
222
+ capabilityAllowlistUpdate(options?: CapabilityAllowlistUpdateOptions): Promise<Record<string, unknown>>;
223
+ /**
224
+ * Reset capability allowlist overlay to empty/default state.
225
+ */
226
+ capabilityAllowlistReset(options?: CapabilityAllowlistResetOptions): Promise<Record<string, unknown>>;
227
+ /**
228
+ * Import one structured capability record, with optional readiness probe.
229
+ */
230
+ capabilityImport(options: CapabilityImportOptions): Promise<Record<string, unknown>>;
231
+ /**
232
+ * Uninstall a capability from the target group scope.
233
+ */
234
+ capabilityUninstall(options: CapabilityUninstallOptions): Promise<Record<string, unknown>>;
235
+ /**
236
+ * Call one enabled dynamic capability tool through daemon IPC.
237
+ */
238
+ capabilityToolCall(options: CapabilityToolCallOptions): Promise<Record<string, unknown>>;
200
239
  /**
201
- * Send a file as a chat attachment.
202
- * @param options - File path (relative to scope root), optional caption and recipients.
203
- * @returns The created event and optional ack event.
240
+ * Send a chat message to a group.
241
+ * @param options - Message content, recipients, and priority.
242
+ * @returns The daemon result (includes event id).
243
+ * @throws {DaemonAPIError} On invalid group, missing permissions, etc.
204
244
  */
205
- fileSend(options: FileSendOptions): Promise<SendResult>;
245
+ send(options: SendOptions): Promise<Record<string, unknown>>;
206
246
  /**
207
- * Get recent chat messages from the ledger.
208
- * @param options - Group ID, limit, and max chars.
209
- * @returns The ledger tail result.
247
+ * Send message across groups
210
248
  */
211
- ledgerTail(options: LedgerTailOptions): Promise<Record<string, unknown>>;
249
+ sendCrossGroup(options: SendCrossGroupOptions): Promise<Record<string, unknown>>;
212
250
  /**
213
- * Get recent terminal output from an actor.
214
- * @param options - Group ID, actor ID, and line count.
215
- * @returns The terminal tail result.
251
+ * Reply message
216
252
  */
217
- terminalTail(options: TerminalTailOptions): Promise<Record<string, unknown>>;
253
+ reply(options: ReplyOptions): Promise<Record<string, unknown>>;
254
+ /**
255
+ * Acknowledge chat message
256
+ */
257
+ chatAck(groupId: string, actorId: string, eventId: string, by?: string): Promise<Record<string, unknown>>;
218
258
  /**
219
259
  * List inbox
220
260
  */
221
- inboxList(options: InboxListOptions): Promise<InboxListResult>;
261
+ inboxList(options: InboxListOptions): Promise<Record<string, unknown>>;
222
262
  /**
223
263
  * Mark message as read
224
264
  */
@@ -234,16 +274,72 @@ export declare class CCCCClient {
234
274
  /**
235
275
  * Get group context
236
276
  */
237
- contextGet(groupId: string): Promise<ContextGetResult>;
277
+ contextGet(groupId: string): Promise<Record<string, unknown>>;
238
278
  /**
239
279
  * Sync context
240
280
  */
241
281
  contextSync(options: ContextSyncOptions): Promise<Record<string, unknown>>;
282
+ /**
283
+ * Read Group Space provider and binding status.
284
+ */
285
+ groupSpaceStatus(options: GroupSpaceStatusOptions): Promise<Record<string, unknown>>;
286
+ /**
287
+ * List available remote spaces for binding.
288
+ */
289
+ groupSpaceSpaces(options: GroupSpaceSpacesOptions): Promise<Record<string, unknown>>;
290
+ /**
291
+ * Read the provider capability matrix for a group.
292
+ */
293
+ groupSpaceCapabilities(options: GroupSpaceCapabilitiesOptions): Promise<Record<string, unknown>>;
294
+ /**
295
+ * Bind or unbind one Group Space lane.
296
+ */
297
+ groupSpaceBind(options: GroupSpaceBindOptions): Promise<Record<string, unknown>>;
298
+ /**
299
+ * Enqueue one Group Space ingest action.
300
+ */
301
+ groupSpaceIngest(options: GroupSpaceIngestOptions): Promise<Record<string, unknown>>;
302
+ /**
303
+ * Query Group Space knowledge for one lane.
304
+ */
305
+ groupSpaceQuery(options: GroupSpaceQueryOptions): Promise<Record<string, unknown>>;
306
+ /**
307
+ * Manage remote sources in the bound Group Space lane.
308
+ */
309
+ groupSpaceSources(options: GroupSpaceSourcesOptions): Promise<Record<string, unknown>>;
310
+ /**
311
+ * List, generate, or download Group Space artifacts.
312
+ */
313
+ groupSpaceArtifact(options: GroupSpaceArtifactOptions): Promise<Record<string, unknown>>;
314
+ /**
315
+ * List or manage Group Space jobs.
316
+ */
317
+ groupSpaceJobs(options: GroupSpaceJobsOptions): Promise<Record<string, unknown>>;
318
+ /**
319
+ * Read or run Group Space synchronization for one lane.
320
+ */
321
+ groupSpaceSync(options: GroupSpaceSyncOptions): Promise<Record<string, unknown>>;
322
+ /**
323
+ * Read provider credential status.
324
+ */
325
+ groupSpaceProviderCredentialStatus(options?: GroupSpaceProviderCredentialStatusOptions): Promise<Record<string, unknown>>;
326
+ /**
327
+ * Update provider credentials.
328
+ */
329
+ groupSpaceProviderCredentialUpdate(options?: GroupSpaceProviderCredentialUpdateOptions): Promise<Record<string, unknown>>;
330
+ /**
331
+ * Run provider health check.
332
+ */
333
+ groupSpaceProviderHealthCheck(options?: GroupSpaceProviderHealthCheckOptions): Promise<Record<string, unknown>>;
334
+ /**
335
+ * Control provider auth flow.
336
+ */
337
+ groupSpaceProviderAuth(options?: GroupSpaceProviderAuthOptions): Promise<Record<string, unknown>>;
242
338
  /**
243
339
  * Subscribe to the group event stream (Server-Sent Events style, long-lived connection).
244
340
  * Yields {@link EventStreamItem} objects as they arrive. The socket is destroyed
245
341
  * when the generator is returned or thrown.
246
- * @param options - Group ID, event filters, optional since cursor, and optional AbortSignal.
342
+ * @param options - Group ID, event filters, and optional since cursor.
247
343
  * @yields {EventStreamItem} Each event or heartbeat from the stream.
248
344
  * @throws {DaemonAPIError} If the handshake fails.
249
345
  */
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}