cccc-sdk 0.1.0 → 0.1.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/README.md +68 -186
- package/dist/client.d.ts +136 -186
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +419 -414
- package/dist/client.js.map +1 -0
- package/dist/errors.d.ts +32 -10
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +46 -16
- package/dist/errors.js.map +1 -0
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +11 -10
- package/dist/index.js.map +1 -0
- package/dist/transport.d.ts +44 -24
- package/dist/transport.d.ts.map +1 -0
- package/dist/transport.js +248 -92
- package/dist/transport.js.map +1 -0
- package/dist/types.d.ts +273 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/package.json +27 -26
- package/dist/types/actor.d.ts +0 -42
- package/dist/types/actor.d.ts.map +0 -1
- package/dist/types/actor.js +0 -5
- package/dist/types/actor.js.map +0 -1
- package/dist/types/context.d.ts +0 -89
- package/dist/types/context.d.ts.map +0 -1
- package/dist/types/context.js +0 -5
- package/dist/types/context.js.map +0 -1
- package/dist/types/event.d.ts +0 -15
- package/dist/types/event.d.ts.map +0 -1
- package/dist/types/event.js +0 -5
- package/dist/types/event.js.map +0 -1
- package/dist/types/group.d.ts +0 -33
- package/dist/types/group.d.ts.map +0 -1
- package/dist/types/group.js +0 -5
- package/dist/types/group.js.map +0 -1
- package/dist/types/index.d.ts +0 -10
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -10
- package/dist/types/index.js.map +0 -1
- package/dist/types/ipc.d.ts +0 -24
- package/dist/types/ipc.d.ts.map +0 -1
- package/dist/types/ipc.js +0 -10
- package/dist/types/ipc.js.map +0 -1
- package/dist/types/message.d.ts +0 -53
- package/dist/types/message.d.ts.map +0 -1
- package/dist/types/message.js +0 -5
- package/dist/types/message.js.map +0 -1
package/dist/client.d.ts
CHANGED
|
@@ -1,262 +1,212 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* CCCC
|
|
3
|
-
*
|
|
4
|
-
* High-level API for interacting with CCCC daemon
|
|
2
|
+
* CCCC SDK client
|
|
5
3
|
*/
|
|
6
|
-
import {
|
|
7
|
-
import { type DaemonResponse } from './types/ipc.js';
|
|
8
|
-
import type { Actor, ActorAddOptions, GroupState, HeadlessState } from './types/actor.js';
|
|
9
|
-
import type { GroupInfo, GroupCreateOptions, GroupUpdatePatch } from './types/group.js';
|
|
10
|
-
import type { SendMessageOptions, ReplyMessageOptions, InboxMessage, InboxListOptions } from './types/message.js';
|
|
11
|
-
import type { Event } from './types/event.js';
|
|
12
|
-
import type { Context, ContextSyncOp, Task, TaskCreateOptions, TaskUpdateOptions, Milestone, MilestoneCreateOptions } from './types/context.js';
|
|
13
|
-
export interface CCCCClientOptions extends TransportOptions {
|
|
14
|
-
}
|
|
4
|
+
import type { DaemonEndpoint, DaemonResponse, CCCCClientOptions, CompatibilityOptions, SendOptions, SendCrossGroupOptions, ReplyOptions, ActorAddOptions, ActorUpdateOptions, ActorEnvPrivateUpdateOptions, GroupCreateOptions, GroupUpdateOptions, GroupAutomationUpdateOptions, GroupAutomationManageOptions, GroupAutomationResetBaselineOptions, InboxListOptions, ContextSyncOptions, EventsStreamOptions, EventStreamItem } from './types.js';
|
|
15
5
|
/**
|
|
16
|
-
*
|
|
6
|
+
* Client for communicating with the CCCC daemon over IPC (Unix socket or TCP).
|
|
7
|
+
*
|
|
8
|
+
* Use the async factory {@link CCCCClient.create} to instantiate:
|
|
9
|
+
* ```ts
|
|
10
|
+
* const client = await CCCCClient.create();
|
|
11
|
+
* const result = await client.ping();
|
|
12
|
+
* ```
|
|
17
13
|
*/
|
|
18
|
-
declare class
|
|
19
|
-
private
|
|
20
|
-
|
|
14
|
+
export declare class CCCCClient {
|
|
15
|
+
private readonly _endpoint;
|
|
16
|
+
private readonly _timeoutMs;
|
|
17
|
+
private constructor();
|
|
21
18
|
/**
|
|
22
|
-
*
|
|
19
|
+
* Create a new client instance, auto-discovering the daemon endpoint.
|
|
20
|
+
* @param options - Client configuration (ccccHome, endpoint override, timeout).
|
|
21
|
+
* @returns A connected CCCCClient instance.
|
|
22
|
+
* @throws {DaemonUnavailableError} If the daemon endpoint cannot be discovered.
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
static create(options?: CCCCClientOptions): Promise<CCCCClient>;
|
|
25
|
+
/** The resolved daemon endpoint this client connects to. */
|
|
26
|
+
get endpoint(): DaemonEndpoint;
|
|
25
27
|
/**
|
|
26
|
-
*
|
|
28
|
+
* Send a raw IPC request and return the full daemon response envelope.
|
|
29
|
+
* @param op - The IPC operation name (e.g. `'ping'`, `'send'`).
|
|
30
|
+
* @param args - Operation arguments.
|
|
31
|
+
* @returns The complete {@link DaemonResponse} including `ok`, `result`, and `error`.
|
|
32
|
+
* @throws {DaemonAPIError} If the daemon returns `ok: false`.
|
|
33
|
+
* @throws {DaemonUnavailableError} If the connection fails.
|
|
27
34
|
*/
|
|
28
|
-
|
|
35
|
+
callRaw(op: string, args?: Record<string, unknown>): Promise<DaemonResponse>;
|
|
29
36
|
/**
|
|
30
|
-
*
|
|
37
|
+
* Send an IPC request and return only the result payload.
|
|
38
|
+
* @param op - The IPC operation name.
|
|
39
|
+
* @param args - Operation arguments.
|
|
40
|
+
* @returns The `result` field from the daemon response (empty object if absent).
|
|
41
|
+
* @throws {DaemonAPIError} If the daemon returns an error.
|
|
42
|
+
* @throws {DaemonUnavailableError} If the connection fails.
|
|
31
43
|
*/
|
|
32
|
-
|
|
44
|
+
call(op: string, args?: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
33
45
|
/**
|
|
34
|
-
*
|
|
46
|
+
* Assert that the connected daemon meets the caller's compatibility requirements.
|
|
47
|
+
* Checks IPC version, capabilities, and operation support by probing.
|
|
48
|
+
* @param options - Required IPC version, capabilities, and operations.
|
|
49
|
+
* @returns The ping result from the daemon.
|
|
50
|
+
* @throws {IncompatibleDaemonError} If any compatibility check fails.
|
|
51
|
+
* @throws {DaemonUnavailableError} If the connection fails.
|
|
35
52
|
*/
|
|
36
|
-
|
|
53
|
+
assertCompatible(options?: CompatibilityOptions): Promise<Record<string, unknown>>;
|
|
37
54
|
/**
|
|
38
|
-
*
|
|
55
|
+
* Ping the daemon and return diagnostic information (ipc_v, capabilities, etc.).
|
|
56
|
+
* @returns Daemon ping result.
|
|
57
|
+
* @throws {DaemonUnavailableError} If the daemon is not reachable.
|
|
39
58
|
*/
|
|
40
|
-
|
|
59
|
+
ping(): Promise<Record<string, unknown>>;
|
|
41
60
|
/**
|
|
42
|
-
*
|
|
61
|
+
* List all groups
|
|
43
62
|
*/
|
|
44
|
-
|
|
63
|
+
groups(): Promise<Record<string, unknown>>;
|
|
64
|
+
/**
|
|
65
|
+
* Show group details
|
|
66
|
+
*/
|
|
67
|
+
groupShow(groupId: string): Promise<Record<string, unknown>>;
|
|
68
|
+
/**
|
|
69
|
+
* Create group
|
|
70
|
+
*/
|
|
71
|
+
groupCreate(options?: GroupCreateOptions): Promise<Record<string, unknown>>;
|
|
45
72
|
/**
|
|
46
73
|
* Update group
|
|
47
74
|
*/
|
|
48
|
-
|
|
75
|
+
groupUpdate(options: GroupUpdateOptions): Promise<Record<string, unknown>>;
|
|
49
76
|
/**
|
|
50
77
|
* Delete group
|
|
51
78
|
*/
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Actors API
|
|
56
|
-
*/
|
|
57
|
-
declare class ActorsAPI {
|
|
58
|
-
private client;
|
|
59
|
-
constructor(client: CCCCClient);
|
|
79
|
+
groupDelete(groupId: string, by?: string): Promise<Record<string, unknown>>;
|
|
60
80
|
/**
|
|
61
|
-
*
|
|
81
|
+
* Use group (set active scope)
|
|
62
82
|
*/
|
|
63
|
-
|
|
83
|
+
groupUse(groupId: string, path: string, by?: string): Promise<Record<string, unknown>>;
|
|
64
84
|
/**
|
|
65
|
-
*
|
|
85
|
+
* Set group state
|
|
66
86
|
*/
|
|
67
|
-
|
|
87
|
+
groupSetState(groupId: string, state: 'active' | 'idle' | 'paused', by?: string): Promise<Record<string, unknown>>;
|
|
68
88
|
/**
|
|
69
|
-
*
|
|
89
|
+
* Update group settings
|
|
70
90
|
*/
|
|
71
|
-
|
|
91
|
+
groupSettingsUpdate(groupId: string, patch: Record<string, unknown>, by?: string): Promise<Record<string, unknown>>;
|
|
72
92
|
/**
|
|
73
|
-
*
|
|
93
|
+
* Read group-level automation state (rules, snippets, next run, ...)
|
|
74
94
|
*/
|
|
75
|
-
|
|
95
|
+
groupAutomationState(groupId: string, by?: string): Promise<Record<string, unknown>>;
|
|
76
96
|
/**
|
|
77
|
-
*
|
|
97
|
+
* Replace group-level automation (rules + snippets)
|
|
78
98
|
*/
|
|
79
|
-
|
|
99
|
+
groupAutomationUpdate(options: GroupAutomationUpdateOptions): Promise<Record<string, unknown>>;
|
|
80
100
|
/**
|
|
81
|
-
*
|
|
101
|
+
* Incrementally manage group-level automation (actions[])
|
|
82
102
|
*/
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* Messages API
|
|
87
|
-
*/
|
|
88
|
-
declare class MessagesAPI {
|
|
89
|
-
private client;
|
|
90
|
-
constructor(client: CCCCClient);
|
|
103
|
+
groupAutomationManage(options: GroupAutomationManageOptions): Promise<Record<string, unknown>>;
|
|
91
104
|
/**
|
|
92
|
-
*
|
|
105
|
+
* Reset group-level automation to baseline
|
|
93
106
|
*/
|
|
94
|
-
|
|
107
|
+
groupAutomationResetBaseline(options: GroupAutomationResetBaselineOptions): Promise<Record<string, unknown>>;
|
|
95
108
|
/**
|
|
96
|
-
*
|
|
109
|
+
* Start group
|
|
97
110
|
*/
|
|
98
|
-
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* Inbox API
|
|
102
|
-
*/
|
|
103
|
-
declare class InboxAPI {
|
|
104
|
-
private client;
|
|
105
|
-
constructor(client: CCCCClient);
|
|
111
|
+
groupStart(groupId: string, by?: string): Promise<Record<string, unknown>>;
|
|
106
112
|
/**
|
|
107
|
-
*
|
|
113
|
+
* Stop group
|
|
108
114
|
*/
|
|
109
|
-
|
|
115
|
+
groupStop(groupId: string, by?: string): Promise<Record<string, unknown>>;
|
|
110
116
|
/**
|
|
111
|
-
*
|
|
117
|
+
* Attach path to group
|
|
112
118
|
*/
|
|
113
|
-
|
|
119
|
+
attach(path: string, groupId?: string, by?: string): Promise<Record<string, unknown>>;
|
|
114
120
|
/**
|
|
115
|
-
*
|
|
121
|
+
* List actors in group
|
|
116
122
|
*/
|
|
117
|
-
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* Context API
|
|
121
|
-
*/
|
|
122
|
-
declare class ContextAPI {
|
|
123
|
-
private client;
|
|
124
|
-
constructor(client: CCCCClient);
|
|
123
|
+
actorList(groupId: string): Promise<Record<string, unknown>>;
|
|
125
124
|
/**
|
|
126
|
-
*
|
|
125
|
+
* Add an actor to a group.
|
|
126
|
+
* @param options - Actor configuration (id, runtime, runner, etc.).
|
|
127
|
+
* @returns The daemon result (includes assigned actor id).
|
|
128
|
+
* @throws {DaemonAPIError} On invalid group or duplicate actor id.
|
|
127
129
|
*/
|
|
128
|
-
|
|
130
|
+
actorAdd(options: ActorAddOptions): Promise<Record<string, unknown>>;
|
|
129
131
|
/**
|
|
130
|
-
*
|
|
132
|
+
* Update actor
|
|
131
133
|
*/
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
/**
|
|
135
|
-
* Tasks API
|
|
136
|
-
*/
|
|
137
|
-
declare class TasksAPI {
|
|
138
|
-
private client;
|
|
139
|
-
constructor(client: CCCCClient);
|
|
134
|
+
actorUpdate(options: ActorUpdateOptions): Promise<Record<string, unknown>>;
|
|
140
135
|
/**
|
|
141
|
-
*
|
|
136
|
+
* Remove actor
|
|
142
137
|
*/
|
|
143
|
-
|
|
138
|
+
actorRemove(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
|
|
144
139
|
/**
|
|
145
|
-
*
|
|
140
|
+
* Start actor
|
|
146
141
|
*/
|
|
147
|
-
|
|
142
|
+
actorStart(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
|
|
148
143
|
/**
|
|
149
|
-
*
|
|
144
|
+
* Stop actor
|
|
150
145
|
*/
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
/**
|
|
154
|
-
* Milestones API
|
|
155
|
-
*/
|
|
156
|
-
declare class MilestonesAPI {
|
|
157
|
-
private client;
|
|
158
|
-
constructor(client: CCCCClient);
|
|
146
|
+
actorStop(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
|
|
159
147
|
/**
|
|
160
|
-
*
|
|
148
|
+
* Restart actor
|
|
161
149
|
*/
|
|
162
|
-
|
|
150
|
+
actorRestart(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
|
|
163
151
|
/**
|
|
164
|
-
*
|
|
152
|
+
* List actor private env keys (without values)
|
|
165
153
|
*/
|
|
166
|
-
|
|
167
|
-
}
|
|
168
|
-
/**
|
|
169
|
-
* Vision API
|
|
170
|
-
*/
|
|
171
|
-
declare class VisionAPI {
|
|
172
|
-
private client;
|
|
173
|
-
constructor(client: CCCCClient);
|
|
154
|
+
actorEnvPrivateKeys(groupId: string, actorId: string, by?: string): Promise<Record<string, unknown>>;
|
|
174
155
|
/**
|
|
175
|
-
* Update
|
|
156
|
+
* Update actor private env vars (runtime-only; values are never echoed)
|
|
176
157
|
*/
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* Sketch API
|
|
181
|
-
*/
|
|
182
|
-
declare class SketchAPI {
|
|
183
|
-
private client;
|
|
184
|
-
constructor(client: CCCCClient);
|
|
158
|
+
actorEnvPrivateUpdate(options: ActorEnvPrivateUpdateOptions): Promise<Record<string, unknown>>;
|
|
185
159
|
/**
|
|
186
|
-
*
|
|
160
|
+
* Send a chat message to a group.
|
|
161
|
+
* @param options - Message content, recipients, and priority.
|
|
162
|
+
* @returns The daemon result (includes event id).
|
|
163
|
+
* @throws {DaemonAPIError} On invalid group, missing permissions, etc.
|
|
187
164
|
*/
|
|
188
|
-
|
|
189
|
-
}
|
|
190
|
-
/**
|
|
191
|
-
* Headless API for MCP-driven actors
|
|
192
|
-
*/
|
|
193
|
-
declare class HeadlessAPI {
|
|
194
|
-
private client;
|
|
195
|
-
constructor(client: CCCCClient);
|
|
165
|
+
send(options: SendOptions): Promise<Record<string, unknown>>;
|
|
196
166
|
/**
|
|
197
|
-
*
|
|
167
|
+
* Send message across groups
|
|
198
168
|
*/
|
|
199
|
-
|
|
169
|
+
sendCrossGroup(options: SendCrossGroupOptions): Promise<Record<string, unknown>>;
|
|
200
170
|
/**
|
|
201
|
-
*
|
|
171
|
+
* Reply message
|
|
202
172
|
*/
|
|
203
|
-
|
|
173
|
+
reply(options: ReplyOptions): Promise<Record<string, unknown>>;
|
|
204
174
|
/**
|
|
205
|
-
* Acknowledge
|
|
175
|
+
* Acknowledge chat message
|
|
206
176
|
*/
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
* runtime: 'claude',
|
|
225
|
-
* runner: 'pty'
|
|
226
|
-
* });
|
|
227
|
-
*
|
|
228
|
-
* // Send a message
|
|
229
|
-
* await client.messages.send(groupId, 'user', {
|
|
230
|
-
* text: 'Hello agents!',
|
|
231
|
-
* to: ['agent-1']
|
|
232
|
-
* });
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
export declare class CCCCClient {
|
|
236
|
-
private options;
|
|
237
|
-
readonly groups: GroupsAPI;
|
|
238
|
-
readonly actors: ActorsAPI;
|
|
239
|
-
readonly messages: MessagesAPI;
|
|
240
|
-
readonly inbox: InboxAPI;
|
|
241
|
-
readonly context: ContextAPI;
|
|
242
|
-
readonly tasks: TasksAPI;
|
|
243
|
-
readonly milestones: MilestonesAPI;
|
|
244
|
-
readonly vision: VisionAPI;
|
|
245
|
-
readonly sketch: SketchAPI;
|
|
246
|
-
readonly headless: HeadlessAPI;
|
|
247
|
-
constructor(options?: CCCCClientOptions);
|
|
177
|
+
chatAck(groupId: string, actorId: string, eventId: string, by?: string): Promise<Record<string, unknown>>;
|
|
178
|
+
/**
|
|
179
|
+
* List inbox
|
|
180
|
+
*/
|
|
181
|
+
inboxList(options: InboxListOptions): Promise<Record<string, unknown>>;
|
|
182
|
+
/**
|
|
183
|
+
* Mark message as read
|
|
184
|
+
*/
|
|
185
|
+
inboxMarkRead(groupId: string, actorId: string, eventId: string, by?: string): Promise<Record<string, unknown>>;
|
|
186
|
+
/**
|
|
187
|
+
* Mark all messages as read
|
|
188
|
+
*/
|
|
189
|
+
inboxMarkAllRead(groupId: string, actorId: string, by?: string, kindFilter?: string): Promise<Record<string, unknown>>;
|
|
190
|
+
/**
|
|
191
|
+
* Acknowledge notification
|
|
192
|
+
*/
|
|
193
|
+
notifyAck(groupId: string, actorId: string, notifyEventId: string, by?: string): Promise<Record<string, unknown>>;
|
|
248
194
|
/**
|
|
249
|
-
*
|
|
195
|
+
* Get group context
|
|
250
196
|
*/
|
|
251
|
-
|
|
197
|
+
contextGet(groupId: string): Promise<Record<string, unknown>>;
|
|
252
198
|
/**
|
|
253
|
-
*
|
|
199
|
+
* Sync context
|
|
254
200
|
*/
|
|
255
|
-
|
|
201
|
+
contextSync(options: ContextSyncOptions): Promise<Record<string, unknown>>;
|
|
256
202
|
/**
|
|
257
|
-
*
|
|
203
|
+
* Subscribe to the group event stream (Server-Sent Events style, long-lived connection).
|
|
204
|
+
* Yields {@link EventStreamItem} objects as they arrive. The socket is destroyed
|
|
205
|
+
* when the generator is returned or thrown.
|
|
206
|
+
* @param options - Group ID, event filters, and optional since cursor.
|
|
207
|
+
* @yields {EventStreamItem} Each event or heartbeat from the stream.
|
|
208
|
+
* @throws {DaemonAPIError} If the handshake fails.
|
|
258
209
|
*/
|
|
259
|
-
|
|
210
|
+
eventsStream(options: EventsStreamOptions): AsyncGenerator<EventStreamItem>;
|
|
260
211
|
}
|
|
261
|
-
export {};
|
|
262
212
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|