@vibeiao/sdk 0.1.33 → 0.1.36
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 +1 -1
- package/dist/agentLoop.js +3 -3
- package/dist/chunk-BQVU67TR.js +63 -0
- package/dist/chunk-RUKN3KQ2.js +158 -0
- package/dist/humanAppLoop.d.ts +73 -0
- package/dist/humanAppLoop.js +316 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +38 -548
- package/dist/outcomeBoundFlow.d.ts +38 -0
- package/dist/outcomeBoundFlow.js +12 -0
- package/dist/strictMemoryRuntime.d.ts +57 -0
- package/dist/strictMemoryRuntime.js +14 -0
- package/dist/treasuryGuardian.d.ts +3 -166
- package/package.json +6 -3
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const OUTCOME_BOUND_FLOW_SCHEMA = "outcome-bound-autonomous-flow/v1";
|
|
2
|
+
type OutcomeBoundRequiredGate = 'public_deploy_url' | 'listing_updated' | 'external_smoke_check' | 'evidence_log' | 'context_pack_preflight';
|
|
3
|
+
declare const OUTCOME_BOUND_REQUIRED_GATES: OutcomeBoundRequiredGate[];
|
|
4
|
+
type OutcomeBoundRunInput = {
|
|
5
|
+
runId: string;
|
|
6
|
+
objective: string;
|
|
7
|
+
publicDeployUrl?: string;
|
|
8
|
+
listingId?: string;
|
|
9
|
+
listingUpdated: boolean;
|
|
10
|
+
externalSmokeCheck: {
|
|
11
|
+
passed: boolean;
|
|
12
|
+
checker?: string;
|
|
13
|
+
checkedAt?: string;
|
|
14
|
+
note?: string;
|
|
15
|
+
};
|
|
16
|
+
evidenceLogPath?: string;
|
|
17
|
+
contextPackPreflight: {
|
|
18
|
+
passed: boolean;
|
|
19
|
+
scope?: string;
|
|
20
|
+
preparedAt?: string;
|
|
21
|
+
};
|
|
22
|
+
notes?: string[];
|
|
23
|
+
};
|
|
24
|
+
type OutcomeBoundRunStatus = {
|
|
25
|
+
schema: typeof OUTCOME_BOUND_FLOW_SCHEMA;
|
|
26
|
+
runId: string;
|
|
27
|
+
objective: string;
|
|
28
|
+
completed: boolean;
|
|
29
|
+
failedGates: OutcomeBoundRequiredGate[];
|
|
30
|
+
score: number;
|
|
31
|
+
status: 'pass' | 'fail';
|
|
32
|
+
reasons: string[];
|
|
33
|
+
createdAt: string;
|
|
34
|
+
};
|
|
35
|
+
declare const evaluateOutcomeBoundRun: (input: OutcomeBoundRunInput) => OutcomeBoundRunStatus;
|
|
36
|
+
declare const assertOutcomeBoundCompleted: (input: OutcomeBoundRunInput) => OutcomeBoundRunStatus;
|
|
37
|
+
|
|
38
|
+
export { OUTCOME_BOUND_FLOW_SCHEMA, OUTCOME_BOUND_REQUIRED_GATES, type OutcomeBoundRequiredGate, type OutcomeBoundRunInput, type OutcomeBoundRunStatus, assertOutcomeBoundCompleted, evaluateOutcomeBoundRun };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
OUTCOME_BOUND_FLOW_SCHEMA,
|
|
3
|
+
OUTCOME_BOUND_REQUIRED_GATES,
|
|
4
|
+
assertOutcomeBoundCompleted,
|
|
5
|
+
evaluateOutcomeBoundRun
|
|
6
|
+
} from "./chunk-BQVU67TR.js";
|
|
7
|
+
export {
|
|
8
|
+
OUTCOME_BOUND_FLOW_SCHEMA,
|
|
9
|
+
OUTCOME_BOUND_REQUIRED_GATES,
|
|
10
|
+
assertOutcomeBoundCompleted,
|
|
11
|
+
evaluateOutcomeBoundRun
|
|
12
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
declare const STRICT_MEMORY_RUNTIME_SCHEMA = "strict-memory-runtime/v1";
|
|
2
|
+
type StrictMemoryTriggerSet = {
|
|
3
|
+
keywords: string[];
|
|
4
|
+
minTaskChars: number;
|
|
5
|
+
};
|
|
6
|
+
type StrictMemoryUpgradePolicy = {
|
|
7
|
+
mode: 'observe' | 'enforce';
|
|
8
|
+
safeUpgrade: {
|
|
9
|
+
backupBeforeEnable: boolean;
|
|
10
|
+
requireHealthcheckPass: boolean;
|
|
11
|
+
rollbackOnBlockRateAbove: number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
type StrictMemoryRuntimePreset = {
|
|
15
|
+
schema: typeof STRICT_MEMORY_RUNTIME_SCHEMA;
|
|
16
|
+
enabled: boolean;
|
|
17
|
+
requireContextPackForComplex: boolean;
|
|
18
|
+
requireSemanticRecallForComplex: boolean;
|
|
19
|
+
requireApprovalPreflightForMutations: boolean;
|
|
20
|
+
maxContextPackAgeMin: number;
|
|
21
|
+
mutationKeywords: string[];
|
|
22
|
+
complexTaskTrigger: StrictMemoryTriggerSet;
|
|
23
|
+
upgradePolicy: StrictMemoryUpgradePolicy;
|
|
24
|
+
};
|
|
25
|
+
type StrictMemoryEvaluationInput = {
|
|
26
|
+
taskText: string;
|
|
27
|
+
isMutation: boolean;
|
|
28
|
+
contextPackPrepared: boolean;
|
|
29
|
+
semanticRecallConfirmed: boolean;
|
|
30
|
+
approvalPreflightPassed: boolean;
|
|
31
|
+
};
|
|
32
|
+
type StrictMemoryEvaluation = {
|
|
33
|
+
complex: boolean;
|
|
34
|
+
shouldEnforce: boolean;
|
|
35
|
+
allowed: boolean;
|
|
36
|
+
requiredSteps: string[];
|
|
37
|
+
missingSteps: string[];
|
|
38
|
+
reasons: string[];
|
|
39
|
+
};
|
|
40
|
+
type StrictMemoryUpgradeInput = {
|
|
41
|
+
current?: Partial<StrictMemoryRuntimePreset>;
|
|
42
|
+
healthcheckPassed?: boolean;
|
|
43
|
+
backupCreated?: boolean;
|
|
44
|
+
recentBlockRate?: number;
|
|
45
|
+
targetMode?: 'observe' | 'enforce';
|
|
46
|
+
};
|
|
47
|
+
type StrictMemoryUpgradeResult = {
|
|
48
|
+
next: StrictMemoryRuntimePreset;
|
|
49
|
+
safe: boolean;
|
|
50
|
+
reasons: string[];
|
|
51
|
+
};
|
|
52
|
+
declare const createStrictMemoryRuntimePreset: (overrides?: Partial<StrictMemoryRuntimePreset>) => StrictMemoryRuntimePreset;
|
|
53
|
+
declare const isComplexTask: (taskText: string, preset?: StrictMemoryRuntimePreset) => boolean;
|
|
54
|
+
declare const evaluateStrictMemoryExecution: (input: StrictMemoryEvaluationInput, preset?: StrictMemoryRuntimePreset) => StrictMemoryEvaluation;
|
|
55
|
+
declare const upgradeToStrictMemoryRuntimePreset: (input?: StrictMemoryUpgradeInput) => StrictMemoryUpgradeResult;
|
|
56
|
+
|
|
57
|
+
export { STRICT_MEMORY_RUNTIME_SCHEMA, type StrictMemoryEvaluation, type StrictMemoryEvaluationInput, type StrictMemoryRuntimePreset, type StrictMemoryTriggerSet, type StrictMemoryUpgradeInput, type StrictMemoryUpgradePolicy, type StrictMemoryUpgradeResult, createStrictMemoryRuntimePreset, evaluateStrictMemoryExecution, isComplexTask, upgradeToStrictMemoryRuntimePreset };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import {
|
|
2
|
+
STRICT_MEMORY_RUNTIME_SCHEMA,
|
|
3
|
+
createStrictMemoryRuntimePreset,
|
|
4
|
+
evaluateStrictMemoryExecution,
|
|
5
|
+
isComplexTask,
|
|
6
|
+
upgradeToStrictMemoryRuntimePreset
|
|
7
|
+
} from "./chunk-RUKN3KQ2.js";
|
|
8
|
+
export {
|
|
9
|
+
STRICT_MEMORY_RUNTIME_SCHEMA,
|
|
10
|
+
createStrictMemoryRuntimePreset,
|
|
11
|
+
evaluateStrictMemoryExecution,
|
|
12
|
+
isComplexTask,
|
|
13
|
+
upgradeToStrictMemoryRuntimePreset
|
|
14
|
+
};
|
|
@@ -6,6 +6,8 @@ import './survivalPlaybook.js';
|
|
|
6
6
|
import './survivalIntegration.js';
|
|
7
7
|
import './survivalEscapeHatch.js';
|
|
8
8
|
import './marketDiscovery.js';
|
|
9
|
+
import './outcomeBoundFlow.js';
|
|
10
|
+
import './strictMemoryRuntime.js';
|
|
9
11
|
import './solana.js';
|
|
10
12
|
import '@coral-xyz/anchor';
|
|
11
13
|
|
|
@@ -825,171 +827,6 @@ declare const createDurabilityProxyClient: (options: DurabilityProxyClientOption
|
|
|
825
827
|
}>;
|
|
826
828
|
};
|
|
827
829
|
|
|
828
|
-
declare const HUMAN_APP_LOOP_SCHEMA = "human-app-reflective-loop/v1";
|
|
829
|
-
declare const HUMAN_APP_LOOP_PHASES: readonly ["research", "hypothesis", "build", "launch", "observe", "reflect", "iterate"];
|
|
830
|
-
type HumanAppLoopPhase = (typeof HUMAN_APP_LOOP_PHASES)[number];
|
|
831
|
-
type HumanAppPhaseContract = {
|
|
832
|
-
phase: HumanAppLoopPhase;
|
|
833
|
-
requiredInputs: string[];
|
|
834
|
-
requiredOutputs: string[];
|
|
835
|
-
goNoGoCriteria: string[];
|
|
836
|
-
stopOrRollbackConditions: string[];
|
|
837
|
-
kpis: string[];
|
|
838
|
-
};
|
|
839
|
-
type HumanAppLoopSpec = {
|
|
840
|
-
schema: typeof HUMAN_APP_LOOP_SCHEMA;
|
|
841
|
-
createdAt: string;
|
|
842
|
-
phases: HumanAppPhaseContract[];
|
|
843
|
-
optionalToolUsePolicy: {
|
|
844
|
-
enabled: true;
|
|
845
|
-
rules: string[];
|
|
846
|
-
};
|
|
847
|
-
overlapWithAgentListingLoops: {
|
|
848
|
-
overlap: string[];
|
|
849
|
-
differences: string[];
|
|
850
|
-
};
|
|
851
|
-
evaluationRubric: {
|
|
852
|
-
dimensions: Array<{
|
|
853
|
-
id: 'researchDepth' | 'iterationQuality' | 'outcomeUsefulness';
|
|
854
|
-
description: string;
|
|
855
|
-
weight: number;
|
|
856
|
-
passThreshold: number;
|
|
857
|
-
}>;
|
|
858
|
-
overallPassThreshold: number;
|
|
859
|
-
};
|
|
860
|
-
};
|
|
861
|
-
type HumanAppTrialInput = {
|
|
862
|
-
id: string;
|
|
863
|
-
summary?: string;
|
|
864
|
-
evidence: {
|
|
865
|
-
researchNotesCount: number;
|
|
866
|
-
hypothesisCount: number;
|
|
867
|
-
experimentsRun: number;
|
|
868
|
-
measurableKpiCount: number;
|
|
869
|
-
rollbackPlanPresent: boolean;
|
|
870
|
-
shippedArtifactPresent: boolean;
|
|
871
|
-
iterationSteps: number;
|
|
872
|
-
};
|
|
873
|
-
};
|
|
874
|
-
type HumanAppTrialEvaluation = {
|
|
875
|
-
id: string;
|
|
876
|
-
scores: {
|
|
877
|
-
researchDepth: number;
|
|
878
|
-
iterationQuality: number;
|
|
879
|
-
outcomeUsefulness: number;
|
|
880
|
-
};
|
|
881
|
-
weightedScore: number;
|
|
882
|
-
pass: boolean;
|
|
883
|
-
notes: string[];
|
|
884
|
-
};
|
|
885
|
-
declare const createHumanAppLoopSpec: (createdAt?: string) => HumanAppLoopSpec;
|
|
886
|
-
declare const evaluateHumanAppTrial: (trial: HumanAppTrialInput, spec?: HumanAppLoopSpec) => HumanAppTrialEvaluation;
|
|
887
|
-
type ScaffoldHumanAppLoopPackOptions = {
|
|
888
|
-
root?: string;
|
|
889
|
-
outputDir?: string;
|
|
890
|
-
overwrite?: boolean;
|
|
891
|
-
};
|
|
892
|
-
type ScaffoldHumanAppLoopPackResult = {
|
|
893
|
-
root: string;
|
|
894
|
-
outputDir: string;
|
|
895
|
-
files: string[];
|
|
896
|
-
createdAt: string;
|
|
897
|
-
};
|
|
898
|
-
declare const scaffoldHumanAppLoopPack: (options?: ScaffoldHumanAppLoopPackOptions) => Promise<ScaffoldHumanAppLoopPackResult>;
|
|
899
|
-
|
|
900
|
-
declare const OUTCOME_BOUND_FLOW_SCHEMA = "outcome-bound-autonomous-flow/v1";
|
|
901
|
-
type OutcomeBoundRequiredGate = 'public_deploy_url' | 'listing_updated' | 'external_smoke_check' | 'evidence_log' | 'context_pack_preflight';
|
|
902
|
-
declare const OUTCOME_BOUND_REQUIRED_GATES: OutcomeBoundRequiredGate[];
|
|
903
|
-
type OutcomeBoundRunInput = {
|
|
904
|
-
runId: string;
|
|
905
|
-
objective: string;
|
|
906
|
-
publicDeployUrl?: string;
|
|
907
|
-
listingId?: string;
|
|
908
|
-
listingUpdated: boolean;
|
|
909
|
-
externalSmokeCheck: {
|
|
910
|
-
passed: boolean;
|
|
911
|
-
checker?: string;
|
|
912
|
-
checkedAt?: string;
|
|
913
|
-
note?: string;
|
|
914
|
-
};
|
|
915
|
-
evidenceLogPath?: string;
|
|
916
|
-
contextPackPreflight: {
|
|
917
|
-
passed: boolean;
|
|
918
|
-
scope?: string;
|
|
919
|
-
preparedAt?: string;
|
|
920
|
-
};
|
|
921
|
-
notes?: string[];
|
|
922
|
-
};
|
|
923
|
-
type OutcomeBoundRunStatus = {
|
|
924
|
-
schema: typeof OUTCOME_BOUND_FLOW_SCHEMA;
|
|
925
|
-
runId: string;
|
|
926
|
-
objective: string;
|
|
927
|
-
completed: boolean;
|
|
928
|
-
failedGates: OutcomeBoundRequiredGate[];
|
|
929
|
-
score: number;
|
|
930
|
-
status: 'pass' | 'fail';
|
|
931
|
-
reasons: string[];
|
|
932
|
-
createdAt: string;
|
|
933
|
-
};
|
|
934
|
-
declare const evaluateOutcomeBoundRun: (input: OutcomeBoundRunInput) => OutcomeBoundRunStatus;
|
|
935
|
-
declare const assertOutcomeBoundCompleted: (input: OutcomeBoundRunInput) => OutcomeBoundRunStatus;
|
|
936
|
-
|
|
937
|
-
declare const STRICT_MEMORY_RUNTIME_SCHEMA = "strict-memory-runtime/v1";
|
|
938
|
-
type StrictMemoryTriggerSet = {
|
|
939
|
-
keywords: string[];
|
|
940
|
-
minTaskChars: number;
|
|
941
|
-
};
|
|
942
|
-
type StrictMemoryUpgradePolicy = {
|
|
943
|
-
mode: 'observe' | 'enforce';
|
|
944
|
-
safeUpgrade: {
|
|
945
|
-
backupBeforeEnable: boolean;
|
|
946
|
-
requireHealthcheckPass: boolean;
|
|
947
|
-
rollbackOnBlockRateAbove: number;
|
|
948
|
-
};
|
|
949
|
-
};
|
|
950
|
-
type StrictMemoryRuntimePreset = {
|
|
951
|
-
schema: typeof STRICT_MEMORY_RUNTIME_SCHEMA;
|
|
952
|
-
enabled: boolean;
|
|
953
|
-
requireContextPackForComplex: boolean;
|
|
954
|
-
requireSemanticRecallForComplex: boolean;
|
|
955
|
-
requireApprovalPreflightForMutations: boolean;
|
|
956
|
-
maxContextPackAgeMin: number;
|
|
957
|
-
mutationKeywords: string[];
|
|
958
|
-
complexTaskTrigger: StrictMemoryTriggerSet;
|
|
959
|
-
upgradePolicy: StrictMemoryUpgradePolicy;
|
|
960
|
-
};
|
|
961
|
-
type StrictMemoryEvaluationInput = {
|
|
962
|
-
taskText: string;
|
|
963
|
-
isMutation: boolean;
|
|
964
|
-
contextPackPrepared: boolean;
|
|
965
|
-
semanticRecallConfirmed: boolean;
|
|
966
|
-
approvalPreflightPassed: boolean;
|
|
967
|
-
};
|
|
968
|
-
type StrictMemoryEvaluation = {
|
|
969
|
-
complex: boolean;
|
|
970
|
-
shouldEnforce: boolean;
|
|
971
|
-
allowed: boolean;
|
|
972
|
-
requiredSteps: string[];
|
|
973
|
-
missingSteps: string[];
|
|
974
|
-
reasons: string[];
|
|
975
|
-
};
|
|
976
|
-
type StrictMemoryUpgradeInput = {
|
|
977
|
-
current?: Partial<StrictMemoryRuntimePreset>;
|
|
978
|
-
healthcheckPassed?: boolean;
|
|
979
|
-
backupCreated?: boolean;
|
|
980
|
-
recentBlockRate?: number;
|
|
981
|
-
targetMode?: 'observe' | 'enforce';
|
|
982
|
-
};
|
|
983
|
-
type StrictMemoryUpgradeResult = {
|
|
984
|
-
next: StrictMemoryRuntimePreset;
|
|
985
|
-
safe: boolean;
|
|
986
|
-
reasons: string[];
|
|
987
|
-
};
|
|
988
|
-
declare const createStrictMemoryRuntimePreset: (overrides?: Partial<StrictMemoryRuntimePreset>) => StrictMemoryRuntimePreset;
|
|
989
|
-
declare const isComplexTask: (taskText: string, preset?: StrictMemoryRuntimePreset) => boolean;
|
|
990
|
-
declare const evaluateStrictMemoryExecution: (input: StrictMemoryEvaluationInput, preset?: StrictMemoryRuntimePreset) => StrictMemoryEvaluation;
|
|
991
|
-
declare const upgradeToStrictMemoryRuntimePreset: (input?: StrictMemoryUpgradeInput) => StrictMemoryUpgradeResult;
|
|
992
|
-
|
|
993
830
|
interface VibeClientOptions {
|
|
994
831
|
baseUrl?: string;
|
|
995
832
|
fetcher?: typeof fetch;
|
|
@@ -1449,4 +1286,4 @@ declare const getResourceSnapshot: (options: {
|
|
|
1449
1286
|
apiBase?: string;
|
|
1450
1287
|
}) => Promise<ResourceSnapshot>;
|
|
1451
1288
|
|
|
1452
|
-
export {
|
|
1289
|
+
export { assertSurvivalProvidersConfigured as $, type AgentResourceProvidersManifest as A, type BuybackEvent as B, CONTEXT_PACK_SECTION_ORDER as C, type DurabilityCheckpointWriteOptions as D, type MemoryPingChallengeResponse as E, type MemoryPingPayload as F, type ProcurementDecision as G, type ProcurementTaskProfile as H, type ProcurementWeights as I, type ResourceSnapshot as J, ReviewGate as K, LISTING_NAME_MAX_LENGTH as L, type MarketingCampaign as M, type ReviewGateRecord as N, type OpenRouterCredits as O, type ProcurementCandidate as P, type ReviewRequiredPayload as Q, type ResourceProviderManifestEntry as R, SdkAutoUpdatedRestartRequiredError as S, type SdkUpdateCheckOptions as T, type TopupDecision, type TopupRequest, type TreasuryLedgerEvent, type TreasuryPolicy, type TreasuryPolicyV1, type TreasuryState, type SdkUpdatePolicyCheckOptions as U, SdkUpdateRequiredError as V, type SdkUpdateStatus as W, VIBEIAO_IDL as X, VibeClient as Y, type VibeClientOptions as Z, VibeRegistry as _, type AnalyticsPoint as a, buildBadgeMarkdown as a0, buildClaimMessage as a1, buildJupiterSwapUrl as a2, buildListingVersionMessage as a3, buildMemoryPingMessage as a4, buildOwnerTransferMessage as a5, buildProcurementPrompt as a6, buildRaydiumSwapUrl as a7, buildReviewPrompt as a8, buildReviewRequired as a9, buildReviewResponseMessage as aa, buildSdkUpdateCommand as ab, buildShareCopy as ac, buildShareLink as ad, buildTradeLinks as ae, checkForSdkUpdate as af, checkForSdkUpdatePolicy as ag, compareVersions as ah, createApiCreditProvider as ai, createApiCreditProviders as aj, createApiCreditProvidersFromManifest as ak, createCampaign as al, createContextPack as am, createDurabilityProxyClient as an, decideProcurementForTask as ao, estimateContextPackTokens as ap, getResourceSnapshot as aq, normalizeListingText as ar, rankListingsForTask as as, sanitizeListingNaming as at, scoreListingForTask as au, validateContextPack as av, validateListingNaming as aw, type ApiCreditProvider as b, buildTreasuryLedgerEvent, type ApiCreditProviderFactoryOptions as c, createTreasuryPolicy, type ApiCreditProviderPreset as d, type ApiCreditProviderPresetInput as e, evaluateTopupRequest, type ApiResponse as f, type ContextPack as g, type ContextPackBudget as h, type ContextPackInput as i, type ContextPackOptions as j, type ContextPackSectionKey as k, type ContextPackSections as l, type DurabilityProxyClientOptions as m, type DurabilityRestoreDrillWriteOptions as n, LISTING_NAME_RECOMMENDED_MAX as o, LISTING_TAGLINE_MAX_LENGTH as p, LISTING_TAGLINE_RECOMMENDED_MAX as q, type LeaderboardEntry as r, type LeaderboardQuery as s, type ListingNamingValidationOptions as t, treasuryStateFromSnapshot, type ListingNamingValidationResult as u, type ListingQuery as v, validateTreasuryPolicy, type ListingReviewCreatePayload as w, type ListingReviewResponsePayload as x, type ListingVersionPayload as y, type MarketingLinkOptions as z };
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@vibeiao/sdk",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.36",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"./survival-escape-hatch": "./dist/survivalEscapeHatch.js",
|
|
16
16
|
"./agent-loop": "./dist/agentLoop.js",
|
|
17
17
|
"./market-discovery": "./dist/marketDiscovery.js",
|
|
18
|
-
"./treasury-guardian": "./dist/treasuryGuardian.js"
|
|
18
|
+
"./treasury-guardian": "./dist/treasuryGuardian.js",
|
|
19
|
+
"./human-app-loop": "./dist/humanAppLoop.js",
|
|
20
|
+
"./outcome-bound-flow": "./dist/outcomeBoundFlow.js",
|
|
21
|
+
"./strict-memory-runtime": "./dist/strictMemoryRuntime.js"
|
|
19
22
|
},
|
|
20
23
|
"files": [
|
|
21
24
|
"dist",
|
|
@@ -25,7 +28,7 @@
|
|
|
25
28
|
"access": "public"
|
|
26
29
|
},
|
|
27
30
|
"scripts": {
|
|
28
|
-
"build": "tsup src/index.ts src/memory.ts src/compoundingMemory.ts src/selfReliance.ts src/solana.ts src/reflection.ts src/survivalPlaybook.ts src/survivalIntegration.ts src/survivalEscapeHatch.ts src/agentLoop.ts src/marketDiscovery.ts src/treasuryGuardian.ts --format esm --dts --tsconfig tsconfig.json --out-dir dist --define.__VIBEIAO_SDK_VERSION__=\\\"$npm_package_version\\\"",
|
|
31
|
+
"build": "tsup src/index.ts src/memory.ts src/compoundingMemory.ts src/selfReliance.ts src/solana.ts src/reflection.ts src/survivalPlaybook.ts src/survivalIntegration.ts src/survivalEscapeHatch.ts src/agentLoop.ts src/marketDiscovery.ts src/treasuryGuardian.ts src/humanAppLoop.ts src/outcomeBoundFlow.ts src/strictMemoryRuntime.ts --format esm --dts --tsconfig tsconfig.json --out-dir dist --define.__VIBEIAO_SDK_VERSION__=\\\"$npm_package_version\\\"",
|
|
29
32
|
"test:e2e-memory": "pnpm build && node --test test/memory.e2e.test.mjs"
|
|
30
33
|
},
|
|
31
34
|
"dependencies": {
|