@openprose/reactor 0.1.0-rc.1

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.
Files changed (78) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +231 -0
  3. package/dist/adapters/agent-sdk-passthrough/index.d.ts +8 -0
  4. package/dist/adapters/agent-sdk-passthrough/index.d.ts.map +1 -0
  5. package/dist/adapters/agent-sdk-passthrough/index.js +25 -0
  6. package/dist/adapters/clock-system/index.d.ts +9 -0
  7. package/dist/adapters/clock-system/index.d.ts.map +1 -0
  8. package/dist/adapters/clock-system/index.js +39 -0
  9. package/dist/adapters/connector-static/index.d.ts +11 -0
  10. package/dist/adapters/connector-static/index.d.ts.map +1 -0
  11. package/dist/adapters/connector-static/index.js +35 -0
  12. package/dist/adapters/event-sink-memory/index.d.ts +10 -0
  13. package/dist/adapters/event-sink-memory/index.d.ts.map +1 -0
  14. package/dist/adapters/event-sink-memory/index.js +20 -0
  15. package/dist/adapters/index.d.ts +10 -0
  16. package/dist/adapters/index.d.ts.map +1 -0
  17. package/dist/adapters/index.js +25 -0
  18. package/dist/adapters/json.d.ts +3 -0
  19. package/dist/adapters/json.d.ts.map +1 -0
  20. package/dist/adapters/json.js +61 -0
  21. package/dist/adapters/model-gateway-record-replay/index.d.ts +24 -0
  22. package/dist/adapters/model-gateway-record-replay/index.d.ts.map +1 -0
  23. package/dist/adapters/model-gateway-record-replay/index.js +55 -0
  24. package/dist/adapters/sandbox-null/index.d.ts +3 -0
  25. package/dist/adapters/sandbox-null/index.d.ts.map +1 -0
  26. package/dist/adapters/sandbox-null/index.js +8 -0
  27. package/dist/adapters/storage-fs/index.d.ts +14 -0
  28. package/dist/adapters/storage-fs/index.d.ts.map +1 -0
  29. package/dist/adapters/storage-fs/index.js +65 -0
  30. package/dist/adapters/storage-memory/index.d.ts +11 -0
  31. package/dist/adapters/storage-memory/index.d.ts.map +1 -0
  32. package/dist/adapters/storage-memory/index.js +34 -0
  33. package/dist/adapters/types.d.ts +22 -0
  34. package/dist/adapters/types.d.ts.map +1 -0
  35. package/dist/adapters/types.js +97 -0
  36. package/dist/composition/index.d.ts +79 -0
  37. package/dist/composition/index.d.ts.map +1 -0
  38. package/dist/composition/index.js +280 -0
  39. package/dist/cost/index.d.ts +49 -0
  40. package/dist/cost/index.d.ts.map +1 -0
  41. package/dist/cost/index.js +206 -0
  42. package/dist/evidence-plan/index.d.ts +57 -0
  43. package/dist/evidence-plan/index.d.ts.map +1 -0
  44. package/dist/evidence-plan/index.js +164 -0
  45. package/dist/forecast/index.d.ts +39 -0
  46. package/dist/forecast/index.d.ts.map +1 -0
  47. package/dist/forecast/index.js +119 -0
  48. package/dist/index.d.ts +14 -0
  49. package/dist/index.d.ts.map +1 -0
  50. package/dist/index.js +29 -0
  51. package/dist/judge/index.d.ts +29 -0
  52. package/dist/judge/index.d.ts.map +1 -0
  53. package/dist/judge/index.js +138 -0
  54. package/dist/kernel/index.d.ts +170 -0
  55. package/dist/kernel/index.d.ts.map +1 -0
  56. package/dist/kernel/index.js +637 -0
  57. package/dist/memo/index.d.ts +59 -0
  58. package/dist/memo/index.d.ts.map +1 -0
  59. package/dist/memo/index.js +189 -0
  60. package/dist/policy/index.d.ts +249 -0
  61. package/dist/policy/index.d.ts.map +1 -0
  62. package/dist/policy/index.js +1463 -0
  63. package/dist/projection/index.d.ts +119 -0
  64. package/dist/projection/index.d.ts.map +1 -0
  65. package/dist/projection/index.js +506 -0
  66. package/dist/reactor/index.d.ts +54 -0
  67. package/dist/reactor/index.d.ts.map +1 -0
  68. package/dist/reactor/index.js +1861 -0
  69. package/dist/receipt/index.d.ts +190 -0
  70. package/dist/receipt/index.d.ts.map +1 -0
  71. package/dist/receipt/index.js +646 -0
  72. package/dist/sdk/exit-bundle.d.ts +144 -0
  73. package/dist/sdk/exit-bundle.d.ts.map +1 -0
  74. package/dist/sdk/exit-bundle.js +1034 -0
  75. package/dist/sdk/index.d.ts +201 -0
  76. package/dist/sdk/index.d.ts.map +1 -0
  77. package/dist/sdk/index.js +418 -0
  78. package/package.json +89 -0
