percolation-inversion-compiler-ts 0.4.5 → 0.5.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/CHANGELOG.md +8 -0
- package/README.md +77 -22
- package/agent-manifest.json +50 -0
- package/dist/alt_lift/index.d.ts +7 -0
- package/dist/alt_lift/index.js +101 -0
- package/dist/bit_engine/index.d.ts +8 -0
- package/dist/bit_engine/index.js +213 -0
- package/dist/cli/main.js +2106 -162
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1611 -16
- package/dist/phase_lab/index.d.ts +26 -0
- package/dist/phase_lab/index.js +1124 -0
- package/dist/sqot_controller/index.d.ts +8 -0
- package/dist/sqot_controller/index.js +141 -0
- package/dist/trc_adapter/index.d.ts +6 -0
- package/dist/trc_adapter/index.js +86 -0
- package/docs/alt-ecpt-lift.md +32 -0
- package/docs/bit-inversion-engine.md +32 -0
- package/docs/cli-reference.md +68 -0
- package/docs/effective-packet-graph.md +35 -0
- package/docs/for-agents.md +44 -0
- package/docs/phase-ecology-lab.md +46 -0
- package/docs/sqot-queue-sovereignty.md +31 -0
- package/docs/threshold-certificates.md +30 -0
- package/docs/trc-trace-adapter.md +30 -0
- package/docs/v050-audit.md +126 -0
- package/examples/alt_lift/alt_ecpt_lift.example.json +27 -0
- package/examples/bit_engine/bottlenecks.example.json +38 -0
- package/examples/bit_engine/inversion_candidates.example.json +55 -0
- package/examples/packet_exchange/packet_envelope.example.json +51 -0
- package/examples/packet_exchange/packet_merge_report.example.json +60 -0
- package/examples/phase_lab/certificate_abstain.example.json +39 -0
- package/examples/phase_lab/closure_report.example.json +41 -0
- package/examples/phase_lab/effective_graph.example.json +112 -0
- package/examples/phase_lab/executable_paths.example.json +20 -0
- package/examples/phase_lab/phase_window_observation.example.json +61 -0
- package/examples/phase_lab/runtime_report_1.json +19 -0
- package/examples/phase_lab/runtime_report_2.json +16 -0
- package/examples/phase_lab/threshold_status.example.json +31 -0
- package/examples/sqot_controller/queue_report.example.json +30 -0
- package/examples/sqot_controller/rebalance_plan.example.json +14 -0
- package/examples/thresholds/asi_proxy_development.json +15 -0
- package/examples/trc_adapter/tool_trace_input.example.json +17 -0
- package/examples/trc_adapter/typed_trace.example.json +64 -0
- package/fixtures/portability_conformance_v050/certificate_abstain.example.json +39 -0
- package/fixtures/portability_conformance_v050/closure_report.example.json +39 -0
- package/fixtures/portability_conformance_v050/effective_graph.example.json +112 -0
- package/fixtures/portability_conformance_v050/executable_paths.example.json +20 -0
- package/fixtures/portability_conformance_v050/manifest.json +55 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_1.json +51 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_2.json +55 -0
- package/fixtures/portability_conformance_v050/phase_window_observation.example.json +61 -0
- package/fixtures/portability_conformance_v050/runtime_report_1.json +19 -0
- package/fixtures/portability_conformance_v050/runtime_report_2.json +14 -0
- package/fixtures/portability_conformance_v050/threshold_status.example.json +29 -0
- package/fixtures/python_v044_cli/agent_autonomy_audit.json +4 -3
- package/fixtures/python_v044_cli/agent_manifest.json +2 -1
- package/fixtures/python_v044_cli/agent_runbook.json +2 -1
- package/fixtures/python_v044_cli/demo_installed_smoke.json +86 -86
- package/fixtures/python_v044_demo/manifest.json +2 -1
- package/fixtures/python_v050_cli/alt_capital_impact.json +30 -0
- package/fixtures/python_v050_cli/alt_ecpt_lift.json +85 -0
- package/fixtures/python_v050_cli/alt_liquidity_to_paths.json +85 -0
- package/fixtures/python_v050_cli/alt_receiver_lift.json +15 -0
- package/fixtures/python_v050_cli/bit_certificate.json +15 -0
- package/fixtures/python_v050_cli/bit_compare_baseline.json +24 -0
- package/fixtures/python_v050_cli/bit_diagnose.json +95 -0
- package/fixtures/python_v050_cli/bit_invert.json +235 -0
- package/fixtures/python_v050_cli/bit_mec.json +18 -0
- package/fixtures/python_v050_cli/ecology_effective_graph.json +178 -0
- package/fixtures/python_v050_cli/ecology_execution_available_paths.json +88 -0
- package/fixtures/python_v050_cli/manifest.json +48 -0
- package/fixtures/python_v050_cli/phase_lab_certify.json +443 -0
- package/fixtures/python_v050_cli/phase_lab_closure.json +85 -0
- package/fixtures/python_v050_cli/phase_lab_compare_window.json +24 -0
- package/fixtures/python_v050_cli/phase_lab_executable_paths.json +88 -0
- package/fixtures/python_v050_cli/phase_lab_graph.json +178 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_1.json +105 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_2.json +109 -0
- package/fixtures/python_v050_cli/phase_lab_init.json +20 -0
- package/fixtures/python_v050_cli/phase_lab_list_windows.json +63 -0
- package/fixtures/python_v050_cli/phase_lab_observe.json +108 -0
- package/fixtures/python_v050_cli/phase_lab_threshold_status.json +164 -0
- package/fixtures/python_v050_cli/sqot_diagnose_queue.json +38 -0
- package/fixtures/python_v050_cli/sqot_quarantine.json +7 -0
- package/fixtures/python_v050_cli/sqot_rebalance.json +19 -0
- package/fixtures/python_v050_cli/sqot_reserve_check.json +20 -0
- package/fixtures/python_v050_cli/sqot_salience_obstruction.json +19 -0
- package/fixtures/python_v050_cli/trc_action_boundary.json +451 -0
- package/fixtures/python_v050_cli/trc_tool_trace.json +221 -0
- package/fixtures/python_v050_cli/trc_trace_adapter.json +221 -0
- package/fixtures/python_v050_demo/asi_proxy_development.json +15 -0
- package/fixtures/python_v050_demo/certificate_abstain.example.json +39 -0
- package/fixtures/python_v050_demo/closure_report.example.json +39 -0
- package/fixtures/python_v050_demo/effective_graph.example.json +112 -0
- package/fixtures/python_v050_demo/executable_paths.example.json +20 -0
- package/fixtures/python_v050_demo/phase_window_observation.example.json +61 -0
- package/fixtures/python_v050_demo/runtime_report_1.json +19 -0
- package/fixtures/python_v050_demo/runtime_report_2.json +14 -0
- package/fixtures/python_v050_demo/threshold_status.example.json +29 -0
- package/fixtures/python_v050_snapshots/manifest.json +39 -0
- package/fixtures/python_v050_snapshots/snapshot_list.json +112 -0
- package/fixtures/python_v050_snapshots/snapshot_routes.json +926 -0
- package/fixtures/python_v050_snapshots/snapshot_show_alt.json +6830 -0
- package/fixtures/python_v050_snapshots/snapshot_show_bit.json +594 -0
- package/fixtures/python_v050_snapshots/snapshot_show_ecpt.json +2894 -0
- package/fixtures/python_v050_snapshots/snapshot_show_sqot.json +2392 -0
- package/fixtures/python_v050_snapshots/snapshot_show_trc.json +3037 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_alt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_bit.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_ecpt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_sqot.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_trc.json +10 -0
- package/package.json +45 -3
- package/schemas/ASIProxyThresholdSpec.schema.json +72 -0
- package/schemas/ASIProxyThresholdStatus.schema.json +512 -0
- package/schemas/ActionBoundaryRequirement.schema.json +28 -0
- package/schemas/ActivationGainEstimate.schema.json +41 -0
- package/schemas/AltEcptLiftReport.schema.json +400 -0
- package/schemas/AltLiftBlocker.schema.json +34 -0
- package/schemas/AttentionBudgetLedger.schema.json +41 -0
- package/schemas/AutocatalyticClosureReport.schema.json +408 -0
- package/schemas/AutocatalyticClosureWitness.schema.json +22 -139
- package/schemas/BasinReachabilityProxy.schema.json +21 -0
- package/schemas/BottleneckClassDiagnosis.schema.json +115 -0
- package/schemas/BottleneckInversionCandidate.schema.json +249 -0
- package/schemas/BottleneckInversionReport.schema.json +499 -0
- package/schemas/CapabilityExpressionPath.schema.json +45 -0
- package/schemas/CapitalToPathContribution.schema.json +53 -0
- package/schemas/ClosureAbstentionReason.schema.json +25 -0
- package/schemas/ClosureCertificateCandidate.schema.json +109 -0
- package/schemas/ClosureDefect.schema.json +28 -0
- package/schemas/ClosureSupportHyperpath.schema.json +44 -0
- package/schemas/CollectivePhaseAbstentionReport.schema.json +591 -0
- package/schemas/CollectivePhaseCertificateCandidate.schema.json +688 -0
- package/schemas/CrossContextTransferWitness.schema.json +46 -0
- package/schemas/DiagnosticReserveReport.schema.json +87 -0
- package/schemas/DownstreamSearchCostDelta.schema.json +46 -0
- package/schemas/EcologyAutocatalyticClosureWitness.schema.json +187 -0
- package/schemas/EffectiveGraphResidualSummary.schema.json +38 -0
- package/schemas/EffectivePacketEdge.schema.json +135 -0
- package/schemas/EffectivePacketEligibility.schema.json +84 -0
- package/schemas/EffectivePacketGraph.schema.json +461 -0
- package/schemas/EffectivePacketGraphBuildReport.schema.json +521 -0
- package/schemas/EffectivePacketNode.schema.json +199 -0
- package/schemas/ExecutableClosureWitness.schema.json +47 -0
- package/schemas/ExecutablePathDensityReport.schema.json +314 -0
- package/schemas/ExecutionAuthorityStatus.schema.json +28 -0
- package/schemas/ExecutionAvailableHyperpath.schema.json +201 -0
- package/schemas/ExecutionPathDefect.schema.json +28 -0
- package/schemas/ExecutionPathWitness.schema.json +44 -0
- package/schemas/FalseLiquidityLoad.schema.json +21 -0
- package/schemas/GeneralIntakePolicy.schema.json +1 -1
- package/schemas/InversionCertificate.schema.json +56 -0
- package/schemas/LiquidityToClosureContribution.schema.json +53 -0
- package/schemas/MinimalEnablingCondition.schema.json +48 -0
- package/schemas/PacketContributionStatus.schema.json +32 -0
- package/schemas/PacketQuarantineDecision.schema.json +50 -0
- package/schemas/PhaseCertificateDefect.schema.json +33 -0
- package/schemas/PhaseComponentObservation.schema.json +39 -0
- package/schemas/PhaseLabEvent.schema.json +123 -0
- package/schemas/PhaseLabExportManifest.schema.json +127 -0
- package/schemas/PhaseLabIngestReport.schema.json +344 -0
- package/schemas/PhaseLabStoreManifest.schema.json +73 -0
- package/schemas/PhaseLabWindowIndex.schema.json +78 -0
- package/schemas/PhaseThresholdStatus.schema.json +51 -0
- package/schemas/PhaseWindow.schema.json +31 -0
- package/schemas/PhaseWindowComparison.schema.json +67 -0
- package/schemas/PhaseWindowObservation.schema.json +353 -0
- package/schemas/PostInversionAuditPlan.schema.json +38 -0
- package/schemas/ProductiveClosureWitness.schema.json +49 -0
- package/schemas/ProvenanceManifest.schema.json +1 -1
- package/schemas/QueueOccupationReport.schema.json +156 -0
- package/schemas/QueueRebalancePlan.schema.json +114 -0
- package/schemas/ReceiverContextSupport.schema.json +23 -0
- package/schemas/ReceiverLiquidityLift.schema.json +58 -0
- package/schemas/ReleaseArtifactManifest.schema.json +1 -1
- package/schemas/ReversibleSalienceSovereigntyCertificate.schema.json +53 -0
- package/schemas/RollbackOrDeactivationPlan.schema.json +38 -0
- package/schemas/SBOMManifest.schema.json +1 -1
- package/schemas/SalienceObstructionDiagnosis.schema.json +55 -0
- package/schemas/SalienceObstructionLoad.schema.json +21 -0
- package/schemas/SemanticEdgeEvidence.schema.json +40 -0
- package/schemas/TraceAdapterReport.schema.json +405 -0
- package/schemas/TraceFrontierDebt.schema.json +43 -0
- package/schemas/TraceNormalForm.schema.json +181 -0
- package/schemas/TraceToleranceLedger.schema.json +29 -0
- package/schemas/TypedActionBoundary.schema.json +58 -0
- package/schemas/TypedAgentTrace.schema.json +328 -0
- package/schemas/TypedToolCallTrace.schema.json +76 -0
- package/schemas/VerificationQueuePressure.schema.json +41 -0
- package/schemas/VerificationThroughputWindow.schema.json +21 -0
- package/schemas/WasteLoad.schema.json +21 -0
- package/schemas/WebFetchPolicy.schema.json +1 -1
- package/schemas/bundle.schema.json +11854 -2075
- package/schemas/index.json +445 -0
- package/schemas/schema-digest.json +733 -289
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# v0.5.0 npm Audit Notes
|
|
2
|
+
|
|
3
|
+
This page records the release boundary for
|
|
4
|
+
`percolation-inversion-compiler-ts@0.5.0`.
|
|
5
|
+
|
|
6
|
+
Canonical source:
|
|
7
|
+
|
|
8
|
+
- Python package: `percolation-inversion-compiler==0.5.0`
|
|
9
|
+
- Repository: https://github.com/kadubon/percolation-inversion-compiler
|
|
10
|
+
- Wiki: https://github.com/kadubon/percolation-inversion-compiler/wiki
|
|
11
|
+
|
|
12
|
+
PIC-TS is a TypeScript-compatible port of the Python v0.5.0 public JSON, CLI,
|
|
13
|
+
schema, conformance, and safety semantics for npm and JavaScript agent
|
|
14
|
+
runtimes. It does not claim internal equivalence to the Python implementation.
|
|
15
|
+
|
|
16
|
+
## Theory Boundary
|
|
17
|
+
|
|
18
|
+
The papers behind PIC share the same operational boundary. PIC-TS keeps that
|
|
19
|
+
boundary at the JSON interface:
|
|
20
|
+
|
|
21
|
+
| Theory idea | Plain meaning | PIC-TS implementation boundary |
|
|
22
|
+
| ------------------ | --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
|
23
|
+
| finite witness | A claim needs a bounded checkable record. | Commands return JSON records with explicit status fields and schema validation. |
|
|
24
|
+
| residual ledger | Unfinished work must stay visible. | Outputs preserve residual summaries, missing obligations, blockers, and candidate-only reasons. |
|
|
25
|
+
| non-promotion | A candidate is not completed work. | Candidate-only packets, raw traffic volume, queue pressure, and diagnostic traces do not increase accepted phase progress. |
|
|
26
|
+
| execution boundary | Detecting a possible path is not permission to run it. | Packet content, trace content, and suggested commands remain inert data; execution counters stay at zero. |
|
|
27
|
+
| strict settlement | Settlement requires scoped finite obligations to be discharged. | Diagnostic and recommendation routes keep `settled=false` unless a verifier path explicitly supports settlement. |
|
|
28
|
+
|
|
29
|
+
These rules apply across ECPT, BIT, TRC, SQOT, and ALT records. They also apply
|
|
30
|
+
to the v0.5.0 Phase Ecology Lab.
|
|
31
|
+
|
|
32
|
+
## Status Fields
|
|
33
|
+
|
|
34
|
+
The public JSON status fields are intentionally independent:
|
|
35
|
+
|
|
36
|
+
| Field | Meaning |
|
|
37
|
+
| ----------------------------- | -------------------------------------------------------------------------------------------------- |
|
|
38
|
+
| `accepted` | The command accepted the envelope or report for this bounded check. |
|
|
39
|
+
| `workflow_usable` | The output can guide the next workflow step. This does not settle the underlying claim. |
|
|
40
|
+
| `operationally_usable` | The runtime result can be used under the selected profile. This is still separate from settlement. |
|
|
41
|
+
| `settled` | Scoped finite obligations have been discharged. Most diagnostic routes keep this false. |
|
|
42
|
+
| `execution_authority_granted` | Whether the report grants authority to execute actions. PIC-TS diagnostic routes keep this false. |
|
|
43
|
+
|
|
44
|
+
## npm Runtime Rules
|
|
45
|
+
|
|
46
|
+
- Runtime use does not require Python.
|
|
47
|
+
- Required npm inputs are JSON.
|
|
48
|
+
- Phase Lab uses a local JSON/JSONL store instead of Python SQLite.
|
|
49
|
+
- Store and export records save source basenames, not absolute local paths.
|
|
50
|
+
- Live network connectors are not enabled by default.
|
|
51
|
+
- Shell commands, packet content, trace content, and suggested inspection
|
|
52
|
+
commands are not executed by PIC-TS.
|
|
53
|
+
- YAML convenience, repository mutation, model mutation, hidden settlement, and
|
|
54
|
+
automatic quarantine or deletion are outside the required npm runtime surface.
|
|
55
|
+
|
|
56
|
+
## Compatibility Boundary
|
|
57
|
+
|
|
58
|
+
| Surface | Compatibility claim |
|
|
59
|
+
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
60
|
+
| schemas | `schemas/index.json`, `bundle.schema.json`, and individual schemas are generated from Python `percolation-inversion-compiler==0.5.0` public schema output. |
|
|
61
|
+
| snapshot commands | `fixtures/python_v050_snapshots/manifest.json` lists snapshot files with exact JSON parity. |
|
|
62
|
+
| v0.5.0 Phase Lab and subsystem records | `fixtures/python_v050_cli/manifest.json` lists files used for public-shape and safety compatibility, not exact store equality. |
|
|
63
|
+
| v0.4.x compatibility fixtures | v0.4.4/v0.4.5 fixtures remain packaged where conformance tests still use them. |
|
|
64
|
+
| SDK subpaths | Root, `./schema`, `./agent/messages`, `./packet`, `./phase-lab`, `./bit-engine`, `./sqot-controller`, `./alt-lift`, and `./trc-adapter` are Python-free npm entrypoints. |
|
|
65
|
+
|
|
66
|
+
The Phase Lab storage layer is intentionally different: Python uses SQLite for
|
|
67
|
+
its local store, while PIC-TS uses JSON/JSONL for npm portability. The public
|
|
68
|
+
records keep the same non-promotion and residual-preservation rules.
|
|
69
|
+
|
|
70
|
+
## Command Families
|
|
71
|
+
|
|
72
|
+
| Command family | Audit status |
|
|
73
|
+
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
74
|
+
| `agent`, `runtime step`, `schema`, `snapshot`, `routes`, `portability`, `adoption`, `identity`, `packet` | Covered by existing CLI, conformance, and installed-smoke tests. |
|
|
75
|
+
| `phase plan/gap/runbook/benchmark/dashboard/observe` | Preserves candidate-only reasons, identity blockers, residual ledgers, and `settled=false` for non-discharged paths. |
|
|
76
|
+
| `phase lab init/ingest/list-windows/export/observe/graph/closure/executable-paths/threshold-status/certify/compare-window` | Covered by v0.5.0 tests, including output files, directory ingest, YAML fail-closed behavior, and basename source storage. |
|
|
77
|
+
| `bit`, `sqot`, `alt`, `trc`, `ecology` | Diagnostic or recommendation-only. They report blockers, residuals, or candidate paths without granting execution authority. |
|
|
78
|
+
| Python-only heavy routes | Exposed only as safe diagnostic compatibility routes when present. They fail closed with visible residual and missing-obligation data. |
|
|
79
|
+
|
|
80
|
+
## Agent Usability Boundary
|
|
81
|
+
|
|
82
|
+
The recommended npm entrypoint is `pic-ts`. The `pic` command is kept as a
|
|
83
|
+
compatibility alias and may be ambiguous on machines that also install the
|
|
84
|
+
Python package.
|
|
85
|
+
|
|
86
|
+
A Node-only agent loop should use file-driven commands:
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
pic-ts demo bootstrap --output-dir .pic-demo --overwrite
|
|
90
|
+
pic-ts runtime step --state .pic-demo/runtime_state.json --input .pic-demo/runtime_step_input.json --output .pic-demo/runtime_step_report.generated.json
|
|
91
|
+
pic-ts packet export --report .pic-demo/runtime_step_report.generated.json --output .pic-demo/packet.json
|
|
92
|
+
pic-ts packet inspect --packet .pic-demo/packet.json
|
|
93
|
+
pic-ts phase plan --request .pic-demo/asi_proxy_phase_request.json --compact
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
This loop checks and routes JSON. It does not run embedded commands, mutate a
|
|
97
|
+
repository, or convert candidate work into settled work.
|
|
98
|
+
|
|
99
|
+
## Package Safety
|
|
100
|
+
|
|
101
|
+
The package whitelist includes `dist/`, `schemas/`, `fixtures/`, `examples/`,
|
|
102
|
+
`docs/`, `README.md`, `CHANGELOG.md`, `LICENSE`, `NOTICE`, and
|
|
103
|
+
`agent-manifest.json`.
|
|
104
|
+
|
|
105
|
+
The publish safety scan rejects TeX/PDF files, archives, source maps, local
|
|
106
|
+
paths, tokens, private keys, model files, vendored Python packages, stale shell
|
|
107
|
+
glob examples, and unsupported package content. Snapshot JSON may contain TeX
|
|
108
|
+
artifact labels as metadata, but TeX or PDF source files are not packaged.
|
|
109
|
+
|
|
110
|
+
## Required Release Gate
|
|
111
|
+
|
|
112
|
+
Run the full local gate before publishing:
|
|
113
|
+
|
|
114
|
+
```sh
|
|
115
|
+
npm run typecheck
|
|
116
|
+
npm run lint
|
|
117
|
+
npm run format:check
|
|
118
|
+
npm run test
|
|
119
|
+
npm run conformance
|
|
120
|
+
npm run publish:safety
|
|
121
|
+
npm run installed:smoke
|
|
122
|
+
npm run publint
|
|
123
|
+
npm run attw
|
|
124
|
+
npm audit --audit-level=high
|
|
125
|
+
npm run prepublishOnly
|
|
126
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"affected_ecpt_components": [],
|
|
4
|
+
"blockers": [
|
|
5
|
+
{
|
|
6
|
+
"blocker_id": "alt-lift-blocker:packet:demo:capital",
|
|
7
|
+
"blocker_type": "missing accepted ALT capital",
|
|
8
|
+
"packet_id": "packet:demo",
|
|
9
|
+
"remediation": "admit an ALT packet with finite checks",
|
|
10
|
+
"residual_preserved": true
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"capital_to_path_contributions": [],
|
|
14
|
+
"cross_context_transfer_witnesses": [],
|
|
15
|
+
"diagnostic_only_lift_failure": true,
|
|
16
|
+
"downstream_search_cost_deltas": [],
|
|
17
|
+
"graph_id": "effective-graph-example",
|
|
18
|
+
"liquidity_to_closure_contributions": [],
|
|
19
|
+
"operationally_usable": false,
|
|
20
|
+
"protocol_relative_only": true,
|
|
21
|
+
"proves_real_asi": false,
|
|
22
|
+
"reasons": ["no accepted ECPT component lift was established"],
|
|
23
|
+
"receiver_liquidity_lifts": [],
|
|
24
|
+
"report_id": "alt-ecpt-lift",
|
|
25
|
+
"settled": false,
|
|
26
|
+
"workflow_usable": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"baseline_comparison": {},
|
|
4
|
+
"bottlenecks": [
|
|
5
|
+
{
|
|
6
|
+
"accepted": false,
|
|
7
|
+
"blockers": ["missing-edge-evidence"],
|
|
8
|
+
"bottleneck_class": "missing semantic edge",
|
|
9
|
+
"bottleneck_id": "bit-bottleneck:edge:beta:missing-semantic-edge",
|
|
10
|
+
"minimal_enabling_conditions": [
|
|
11
|
+
{
|
|
12
|
+
"bottleneck_id": "bit-bottleneck:edge:beta:missing-semantic-edge",
|
|
13
|
+
"condition_id": "mec:bit-bottleneck:edge:beta:missing-semantic-edge:semantic-edge",
|
|
14
|
+
"condition_type": "semantic-edge",
|
|
15
|
+
"required_evidence": ["edge-evidence-ref"],
|
|
16
|
+
"residual_preserved": true,
|
|
17
|
+
"settled": false,
|
|
18
|
+
"verifier_routes": ["route:edge"]
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"object_id": "edge:beta",
|
|
22
|
+
"reasons": ["edge lacks finite evidence support"],
|
|
23
|
+
"recommendation_only": true,
|
|
24
|
+
"settled": false,
|
|
25
|
+
"severity": 1.0
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"capability_expression_paths": [],
|
|
29
|
+
"certificates": [],
|
|
30
|
+
"graph_id": "effective-graph-example",
|
|
31
|
+
"inversion_candidates": [],
|
|
32
|
+
"protocol_relative_only": true,
|
|
33
|
+
"reasons": ["BIT diagnostics do not grant execution authority"],
|
|
34
|
+
"recommendation_only": true,
|
|
35
|
+
"report_id": "bit-bottleneck-inversion-report",
|
|
36
|
+
"settled": false,
|
|
37
|
+
"workflow_usable": true
|
|
38
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"baseline_comparison": {},
|
|
4
|
+
"bottlenecks": [],
|
|
5
|
+
"capability_expression_paths": [],
|
|
6
|
+
"certificates": [],
|
|
7
|
+
"graph_id": "effective-graph-example",
|
|
8
|
+
"inversion_candidates": [
|
|
9
|
+
{
|
|
10
|
+
"accepted": false,
|
|
11
|
+
"bottleneck_class": "missing semantic edge",
|
|
12
|
+
"bottleneck_id": "bit-bottleneck:edge:beta:missing-semantic-edge",
|
|
13
|
+
"candidate_id": "inversion-candidate:bit-bottleneck:edge:beta:missing-semantic-edge",
|
|
14
|
+
"expected_activation_gain": {
|
|
15
|
+
"assumptions": ["finite evidence is supplied"],
|
|
16
|
+
"estimate_id": "activation-gain:edge:beta",
|
|
17
|
+
"lower_bound": 0.4,
|
|
18
|
+
"settled": false,
|
|
19
|
+
"unit": "protocol-relative-phase-proxy",
|
|
20
|
+
"upper_bound": 0.6
|
|
21
|
+
},
|
|
22
|
+
"minimal_enabling_conditions": [],
|
|
23
|
+
"mutates_repositories_shells_networks_or_models": false,
|
|
24
|
+
"post_inversion_audit_plan": {
|
|
25
|
+
"evidence_to_record": ["edge evidence"],
|
|
26
|
+
"executes_actions": false,
|
|
27
|
+
"plan_id": "audit:edge:beta",
|
|
28
|
+
"preserves_residuals": true,
|
|
29
|
+
"required_checks": ["rerun effective graph build"]
|
|
30
|
+
},
|
|
31
|
+
"reasons": [
|
|
32
|
+
"candidate remains not settled until finite checker rules pass"
|
|
33
|
+
],
|
|
34
|
+
"recommendation_only": true,
|
|
35
|
+
"risk_hazard_authority_notes": ["candidate is not execution authority"],
|
|
36
|
+
"rollback_or_deactivation_plan": {
|
|
37
|
+
"automatic_rollback": false,
|
|
38
|
+
"deactivation_steps": ["return to diagnostic-only status"],
|
|
39
|
+
"plan_id": "rollback:edge:beta",
|
|
40
|
+
"rollback_refs_required": ["rollback-or-safe-abort-evidence"],
|
|
41
|
+
"rollback_required": true
|
|
42
|
+
},
|
|
43
|
+
"settled": false,
|
|
44
|
+
"verification_cost": 1.0
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"protocol_relative_only": true,
|
|
48
|
+
"reasons": [
|
|
49
|
+
"inversion candidates are recommendations, not execution authority"
|
|
50
|
+
],
|
|
51
|
+
"recommendation_only": true,
|
|
52
|
+
"report_id": "bit-bottleneck-inversion-report",
|
|
53
|
+
"settled": false,
|
|
54
|
+
"workflow_usable": true
|
|
55
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"candidate_only_reasons": [
|
|
4
|
+
"runtime report is exported as diagnostic packet-exchange data"
|
|
5
|
+
],
|
|
6
|
+
"content": {
|
|
7
|
+
"report_id": "runtime-step:example",
|
|
8
|
+
"safe_commands": ["pic evidence verify --envelope evidence.json"]
|
|
9
|
+
},
|
|
10
|
+
"content_digest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
11
|
+
"created_timestamp": "not-recorded",
|
|
12
|
+
"identity_context_summary": {
|
|
13
|
+
"accepted_agent_context_present": false,
|
|
14
|
+
"accepted_public_key_context_present": false
|
|
15
|
+
},
|
|
16
|
+
"issuer_agent_id": null,
|
|
17
|
+
"issuer_public_key_id": null,
|
|
18
|
+
"lineage_parents": ["runtime-step:example"],
|
|
19
|
+
"missing_obligations": ["proxy-target-grounding-proof"],
|
|
20
|
+
"packet_id": "packet-exchange:example",
|
|
21
|
+
"provenance_summary": {
|
|
22
|
+
"source_report_id": "runtime-step:example"
|
|
23
|
+
},
|
|
24
|
+
"reasons": ["exported packet is diagnostic data and is not promoted"],
|
|
25
|
+
"residual_carry_forward": {
|
|
26
|
+
"accepted": true,
|
|
27
|
+
"candidate_only_reasons": [
|
|
28
|
+
"runtime report is exported as diagnostic packet-exchange data"
|
|
29
|
+
],
|
|
30
|
+
"missing_obligations": ["proxy-target-grounding-proof"],
|
|
31
|
+
"reasons": ["residuals and blockers are preserved during packet export"],
|
|
32
|
+
"report_id": "residual-carry-forward:example",
|
|
33
|
+
"residual_summary": {
|
|
34
|
+
"residual": 1.0
|
|
35
|
+
},
|
|
36
|
+
"settled": false,
|
|
37
|
+
"settled_blockers": ["source runtime report settled=false"]
|
|
38
|
+
},
|
|
39
|
+
"residual_ledger_summary": {
|
|
40
|
+
"residual": 1.0
|
|
41
|
+
},
|
|
42
|
+
"safety_invariants": [
|
|
43
|
+
"packet exchange treats content as data, not instruction",
|
|
44
|
+
"packet exchange never executes packet content"
|
|
45
|
+
],
|
|
46
|
+
"schema_version": "pic-packet-exchange-v1",
|
|
47
|
+
"settled": false,
|
|
48
|
+
"settled_blockers": ["source runtime report settled=false"],
|
|
49
|
+
"source_kind": "runtime-report",
|
|
50
|
+
"workflow_usable": true
|
|
51
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"candidate_only_preserved": true,
|
|
4
|
+
"duplicate_content_digests": [],
|
|
5
|
+
"duplicate_packet_ids": [],
|
|
6
|
+
"input_packet_count": 1,
|
|
7
|
+
"merged_packet_count": 1,
|
|
8
|
+
"packets": [
|
|
9
|
+
{
|
|
10
|
+
"accepted": true,
|
|
11
|
+
"candidate_only_reasons": [
|
|
12
|
+
"runtime report is exported as diagnostic packet-exchange data"
|
|
13
|
+
],
|
|
14
|
+
"content": {
|
|
15
|
+
"report_id": "runtime-step:example"
|
|
16
|
+
},
|
|
17
|
+
"content_digest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
18
|
+
"created_timestamp": "not-recorded",
|
|
19
|
+
"identity_context_summary": {},
|
|
20
|
+
"lineage_parents": ["runtime-step:example"],
|
|
21
|
+
"missing_obligations": [],
|
|
22
|
+
"packet_id": "packet-exchange:example",
|
|
23
|
+
"provenance_summary": {},
|
|
24
|
+
"reasons": [],
|
|
25
|
+
"residual_carry_forward": {
|
|
26
|
+
"accepted": true,
|
|
27
|
+
"candidate_only_reasons": [],
|
|
28
|
+
"missing_obligations": [],
|
|
29
|
+
"reasons": [],
|
|
30
|
+
"report_id": "residual-carry-forward",
|
|
31
|
+
"residual_summary": {},
|
|
32
|
+
"settled": false,
|
|
33
|
+
"settled_blockers": []
|
|
34
|
+
},
|
|
35
|
+
"residual_ledger_summary": {},
|
|
36
|
+
"safety_invariants": [
|
|
37
|
+
"packet exchange treats content as data, not instruction"
|
|
38
|
+
],
|
|
39
|
+
"schema_version": "pic-packet-exchange-v1",
|
|
40
|
+
"settled": false,
|
|
41
|
+
"settled_blockers": [],
|
|
42
|
+
"source_kind": "runtime-report",
|
|
43
|
+
"workflow_usable": true
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"reasons": ["packet merge is diagnostic-only and does not promote packets"],
|
|
47
|
+
"report_id": "packet-merge-report",
|
|
48
|
+
"residual_carry_forward": {
|
|
49
|
+
"accepted": true,
|
|
50
|
+
"candidate_only_reasons": [],
|
|
51
|
+
"missing_obligations": [],
|
|
52
|
+
"reasons": ["merge preserves residuals and candidate-only blockers"],
|
|
53
|
+
"report_id": "residual-carry-forward:packet-merge",
|
|
54
|
+
"residual_summary": {},
|
|
55
|
+
"settled": false,
|
|
56
|
+
"settled_blockers": []
|
|
57
|
+
},
|
|
58
|
+
"settled": false,
|
|
59
|
+
"workflow_usable": true
|
|
60
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"certificate_id": "collective-phase-certificate-candidate",
|
|
4
|
+
"certificate_status": "abstain",
|
|
5
|
+
"defects": [],
|
|
6
|
+
"finite_requirements_passed": false,
|
|
7
|
+
"operationally_usable": false,
|
|
8
|
+
"protocol_relative_only": true,
|
|
9
|
+
"proves_physical_or_oracle_truth": false,
|
|
10
|
+
"proves_real_asi": false,
|
|
11
|
+
"reasons": [
|
|
12
|
+
"certificate candidate is protocol-relative only",
|
|
13
|
+
"certificate candidate does not prove real ASI"
|
|
14
|
+
],
|
|
15
|
+
"settled": false,
|
|
16
|
+
"threshold_status": {
|
|
17
|
+
"accepted": false,
|
|
18
|
+
"certificate_status": "abstain",
|
|
19
|
+
"component_status": {},
|
|
20
|
+
"failed_components": [],
|
|
21
|
+
"observation": {
|
|
22
|
+
"settled": false,
|
|
23
|
+
"window": {
|
|
24
|
+
"event_count": 0,
|
|
25
|
+
"event_ids": [],
|
|
26
|
+
"sequence": 0,
|
|
27
|
+
"window_id": "phase-window:example"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"protocol_relative_only": true,
|
|
31
|
+
"proves_real_asi": false,
|
|
32
|
+
"settled": false,
|
|
33
|
+
"threshold": {
|
|
34
|
+
"threshold_id": "asi-proxy-development"
|
|
35
|
+
},
|
|
36
|
+
"threshold_distance": 0.0
|
|
37
|
+
},
|
|
38
|
+
"workflow_usable": true
|
|
39
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"certificate_candidate": {
|
|
4
|
+
"abstention_reasons": [],
|
|
5
|
+
"accepted": true,
|
|
6
|
+
"certificate_id": "closure-certificate-candidate",
|
|
7
|
+
"certificate_status": "candidate",
|
|
8
|
+
"defects": [],
|
|
9
|
+
"reasons": ["closure candidate is not automatically settled"],
|
|
10
|
+
"settled": false,
|
|
11
|
+
"witness_ids": ["closure-witness:edge:self-alpha"]
|
|
12
|
+
},
|
|
13
|
+
"closure_score": 1.0,
|
|
14
|
+
"closure_witnesses": [
|
|
15
|
+
{
|
|
16
|
+
"accepted": true,
|
|
17
|
+
"edge_ids": ["edge:self-alpha"],
|
|
18
|
+
"evidence_supported": true,
|
|
19
|
+
"execution_available": false,
|
|
20
|
+
"packet_ids": ["node:alpha"],
|
|
21
|
+
"productive": true,
|
|
22
|
+
"protocol_relative_only": true,
|
|
23
|
+
"reasons": [
|
|
24
|
+
"witness remains diagnostic until finite threshold checks pass"
|
|
25
|
+
],
|
|
26
|
+
"settled": false,
|
|
27
|
+
"witness_id": "closure-witness:edge:self-alpha",
|
|
28
|
+
"witness_kind": "autocatalytic-closure"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"defects": [],
|
|
32
|
+
"executable_witnesses": [],
|
|
33
|
+
"graph_id": "effective-graph-example",
|
|
34
|
+
"operationally_usable": true,
|
|
35
|
+
"productive_witnesses": [],
|
|
36
|
+
"reasons": ["closure detection does not execute or settle paths"],
|
|
37
|
+
"report_id": "autocatalytic-closure-report",
|
|
38
|
+
"settled": false,
|
|
39
|
+
"support_hyperpaths": [],
|
|
40
|
+
"workflow_usable": true
|
|
41
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_capital": 1,
|
|
4
|
+
"candidate_only_packets": 0,
|
|
5
|
+
"edge_count_by_relation": {
|
|
6
|
+
"self-support": 1
|
|
7
|
+
},
|
|
8
|
+
"edges": [
|
|
9
|
+
{
|
|
10
|
+
"accepted": true,
|
|
11
|
+
"contribution": {
|
|
12
|
+
"candidate_only": false,
|
|
13
|
+
"non_contributing_reason": "",
|
|
14
|
+
"positive_contribution": true,
|
|
15
|
+
"settled": false,
|
|
16
|
+
"status": "accepted"
|
|
17
|
+
},
|
|
18
|
+
"edge_id": "edge:self-alpha",
|
|
19
|
+
"evidence": {
|
|
20
|
+
"edge_certificate_refs": [],
|
|
21
|
+
"evidence_refs": ["evidence:alpha"],
|
|
22
|
+
"evidence_supported": true,
|
|
23
|
+
"missing_evidence": [],
|
|
24
|
+
"verifier_resolution_refs": []
|
|
25
|
+
},
|
|
26
|
+
"reasons": ["edge extracted from inert report data"],
|
|
27
|
+
"relation_type": "self-support",
|
|
28
|
+
"residual_summary": {},
|
|
29
|
+
"settled": false,
|
|
30
|
+
"source_node_ids": ["node:alpha"],
|
|
31
|
+
"target_node_id": "node:alpha"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"graph_id": "effective-graph-example",
|
|
35
|
+
"graph_safety_boundary": [
|
|
36
|
+
"raw packet volume is diagnostic only",
|
|
37
|
+
"candidate-only nodes do not improve positive phase components",
|
|
38
|
+
"graph construction does not execute packet content",
|
|
39
|
+
"graph construction does not settle claims"
|
|
40
|
+
],
|
|
41
|
+
"missing_edge_evidence": [],
|
|
42
|
+
"node_count_by_status": {
|
|
43
|
+
"accepted": 1
|
|
44
|
+
},
|
|
45
|
+
"nodes": [
|
|
46
|
+
{
|
|
47
|
+
"accepted": true,
|
|
48
|
+
"content_digest": "sha256-alpha",
|
|
49
|
+
"contribution": {
|
|
50
|
+
"candidate_only": false,
|
|
51
|
+
"non_contributing_reason": "",
|
|
52
|
+
"positive_contribution": true,
|
|
53
|
+
"settled": false,
|
|
54
|
+
"status": "accepted"
|
|
55
|
+
},
|
|
56
|
+
"eligibility": {
|
|
57
|
+
"accepted_or_certificate_admissible": true,
|
|
58
|
+
"agent_text_not_treated_as_evidence": true,
|
|
59
|
+
"authority_valid": true,
|
|
60
|
+
"blockers": [],
|
|
61
|
+
"eligible": true,
|
|
62
|
+
"hash_valid": true,
|
|
63
|
+
"not_raw_external_volume": true,
|
|
64
|
+
"not_registry_metadata_only": true,
|
|
65
|
+
"not_salience_blocked": true,
|
|
66
|
+
"not_stale": true,
|
|
67
|
+
"not_verification_blocked": true,
|
|
68
|
+
"residuals_preserved": true,
|
|
69
|
+
"retrievable": true,
|
|
70
|
+
"rollback_available_or_not_required": true,
|
|
71
|
+
"within_validity_domain": true
|
|
72
|
+
},
|
|
73
|
+
"missing_obligations": [],
|
|
74
|
+
"node_id": "node:alpha",
|
|
75
|
+
"operationally_usable": true,
|
|
76
|
+
"reasons": [],
|
|
77
|
+
"residual_summary": {},
|
|
78
|
+
"schema_hint": "AgentCheckReport",
|
|
79
|
+
"settled": false,
|
|
80
|
+
"source_event_id": "event:alpha",
|
|
81
|
+
"source_kind": "agent-check",
|
|
82
|
+
"workflow_usable": true
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"non_contributing_volume": 0,
|
|
86
|
+
"operationally_usable": true,
|
|
87
|
+
"reasons": [
|
|
88
|
+
"effective graph separates positive contribution from diagnostic volume",
|
|
89
|
+
"raw packet count does not increase positive phase metrics"
|
|
90
|
+
],
|
|
91
|
+
"rejected_or_quarantined_packets": 0,
|
|
92
|
+
"residual_summary": {
|
|
93
|
+
"candidate_only_reasons": [],
|
|
94
|
+
"missing_obligation_count": 0,
|
|
95
|
+
"residual_debt": 0.0,
|
|
96
|
+
"residual_summary": {},
|
|
97
|
+
"settled_blockers": []
|
|
98
|
+
},
|
|
99
|
+
"semantic_edge_witnesses": [
|
|
100
|
+
{
|
|
101
|
+
"edge_certificate_refs": [],
|
|
102
|
+
"evidence_refs": ["evidence:alpha"],
|
|
103
|
+
"evidence_supported": true,
|
|
104
|
+
"missing_evidence": [],
|
|
105
|
+
"verifier_resolution_refs": []
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"settled": false,
|
|
109
|
+
"source_window_id": "phase-window:0000",
|
|
110
|
+
"stale_or_unsafe_packets": [],
|
|
111
|
+
"workflow_usable": true
|
|
112
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_path_count": 1,
|
|
4
|
+
"authority_requirements": ["authority:edge:self-alpha"],
|
|
5
|
+
"blocked_path_count": 0,
|
|
6
|
+
"blocker_reason_by_path": {},
|
|
7
|
+
"candidate_only_path_count": 0,
|
|
8
|
+
"executed_path_count": 0,
|
|
9
|
+
"graph_id": "effective-graph-example",
|
|
10
|
+
"operationally_usable": true,
|
|
11
|
+
"path_count": 1,
|
|
12
|
+
"path_density": 1.0,
|
|
13
|
+
"paths": [],
|
|
14
|
+
"reasons": ["execution-available path detection never executes paths"],
|
|
15
|
+
"report_id": "execution-available-path-density",
|
|
16
|
+
"residual_carry_forward": [],
|
|
17
|
+
"rollback_requirements": ["rollback:edge:self-alpha"],
|
|
18
|
+
"settled": false,
|
|
19
|
+
"workflow_usable": true
|
|
20
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_count": 1,
|
|
4
|
+
"alt_certified_capital_count": 0,
|
|
5
|
+
"alt_liquidity_candidate_count": 0,
|
|
6
|
+
"autocatalytic_closure_score": 1.0,
|
|
7
|
+
"basin_reachability_proxy": {
|
|
8
|
+
"effective_node_count": 1,
|
|
9
|
+
"execution_available_path_count": 1,
|
|
10
|
+
"reachability_proxy": 1.0
|
|
11
|
+
},
|
|
12
|
+
"bottleneck_count_by_type": {},
|
|
13
|
+
"candidate_only_packet_count": 0,
|
|
14
|
+
"closure_witness_count": 1,
|
|
15
|
+
"components": [],
|
|
16
|
+
"effective_edge_count": 1,
|
|
17
|
+
"effective_node_count": 1,
|
|
18
|
+
"execution_available_path_count": 1,
|
|
19
|
+
"false_liquidity_load": {
|
|
20
|
+
"candidate_count": 0,
|
|
21
|
+
"certified_count": 0,
|
|
22
|
+
"load": 0.0
|
|
23
|
+
},
|
|
24
|
+
"missing_obligation_count": 0,
|
|
25
|
+
"observation_id": "phase-window-observation",
|
|
26
|
+
"operationally_usable": true,
|
|
27
|
+
"packet_candidate_count": 1,
|
|
28
|
+
"phase_gap_vector": {},
|
|
29
|
+
"protocol_relative_only": true,
|
|
30
|
+
"proves_physical_or_oracle_truth": false,
|
|
31
|
+
"proves_real_asi": false,
|
|
32
|
+
"raw_external_volume_diagnostic_only": true,
|
|
33
|
+
"reasons": ["window observation is protocol-relative only"],
|
|
34
|
+
"residual_debt": 0.0,
|
|
35
|
+
"salience_obstruction_load": {
|
|
36
|
+
"blocked_count": 0,
|
|
37
|
+
"load": 0.0,
|
|
38
|
+
"total_count": 1
|
|
39
|
+
},
|
|
40
|
+
"settled": false,
|
|
41
|
+
"settled_packet_count": 0,
|
|
42
|
+
"threshold_distance": 0.0,
|
|
43
|
+
"verification_throughput": {
|
|
44
|
+
"accepted_count": 1,
|
|
45
|
+
"backlog_count": 0,
|
|
46
|
+
"throughput_ratio": 1.0
|
|
47
|
+
},
|
|
48
|
+
"waste_load": {
|
|
49
|
+
"load": 0.0,
|
|
50
|
+
"non_contributing_volume": 0,
|
|
51
|
+
"total_volume": 1
|
|
52
|
+
},
|
|
53
|
+
"window": {
|
|
54
|
+
"event_count": 1,
|
|
55
|
+
"event_ids": ["event:alpha"],
|
|
56
|
+
"sequence": 0,
|
|
57
|
+
"window_id": "phase-window:0000"
|
|
58
|
+
},
|
|
59
|
+
"workflow_usable": true,
|
|
60
|
+
"workflow_usable_packet_count": 1
|
|
61
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"edges": [
|
|
4
|
+
{
|
|
5
|
+
"accepted": true,
|
|
6
|
+
"edge_id": "edge:self-alpha",
|
|
7
|
+
"evidence_refs": ["evidence:alpha"],
|
|
8
|
+
"relation_type": "self-support",
|
|
9
|
+
"source_packet_ids": ["packet:alpha"],
|
|
10
|
+
"target_packet_id": "packet:alpha"
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"operationally_usable": true,
|
|
14
|
+
"packet_ref": "packet:alpha",
|
|
15
|
+
"report_id": "phase-lab-runtime-report-1",
|
|
16
|
+
"residual_summary": {},
|
|
17
|
+
"settled": false,
|
|
18
|
+
"workflow_usable": true
|
|
19
|
+
}
|