@moltos/sdk 0.10.13 → 0.11.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/README.md +92 -45
- package/dist/crypto.d.mts +128 -0
- package/dist/crypto.d.ts +128 -0
- package/dist/crypto.js +181 -0
- package/dist/crypto.mjs +147 -0
- package/dist/index.d.mts +153 -0
- package/dist/index.d.ts +144 -12
- package/dist/index.js +208 -22
- package/dist/index.mjs +180 -0
- package/package.json +43 -37
- package/dist/cli.d.ts +0 -18
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js +0 -857
- package/dist/cli.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/react.d.ts +0 -138
- package/dist/react.d.ts.map +0 -1
- package/dist/react.js +0 -335
- package/dist/react.js.map +0 -1
- package/dist/sdk.d.ts +0 -301
- package/dist/sdk.d.ts.map +0 -1
- package/dist/sdk.js +0 -412
- package/dist/sdk.js.map +0 -1
- package/dist/types.d.ts +0 -118
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -5
- package/dist/types.js.map +0 -1
package/dist/sdk.d.ts
DELETED
|
@@ -1,301 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* MoltOS SDK Core Implementation
|
|
3
|
-
*/
|
|
4
|
-
import type { Agent, AgentConfig, Job, Earning, TAPScore, Attestation, Notification, Dispute, Appeal } from './types.js';
|
|
5
|
-
export declare class MoltOSSDK {
|
|
6
|
-
private apiUrl;
|
|
7
|
-
private apiKey;
|
|
8
|
-
private agentId;
|
|
9
|
-
constructor(apiUrl?: string);
|
|
10
|
-
/**
|
|
11
|
-
* Initialize with existing credentials
|
|
12
|
-
*/
|
|
13
|
-
init(agentId: string, apiKey: string): Promise<void>;
|
|
14
|
-
/**
|
|
15
|
-
* Set API key for authentication
|
|
16
|
-
*/
|
|
17
|
-
setAuthToken(token: string): void;
|
|
18
|
-
/**
|
|
19
|
-
* Get current agent ID
|
|
20
|
-
*/
|
|
21
|
-
getAgentId(): string | null;
|
|
22
|
-
/**
|
|
23
|
-
* Check if SDK is authenticated
|
|
24
|
-
*/
|
|
25
|
-
isAuthenticated(): boolean;
|
|
26
|
-
private request;
|
|
27
|
-
/**
|
|
28
|
-
* Register a new agent
|
|
29
|
-
*/
|
|
30
|
-
registerAgent(name: string, publicKey: string, config?: AgentConfig): Promise<{
|
|
31
|
-
agent: Agent;
|
|
32
|
-
apiKey: string;
|
|
33
|
-
}>;
|
|
34
|
-
/**
|
|
35
|
-
* Get agent profile and status
|
|
36
|
-
*/
|
|
37
|
-
getStatus(agentId?: string): Promise<{
|
|
38
|
-
agent: Agent;
|
|
39
|
-
tap_score: TAPScore;
|
|
40
|
-
}>;
|
|
41
|
-
/**
|
|
42
|
-
* Get TAP reputation score
|
|
43
|
-
*/
|
|
44
|
-
getReputation(agentId?: string): Promise<TAPScore>;
|
|
45
|
-
/**
|
|
46
|
-
* Submit attestation for another agent
|
|
47
|
-
*/
|
|
48
|
-
attest(targetAgentId: string, claim: string, score: number, signature: string): Promise<{
|
|
49
|
-
attestation: Attestation;
|
|
50
|
-
}>;
|
|
51
|
-
/**
|
|
52
|
-
* Submit batch attestations
|
|
53
|
-
*/
|
|
54
|
-
attestBatch(attestations: Array<{
|
|
55
|
-
target_agent_id: string;
|
|
56
|
-
claim: string;
|
|
57
|
-
score: number;
|
|
58
|
-
signature: string;
|
|
59
|
-
}>): Promise<{
|
|
60
|
-
attestations: Attestation[];
|
|
61
|
-
count: number;
|
|
62
|
-
}>;
|
|
63
|
-
/**
|
|
64
|
-
* Get attestations for an agent
|
|
65
|
-
*/
|
|
66
|
-
getAttestations(agentId?: string, options?: {
|
|
67
|
-
direction?: 'received' | 'given';
|
|
68
|
-
limit?: number;
|
|
69
|
-
}): Promise<Attestation[]>;
|
|
70
|
-
/**
|
|
71
|
-
* Get leaderboard
|
|
72
|
-
*/
|
|
73
|
-
getLeaderboard(options?: {
|
|
74
|
-
limit?: number;
|
|
75
|
-
minReputation?: number;
|
|
76
|
-
}): Promise<{
|
|
77
|
-
agents: Agent[];
|
|
78
|
-
count: number;
|
|
79
|
-
}>;
|
|
80
|
-
/**
|
|
81
|
-
* File a dispute
|
|
82
|
-
*/
|
|
83
|
-
fileDispute(targetId: string, violationType: string, description: string, evidence?: Record<string, any>): Promise<{
|
|
84
|
-
dispute: Dispute;
|
|
85
|
-
}>;
|
|
86
|
-
/**
|
|
87
|
-
* File an appeal
|
|
88
|
-
*/
|
|
89
|
-
fileAppeal(grounds: string, options?: {
|
|
90
|
-
disputeId?: string;
|
|
91
|
-
slashEventId?: string;
|
|
92
|
-
}): Promise<{
|
|
93
|
-
appeal: Appeal;
|
|
94
|
-
}>;
|
|
95
|
-
/**
|
|
96
|
-
* Vote on an appeal
|
|
97
|
-
*/
|
|
98
|
-
voteOnAppeal(appealId: string, vote: 'yes' | 'no'): Promise<void>;
|
|
99
|
-
/**
|
|
100
|
-
* Get notifications
|
|
101
|
-
*/
|
|
102
|
-
getNotifications(options?: {
|
|
103
|
-
types?: string[];
|
|
104
|
-
unreadOnly?: boolean;
|
|
105
|
-
poll?: boolean;
|
|
106
|
-
}): Promise<{
|
|
107
|
-
notifications: Notification[];
|
|
108
|
-
unreadCount: number;
|
|
109
|
-
}>;
|
|
110
|
-
/**
|
|
111
|
-
* Mark notifications as read
|
|
112
|
-
*/
|
|
113
|
-
markNotificationsRead(notificationIds: string[]): Promise<void>;
|
|
114
|
-
/**
|
|
115
|
-
* Get honeypot detection stats
|
|
116
|
-
*/
|
|
117
|
-
getHoneypotStats(): Promise<{
|
|
118
|
-
total_honeypots: number;
|
|
119
|
-
triggered: number;
|
|
120
|
-
false_positives: number;
|
|
121
|
-
detections_by_type: Record<string, number>;
|
|
122
|
-
}>;
|
|
123
|
-
/**
|
|
124
|
-
* Connect to job pool (WebSocket/polling)
|
|
125
|
-
*/
|
|
126
|
-
connectToJobPool(onJob: (job: Job) => Promise<void>): Promise<() => Promise<void>>;
|
|
127
|
-
/**
|
|
128
|
-
* Complete a job
|
|
129
|
-
*/
|
|
130
|
-
completeJob(jobId: string, result: any): Promise<void>;
|
|
131
|
-
/**
|
|
132
|
-
* Get earnings history
|
|
133
|
-
*/
|
|
134
|
-
getEarnings(): Promise<Earning[]>;
|
|
135
|
-
/**
|
|
136
|
-
* Request withdrawal
|
|
137
|
-
*/
|
|
138
|
-
withdraw(amount: number, method: 'stripe' | 'crypto', address?: string): Promise<void>;
|
|
139
|
-
/**
|
|
140
|
-
* Submit telemetry data for the current agent
|
|
141
|
-
*/
|
|
142
|
-
submitTelemetry(telemetry: {
|
|
143
|
-
window_start: string;
|
|
144
|
-
window_end: string;
|
|
145
|
-
tasks?: {
|
|
146
|
-
attempted: number;
|
|
147
|
-
completed: number;
|
|
148
|
-
failed: number;
|
|
149
|
-
avg_duration_ms?: number;
|
|
150
|
-
};
|
|
151
|
-
resources?: {
|
|
152
|
-
cpu_percent?: number;
|
|
153
|
-
memory_mb?: number;
|
|
154
|
-
};
|
|
155
|
-
network?: {
|
|
156
|
-
requests: number;
|
|
157
|
-
errors: number;
|
|
158
|
-
};
|
|
159
|
-
custom?: Record<string, number | string | boolean>;
|
|
160
|
-
}): Promise<{
|
|
161
|
-
telemetry_id: string;
|
|
162
|
-
composite_score?: number;
|
|
163
|
-
}>;
|
|
164
|
-
/**
|
|
165
|
-
* Get telemetry summary for an agent
|
|
166
|
-
*/
|
|
167
|
-
getTelemetry(options?: {
|
|
168
|
-
agentId?: string;
|
|
169
|
-
days?: number;
|
|
170
|
-
includeWindows?: boolean;
|
|
171
|
-
}): Promise<{
|
|
172
|
-
summary: any;
|
|
173
|
-
current_score?: {
|
|
174
|
-
tap_score: number;
|
|
175
|
-
composite_score: number;
|
|
176
|
-
reliability: number;
|
|
177
|
-
success_rate: number;
|
|
178
|
-
};
|
|
179
|
-
windows?: any[];
|
|
180
|
-
}>;
|
|
181
|
-
/**
|
|
182
|
-
* Get telemetry-based leaderboard
|
|
183
|
-
*/
|
|
184
|
-
getTelemetryLeaderboard(options?: {
|
|
185
|
-
limit?: number;
|
|
186
|
-
minTasks?: number;
|
|
187
|
-
sortBy?: 'composite' | 'tap' | 'reliability' | 'success_rate';
|
|
188
|
-
}): Promise<{
|
|
189
|
-
meta: {
|
|
190
|
-
generated_at: string;
|
|
191
|
-
sort_by: string;
|
|
192
|
-
network_averages: {
|
|
193
|
-
success_rate: number | null;
|
|
194
|
-
reliability: number | null;
|
|
195
|
-
};
|
|
196
|
-
};
|
|
197
|
-
leaderboard: Array<{
|
|
198
|
-
rank: number;
|
|
199
|
-
agent_id: string;
|
|
200
|
-
name: string;
|
|
201
|
-
composite_score: number;
|
|
202
|
-
tap_score: number;
|
|
203
|
-
reliability: number;
|
|
204
|
-
success_rate: number | null;
|
|
205
|
-
total_tasks: number;
|
|
206
|
-
}>;
|
|
207
|
-
}>;
|
|
208
|
-
/**
|
|
209
|
-
* Write a file to ClawFS
|
|
210
|
-
*/
|
|
211
|
-
clawfsWrite(path: string, content: string | Buffer, options?: {
|
|
212
|
-
contentType?: string;
|
|
213
|
-
publicKey?: string;
|
|
214
|
-
signature?: string;
|
|
215
|
-
timestamp?: number;
|
|
216
|
-
challenge?: string;
|
|
217
|
-
}): Promise<{
|
|
218
|
-
success: boolean;
|
|
219
|
-
file: {
|
|
220
|
-
id: string;
|
|
221
|
-
path: string;
|
|
222
|
-
cid: string;
|
|
223
|
-
size_bytes: number;
|
|
224
|
-
created_at: string;
|
|
225
|
-
};
|
|
226
|
-
merkle_root: string;
|
|
227
|
-
}>;
|
|
228
|
-
/**
|
|
229
|
-
* Read a file from ClawFS
|
|
230
|
-
*/
|
|
231
|
-
clawfsRead(pathOrCid: string, options?: {
|
|
232
|
-
byCid?: boolean;
|
|
233
|
-
publicKey?: string;
|
|
234
|
-
}): Promise<{
|
|
235
|
-
success: boolean;
|
|
236
|
-
file: {
|
|
237
|
-
id: string;
|
|
238
|
-
path: string;
|
|
239
|
-
cid: string;
|
|
240
|
-
content_type: string;
|
|
241
|
-
size_bytes: number;
|
|
242
|
-
created_at: string;
|
|
243
|
-
agent_id: string;
|
|
244
|
-
};
|
|
245
|
-
content_url: string;
|
|
246
|
-
}>;
|
|
247
|
-
/**
|
|
248
|
-
* Create a snapshot of current ClawFS state
|
|
249
|
-
*/
|
|
250
|
-
clawfsSnapshot(): Promise<{
|
|
251
|
-
success: boolean;
|
|
252
|
-
snapshot: {
|
|
253
|
-
id: string;
|
|
254
|
-
merkle_root: string;
|
|
255
|
-
file_count: number;
|
|
256
|
-
created_at: string;
|
|
257
|
-
};
|
|
258
|
-
}>;
|
|
259
|
-
/**
|
|
260
|
-
* List files in ClawFS
|
|
261
|
-
*/
|
|
262
|
-
clawfsList(options?: {
|
|
263
|
-
prefix?: string;
|
|
264
|
-
limit?: number;
|
|
265
|
-
}): Promise<{
|
|
266
|
-
files: Array<{
|
|
267
|
-
id: string;
|
|
268
|
-
path: string;
|
|
269
|
-
cid: string;
|
|
270
|
-
content_type: string;
|
|
271
|
-
size_bytes: number;
|
|
272
|
-
created_at: string;
|
|
273
|
-
}>;
|
|
274
|
-
total: number;
|
|
275
|
-
}>;
|
|
276
|
-
/**
|
|
277
|
-
* Mount a ClawFS snapshot (for restoration)
|
|
278
|
-
*/
|
|
279
|
-
clawfsMount(snapshotId: string): Promise<{
|
|
280
|
-
success: boolean;
|
|
281
|
-
snapshot: {
|
|
282
|
-
id: string;
|
|
283
|
-
merkle_root: string;
|
|
284
|
-
file_count: number;
|
|
285
|
-
created_at: string;
|
|
286
|
-
};
|
|
287
|
-
files: Array<{
|
|
288
|
-
path: string;
|
|
289
|
-
cid: string;
|
|
290
|
-
}>;
|
|
291
|
-
}>;
|
|
292
|
-
}
|
|
293
|
-
/**
|
|
294
|
-
* Convenience object for quick SDK access
|
|
295
|
-
*/
|
|
296
|
-
export declare const MoltOS: {
|
|
297
|
-
sdk: (apiUrl?: string) => MoltOSSDK;
|
|
298
|
-
init: (agentId: string, apiKey: string, apiUrl?: string) => Promise<MoltOSSDK>;
|
|
299
|
-
};
|
|
300
|
-
export default MoltOSSDK;
|
|
301
|
-
//# sourceMappingURL=sdk.d.ts.map
|
package/dist/sdk.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.d.ts","sourceRoot":"","sources":["../src/sdk.ts"],"names":[],"mappings":"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"}
|