@@ -0,0 +1,190 @@
1
+ export declare const RECEIPT_SCHEMA: "openprose.receipt";
2
+ export declare const RECEIPT_VERSION: 0;
3
+ export declare const RECEIPT_HASH_ALGORITHM: "sha256";
4
+ export type ContentHashV0 = `sha256:${string}`;
5
+ export type ReceiptSchemaV0 = typeof RECEIPT_SCHEMA;
6
+ export type ReceiptVersionV0 = typeof RECEIPT_VERSION;
7
+ export type ReceiptHashAlgorithmV0 = typeof RECEIPT_HASH_ALGORITHM;
8
+ export type ReceiptEventCauseV0 = "real-input" | "forecast-recheck" | "escalation";
9
+ export type ReceiptRecheckKindV0 = "evidence-age" | "plan-age";
10
+ export type ReceiptRoleV0 = "judge" | "fulfill" | "summarize" | "policy-compile";
11
+ export type ReceiptVerdictStatusV0 = "up" | "drifting" | "down" | "blocked";
12
+ export type ReceiptCalibrationGradeV0 = "authored" | "accrued" | "none";
13
+ export type ReceiptInterruptCauseV0 = "needs-judgment" | "needs-input" | "contract-declared";
14
+ export type ReceiptStalenessOutcomeV0 = "fresh" | "stale-refetched" | "stale-blocked";
15
+ export interface ReceiptCoreV0 {
16
+ readonly responsibility_id: string;
17
+ readonly contract_revision: ContentHashV0;
18
+ readonly event_cause: ReceiptEventCauseV0;
19
+ readonly recheck_kind?: ReceiptRecheckKindV0;
20
+ readonly memo_key: string;
21
+ readonly evidence_input_ids: readonly ContentHashV0[];
22
+ readonly as_of: string;
23
+ readonly role: ReceiptRoleV0;
24
+ }
25
+ export interface NullReceiptSignatureV0 {
26
+ readonly scheme: "none";
27
+ readonly null_reason: string;
28
+ }
29
+ export interface AdapterReceiptSignatureV0 {
30
+ readonly scheme: string;
31
+ readonly signer_id: string;
32
+ readonly signature: string;
33
+ readonly signed_payload_hash: ContentHashV0;
34
+ }
35
+ export type ReceiptSignatureV0 = NullReceiptSignatureV0 | AdapterReceiptSignatureV0;
36
+ export declare const NULL_SIGNER_ADAPTER_NOT_CONFIGURED_REASON_V0: "no-signer-adapter-configured";
37
+ export declare function createNullSignerReceiptSignatureV0(): NullReceiptSignatureV0;
38
+ export interface ReceiptConfidenceV0 {
39
+ readonly value: number;
40
+ readonly derivation_method: string;
41
+ readonly calibration_grade: ReceiptCalibrationGradeV0;
42
+ readonly label_source: string;
43
+ }
44
+ export interface ReceiptBlockedV0 {
45
+ readonly reason: string;
46
+ readonly fix_target: string;
47
+ readonly interrupt_cause: ReceiptInterruptCauseV0;
48
+ }
49
+ export interface ReceiptVerdictV0 {
50
+ readonly status: ReceiptVerdictStatusV0;
51
+ readonly confidence: ReceiptConfidenceV0;
52
+ readonly blocked?: ReceiptBlockedV0;
53
+ }
54
+ export interface ConsumedFreshnessEvaluationV0 {
55
+ readonly receipt_hash: ContentHashV0;
56
+ readonly next_forecast_recheck: string;
57
+ readonly staleness_outcome: ReceiptStalenessOutcomeV0;
58
+ }
59
+ export interface ReceiptFreshnessV0 {
60
+ readonly as_of: string;
61
+ readonly next_forecast_recheck: string;
62
+ readonly transitive_freshness_policy_ref?: string;
63
+ readonly consumed_freshness_evaluated?: readonly ConsumedFreshnessEvaluationV0[];
64
+ }
65
+ export interface ConsumedReceiptPinV0 {
66
+ readonly upstream_content_hash: ContentHashV0;
67
+ readonly contract_revision: ContentHashV0;
68
+ readonly acceptable_signer_set: readonly string[];
69
+ }
70
+ export interface ReceiptCompositionV0 {
71
+ readonly consumed_receipts: readonly ConsumedReceiptPinV0[];
72
+ readonly cycle_checked: boolean;
73
+ }
74
+ export interface ReceiptTokensV0 {
75
+ readonly fresh: number;
76
+ readonly reused: number;
77
+ }
78
+ export interface ReceiptProviderNormV0 {
79
+ readonly schema: string;
80
+ readonly [key: string]: unknown;
81
+ }
82
+ export interface ReceiptCostV0 {
83
+ readonly provider: string;
84
+ readonly model: string;
85
+ readonly role: ReceiptRoleV0;
86
+ readonly tags: readonly string[];
87
+ readonly responsibility_id: string;
88
+ readonly run_id: string;
89
+ readonly as_of: string;
90
+ readonly tokens: ReceiptTokensV0;
91
+ readonly surprise_cause: ReceiptEventCauseV0;
92
+ readonly provider_norm?: ReceiptProviderNormV0;
93
+ }
94
+ export interface ReceiptV0 {
95
+ readonly schema: ReceiptSchemaV0;
96
+ readonly v: ReceiptVersionV0;
97
+ readonly hash_algorithm: ReceiptHashAlgorithmV0;
98
+ readonly content_hash: ContentHashV0;
99
+ readonly core: ReceiptCoreV0;
100
+ readonly sig: ReceiptSignatureV0;
101
+ readonly verdict: ReceiptVerdictV0;
102
+ readonly freshness: ReceiptFreshnessV0;
103
+ readonly composition: ReceiptCompositionV0;
104
+ readonly cost: ReceiptCostV0;
105
+ }
106
+ export type ReceiptHashPayloadV0 = Omit<ReceiptV0, "content_hash">;
107
+ export interface ReceiptV0Input {
108
+ readonly core: ReceiptCoreV0;
109
+ readonly sig: ReceiptSignatureV0;
110
+ readonly verdict: ReceiptVerdictV0;
111
+ readonly freshness: ReceiptFreshnessV0;
112
+ readonly composition: ReceiptCompositionV0;
113
+ readonly cost: ReceiptCostV0;
114
+ }
115
+ export interface ReceiptTokenTruthV0 {
116
+ readonly responsibility_id: string;
117
+ readonly run_id: string;
118
+ readonly provider: string;
119
+ readonly model: string;
120
+ readonly role: ReceiptRoleV0;
121
+ readonly tags: readonly string[];
122
+ readonly as_of: string;
123
+ readonly fresh: number;
124
+ readonly reused: number;
125
+ readonly surprise_cause: ReceiptEventCauseV0;
126
+ }
127
+ export type ReceiptVerificationResultV0 = {
128
+ readonly ok: true;
129
+ readonly content_hash: ContentHashV0;
130
+ } | {
131
+ readonly ok: false;
132
+ readonly errors: readonly string[];
133
+ readonly expected_content_hash?: ContentHashV0;
134
+ readonly actual_content_hash?: string;
135
+ };
136
+ export type ReceiptSignerPostureInspectionV0 = {
137
+ readonly kind: "null";
138
+ readonly scheme: "none";
139
+ } | {
140
+ readonly kind: "signed";
141
+ readonly scheme: string;
142
+ };
143
+ export interface ReceiptFreshnessInspectionV0 {
144
+ readonly as_of: string | null;
145
+ readonly next_forecast_recheck: string | null;
146
+ readonly transitive_freshness_policy_ref: string | null;
147
+ readonly consumed_freshness_evaluated_count: number;
148
+ }
149
+ export interface ReceiptCompositionPinInspectionV0 {
150
+ readonly upstream_content_hash: ContentHashV0 | null;
151
+ readonly contract_revision: ContentHashV0 | null;
152
+ readonly acceptable_signer_set: readonly string[];
153
+ }
154
+ export interface ReceiptCompositionInspectionV0 {
155
+ readonly consumed_receipt_count: number;
156
+ readonly consumed_receipts: readonly ReceiptCompositionPinInspectionV0[];
157
+ readonly cycle_checked: boolean | null;
158
+ }
159
+ export interface ReceiptTokenTruthInspectionV0 {
160
+ readonly fresh: number | null;
161
+ readonly reused: number | null;
162
+ readonly provider: string | null;
163
+ readonly model: string | null;
164
+ readonly role: string | null;
165
+ readonly surprise_cause: string | null;
166
+ }
167
+ export interface ReceiptProofInspectionV0 {
168
+ readonly ok: boolean;
169
+ readonly errors: readonly string[];
170
+ readonly schema: string | null;
171
+ readonly v: number | null;
172
+ readonly content_hash: ContentHashV0 | null;
173
+ readonly contract_revision: ContentHashV0 | null;
174
+ readonly responsibility_id: string | null;
175
+ readonly role: string | null;
176
+ readonly signer: ReceiptSignerPostureInspectionV0 | null;
177
+ readonly freshness: ReceiptFreshnessInspectionV0;
178
+ readonly composition: ReceiptCompositionInspectionV0;
179
+ readonly token_truth: ReceiptTokenTruthInspectionV0;
180
+ }
181
+ export declare function createReceiptV0(input: ReceiptV0Input): ReceiptV0;
182
+ export declare function verifyReceiptV0(value: unknown): ReceiptVerificationResultV0;
183
+ export declare function assertReceiptV0(value: unknown): asserts value is ReceiptV0;
184
+ export declare function inspectReceiptProofV0(value: unknown): ReceiptProofInspectionV0;
185
+ export declare function readTokenTruthV0(receipt: ReceiptV0): ReceiptTokenTruthV0;
186
+ export declare function serializeReceiptV0(receipt: ReceiptV0): string;
187
+ export declare function computeReceiptContentHashV0(value: ReceiptV0 | ReceiptHashPayloadV0): ContentHashV0;
188
+ export declare function canonicalizeForReceiptV0(value: unknown): string;
189
+ export declare function hashCanonicalReceiptV0(canonical: string): ContentHashV0;
190
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/receipt/index.ts"],"names":[],"mappings":"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"}