@hasna/loops 0.4.27 → 0.4.29
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/CHANGELOG.md +205 -1
- package/README.md +232 -49
- package/dist/api/index.d.ts +20 -19
- package/dist/api/index.js +7770 -1342
- package/dist/cli/index.js +2976 -966
- package/dist/cli/safe-error-context.d.ts +1 -0
- package/dist/daemon/daemon.d.ts +1 -0
- package/dist/daemon/index.js +1899 -499
- package/dist/generated/storage-kit/index.d.ts +1 -1
- package/dist/generated/storage-kit/mode.d.ts +6 -12
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5319 -1096
- package/dist/lib/advancement.d.ts +52 -0
- package/dist/lib/agent-adapter.d.ts +20 -2
- package/dist/lib/auth/route-policy.d.ts +14 -0
- package/dist/lib/auth/tenant-auth.d.ts +38 -0
- package/dist/lib/cloud/mode.d.ts +2 -8
- package/dist/lib/cloud/storage.d.ts +1 -2
- package/dist/lib/cloud/transport.d.ts +4 -18
- package/dist/lib/errors.d.ts +43 -1
- package/dist/lib/executor.d.ts +9 -0
- package/dist/lib/format.d.ts +2 -2
- package/dist/lib/goal/runner.d.ts +36 -3
- package/dist/lib/health.d.ts +1 -1
- package/dist/lib/labels.d.ts +4 -0
- package/dist/lib/loop-status.d.ts +4 -0
- package/dist/lib/migration.d.ts +70 -17
- package/dist/lib/mode.d.ts +2 -5
- package/dist/lib/mode.js +28 -37
- package/dist/lib/route/fields.d.ts +8 -0
- package/dist/lib/route/index.d.ts +2 -2
- package/dist/lib/route/throttle.d.ts +7 -0
- package/dist/lib/route/types.d.ts +3 -0
- package/dist/lib/run-completion.d.ts +18 -0
- package/dist/lib/scheduler.d.ts +5 -11
- package/dist/lib/storage/contract.d.ts +15 -1
- package/dist/lib/storage/index.d.ts +1 -1
- package/dist/lib/storage/index.js +4083 -486
- package/dist/lib/storage/pg-executor.d.ts +10 -5
- package/dist/lib/storage/postgres-loop-storage.d.ts +52 -26
- package/dist/lib/storage/postgres-schema.d.ts +8 -0
- package/dist/lib/storage/postgres-schema.js +1326 -1
- package/dist/lib/storage/postgres.d.ts +3 -1
- package/dist/lib/storage/postgres.js +1356 -27
- package/dist/lib/storage/provider-credentials.d.ts +84 -0
- package/dist/lib/storage/shared-database-transfer.d.ts +136 -0
- package/dist/lib/storage/sqlite.d.ts +15 -2
- package/dist/lib/storage/sqlite.js +1379 -217
- package/dist/lib/storage/tenant-backfill-s3.d.ts +53 -0
- package/dist/lib/storage/tenant-backfill.d.ts +40 -0
- package/dist/lib/store/index.d.ts +14 -8
- package/dist/lib/store.d.ts +129 -7
- package/dist/lib/store.js +1352 -218
- package/dist/lib/templates.d.ts +11 -0
- package/dist/lib/workflow-events.d.ts +6 -0
- package/dist/lib/workflow-provenance.d.ts +8 -0
- package/dist/lib/workflow-runner.d.ts +52 -4
- package/dist/mcp/index.js +2074 -657
- package/dist/runner/index.d.ts +20 -2
- package/dist/runner/index.js +2146 -183
- package/dist/sdk/http.d.ts +364 -4
- package/dist/sdk/http.js +379 -1
- package/dist/sdk/index.d.ts +7 -2
- package/dist/sdk/index.js +2341 -742
- package/dist/serve/index.d.ts +14 -0
- package/dist/serve/index.js +13269 -1830
- package/dist/types.d.ts +75 -3
- package/docs/AUTOMATION_RUNTIME_DESIGN.md +32 -32
- package/docs/CUTOVER-RUNBOOK.md +158 -31
- package/docs/DEPLOYMENT_MODES.md +84 -56
- package/docs/RUNTIME_BOUNDARY.md +26 -26
- package/docs/SHARED-DATABASE-TRANSFER.md +95 -0
- package/docs/SHARED_KIT_EXTRACTION_INVENTORY.md +631 -0
- package/docs/TRANSCRIPT_LOOP_PATTERNS.md +3 -3
- package/docs/UNIFIED_PRODUCT_CONTRACT.md +365 -0
- package/docs/USAGE.md +150 -56
- package/docs/workflows/transcript-feedback-to-loops.json +2 -2
- package/package.json +8 -4
- package/dist/lib/storage/pg-runner-claim.d.ts +0 -40
package/dist/runner/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env bun
|
|
2
|
-
import type { ExecutorResult, Loop, LoopRun } from "../types.js";
|
|
2
|
+
import type { ExecutorResult, Loop, LoopRun, WorkflowSpec } from "../types.js";
|
|
3
3
|
export declare function runnerStatus(machineId?: string | undefined): {
|
|
4
4
|
ok: boolean;
|
|
5
5
|
service: string;
|
|
@@ -11,15 +11,22 @@ export interface RunnerApiClaim {
|
|
|
11
11
|
loop: Loop;
|
|
12
12
|
run: LoopRun;
|
|
13
13
|
claimToken: string;
|
|
14
|
+
workflow?: WorkflowSpec;
|
|
14
15
|
}
|
|
15
16
|
export interface RunnerOnceResult {
|
|
16
17
|
ok: boolean;
|
|
17
18
|
claimed: number;
|
|
18
19
|
completed: LoopRun[];
|
|
19
20
|
}
|
|
21
|
+
export interface RunnerLoopResult extends RunnerOnceResult {
|
|
22
|
+
iterations: number;
|
|
23
|
+
errors: number;
|
|
24
|
+
idle: boolean;
|
|
25
|
+
stopped: boolean;
|
|
26
|
+
}
|
|
20
27
|
export interface RunRunnerOnceOptions {
|
|
21
28
|
apiUrl?: string;
|
|
22
|
-
|
|
29
|
+
apiKey?: string;
|
|
23
30
|
runnerId?: string;
|
|
24
31
|
machineId?: string;
|
|
25
32
|
now?: Date;
|
|
@@ -30,5 +37,16 @@ export interface RunRunnerOnceOptions {
|
|
|
30
37
|
}) => Promise<ExecutorResult>;
|
|
31
38
|
env?: NodeJS.ProcessEnv;
|
|
32
39
|
}
|
|
40
|
+
export interface RunRunnerLoopOptions extends RunRunnerOnceOptions {
|
|
41
|
+
pollIntervalMs?: number;
|
|
42
|
+
maxIterations?: number;
|
|
43
|
+
idleExitAfterMs?: number;
|
|
44
|
+
signal?: AbortSignal;
|
|
45
|
+
sleep?: (ms: number, signal?: AbortSignal) => Promise<void>;
|
|
46
|
+
nowMs?: () => number;
|
|
47
|
+
onError?: (error: unknown) => void;
|
|
48
|
+
}
|
|
33
49
|
export declare function runRunnerOnce(opts?: RunRunnerOnceOptions): Promise<RunnerOnceResult>;
|
|
50
|
+
export declare function runRunnerLoop(opts?: RunRunnerLoopOptions): Promise<RunnerLoopResult>;
|
|
34
51
|
export declare function main(argv?: string[]): Promise<void>;
|
|
52
|
+
export declare function logRunnerCommandFailure(error: unknown): void;
|