settld 0.1.2 → 0.2.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 +93 -3
- package/SETTLD_VERSION +1 -1
- package/bin/settld-mcp +2 -0
- package/bin/settld.js +71 -0
- package/conformance/kernel-v0/README.md +7 -0
- package/conformance/kernel-v0/run.mjs +292 -4
- package/docs/ACCESS.md +57 -0
- package/docs/ADOPTION_CHECKLIST.md +44 -0
- package/docs/ALERTS.md +198 -0
- package/docs/ARCHITECTURE.md +69 -0
- package/docs/ARCHITECTURE_FOUNDER_GUIDE.md +284 -0
- package/docs/ARTIFACTS.md +60 -0
- package/docs/CERTIFICATION_CHECKLIST.md +33 -0
- package/docs/CIRCLE_SANDBOX_E2E.md +152 -0
- package/docs/CONFIG.md +297 -0
- package/docs/CONTRACTS_APIS.md +23 -0
- package/docs/DEPRECATION.md +31 -0
- package/docs/DOMAIN_MODEL.md +92 -0
- package/docs/EVENT_ENVELOPE.md +53 -0
- package/docs/FINANCE_PACK_FORMAT.md +53 -0
- package/docs/INCIDENT_TAXONOMY.md +30 -0
- package/docs/JOB_STATE_MACHINE.md +66 -0
- package/docs/KERNEL_COMPATIBLE.md +60 -0
- package/docs/KERNEL_V0.md +40 -0
- package/docs/KEY_ROTATION.md +80 -0
- package/docs/LEDGER.md +82 -0
- package/docs/LIVENESS.md +76 -0
- package/docs/MVP_BUILD_ORDER.md +36 -0
- package/docs/ONCALL_PLAYBOOK.md +39 -0
- package/docs/OPERATIONS_SIGNING.md +20 -0
- package/docs/OVERVIEW.md +190 -0
- package/docs/PERF_BASELINE.md +85 -0
- package/docs/PRD.md +77 -0
- package/docs/QUICKSTART_KERNEL_V0.md +96 -0
- package/docs/QUICKSTART_MCP.md +377 -0
- package/docs/QUICKSTART_MCP_HOSTS.md +210 -0
- package/docs/QUICKSTART_POLICY_PACKS.md +65 -0
- package/docs/QUICKSTART_PRODUCE.md +61 -0
- package/docs/QUICKSTART_PROFILES.md +198 -0
- package/docs/QUICKSTART_RELEASE_VERIFY.md +39 -0
- package/docs/QUICKSTART_SDK.md +125 -0
- package/docs/QUICKSTART_SDK_PYTHON.md +111 -0
- package/docs/QUICKSTART_VERIFY.md +54 -0
- package/docs/QUICKSTART_X402_GATEWAY.md +317 -0
- package/docs/README.md +33 -0
- package/docs/RELEASE_CHECKLIST.md +182 -0
- package/docs/RELEASING.md +82 -0
- package/docs/REPO_SETTINGS.md +37 -0
- package/docs/RUNBOOK.md +86 -0
- package/docs/SKILLS.md +42 -0
- package/docs/SKILL_BUNDLE_FORMAT.md +48 -0
- package/docs/SLO.md +131 -0
- package/docs/SUMMARY.md +17 -0
- package/docs/SUPPORT.md +31 -0
- package/docs/THREAT_MODEL.md +36 -0
- package/docs/TRUST.md +59 -0
- package/docs/WORKFLOW.md +35 -0
- package/docs/X402_BATCH_SETTLEMENT.md +126 -0
- package/docs/blog/2026-02-14-your-ai-agent-just-spent-500-where-is-the-receipt.md +73 -0
- package/docs/examples/x402-provider-payout-registry.example.json +14 -0
- package/docs/gitbook/README.md +64 -0
- package/docs/gitbook/SETUP.md +25 -0
- package/docs/gitbook/SUMMARY.md +15 -0
- package/docs/gitbook/api-reference.md +73 -0
- package/docs/gitbook/closepacks.md +55 -0
- package/docs/gitbook/conformance.md +59 -0
- package/docs/gitbook/core-primitives.md +85 -0
- package/docs/gitbook/dispute-lifecycle.md +33 -0
- package/docs/gitbook/faq.md +21 -0
- package/docs/gitbook/guides.md +49 -0
- package/docs/gitbook/operations-runbook.md +36 -0
- package/docs/gitbook/quickstart.md +103 -0
- package/docs/gitbook/replay-and-audit.md +30 -0
- package/docs/gitbook/sdk-reference.md +35 -0
- package/docs/gitbook/security-model.md +58 -0
- package/docs/integrations/README.md +15 -0
- package/docs/integrations/github-actions-verify.yml +31 -0
- package/docs/integrations/github-actions.md +34 -0
- package/docs/integrations/openclaw/CLAWHUB_PUBLISH_CHECKLIST.md +65 -0
- package/docs/integrations/openclaw/PUBLIC_QUICKSTART.md +95 -0
- package/docs/integrations/openclaw/settld-mcp-skill/SKILL.md +69 -0
- package/docs/integrations/openclaw/settld-mcp-skill/mcp-server.example.json +12 -0
- package/docs/kernel-compatible/capabilities.json +36 -0
- package/docs/marketing/agent-commerce-substrate.md +78 -0
- package/docs/marketing/hn-repost-2026-02-17.md +102 -0
- package/docs/marketing/show-hn-post.md +45 -0
- package/docs/ops/ARTIFACT_VERIFICATION_STATUS.md +43 -0
- package/docs/ops/BILLING_WEBHOOK_REPLAY.md +105 -0
- package/docs/ops/CI_FLAKE_BUDGET.md +31 -0
- package/docs/ops/DISPUTE_FINANCE_RECONCILIATION_PACKET.md +56 -0
- package/docs/ops/GO_LIVE_GATE_S13.md +27 -0
- package/docs/ops/HOSTED_BASELINE_R2.md +129 -0
- package/docs/ops/KERNEL_V0_SHIP_GATE.md +69 -0
- package/docs/ops/LIGHTHOUSE_PRODUCTION_CLOSE.md +51 -0
- package/docs/ops/MCP_COMPATIBILITY_MATRIX.md +30 -0
- package/docs/ops/MINIMUM_PRODUCTION_TOPOLOGY.md +89 -0
- package/docs/ops/P0_BACKEND_PROGRESS.md +150 -0
- package/docs/ops/PAYMENTS_ALPHA_R5.md +105 -0
- package/docs/ops/PILOT_ONBOARDING_RUNBOOK.md +112 -0
- package/docs/ops/PRODUCTION_DEPLOYMENT_CHECKLIST.md +140 -0
- package/docs/ops/R1_SLOS.md +66 -0
- package/docs/ops/RELEASE_SIGNING_INCIDENT.md +58 -0
- package/docs/ops/SELF_SERVE_LAUNCH_AUTOMATION.md +89 -0
- package/docs/ops/THROUGHPUT_DRILL_10X.md +48 -0
- package/docs/ops/TRUST_CONFIG_WIZARD.md +60 -0
- package/docs/ops/X402_PILOT_WEEKLY_METRICS.md +76 -0
- package/docs/ops/tool-call-disputes-holdback.md +52 -0
- package/docs/pilot-kit/PILOT_PACKAGE_SCORECARD_X402.md +46 -0
- package/docs/pilot-kit/README.md +29 -0
- package/docs/pilot-kit/architecture-one-pager.md +48 -0
- package/docs/pilot-kit/buyer-email.txt +19 -0
- package/docs/pilot-kit/buyer-one-pager.md +31 -0
- package/docs/pilot-kit/gtm-pilot-playbook.md +182 -0
- package/docs/pilot-kit/offline-verify.md +33 -0
- package/docs/pilot-kit/procurement-one-pager.md +50 -0
- package/docs/pilot-kit/rfp-clause.md +46 -0
- package/docs/pilot-kit/roi-calculator-template.csv +2 -0
- package/docs/pilot-kit/security-qa.md +153 -0
- package/docs/pilot-kit/security-summary.md +35 -0
- package/docs/plans/2026-02-13-mcp-spike-design.md +113 -0
- package/docs/plans/2026-02-20-trust-os-v1-jira-backlog.md +348 -0
- package/docs/plans/2026-02-21-agent-economic-actor-operating-model.md +169 -0
- package/docs/plans/2026-02-21-trust-os-v1-strategy.md +241 -0
- package/docs/research/2026-02-21-agent-spend-host-landscape.md +57 -0
- package/docs/spec/AcceptanceCriteria.v1.md +17 -0
- package/docs/spec/AcceptanceEvaluation.v1.md +10 -0
- package/docs/spec/AgentEvent.v1.md +47 -0
- package/docs/spec/AgentIdentity.v1.md +62 -0
- package/docs/spec/AgentPassport.v1.md +95 -0
- package/docs/spec/AgentReputation.v1.md +59 -0
- package/docs/spec/AgentReputation.v2.md +52 -0
- package/docs/spec/AgentRun.v1.md +47 -0
- package/docs/spec/AgentRunSettlement.v1.md +52 -0
- package/docs/spec/AgentWallet.v1.md +43 -0
- package/docs/spec/AgreementDelegation.v1.md +109 -0
- package/docs/spec/ArbitrationCase.v1.md +67 -0
- package/docs/spec/ArbitrationOutcomeMapping.v1.md +62 -0
- package/docs/spec/ArbitrationVerdict.v1.md +60 -0
- package/docs/spec/BundleHeadAttestation.v1.md +32 -0
- package/docs/spec/CANONICAL_JSON.md +31 -0
- package/docs/spec/CRYPTOGRAPHY.md +61 -0
- package/docs/spec/ClosePack.v1.md +49 -0
- package/docs/spec/ClosePackManifest.v1.md +24 -0
- package/docs/spec/DelegationGrant.v1.md +90 -0
- package/docs/spec/DisputeCaseLifecycle.v1.md +51 -0
- package/docs/spec/DisputeOpenEnvelope.v1.md +43 -0
- package/docs/spec/ERRORS.md +76 -0
- package/docs/spec/ESCROW_NETTING_INVARIANTS.md +71 -0
- package/docs/spec/EvidenceIndex.v1.md +20 -0
- package/docs/spec/ExecutionIntent.v1.md +90 -0
- package/docs/spec/FinancePackBundleManifest.v1.md +24 -0
- package/docs/spec/FundingHold.v1.md +60 -0
- package/docs/spec/GovernancePolicy.v1.md +34 -0
- package/docs/spec/GovernancePolicy.v2.md +30 -0
- package/docs/spec/INVARIANTS.md +389 -0
- package/docs/spec/InteractionDirectionMatrix.v1.md +30 -0
- package/docs/spec/InvoiceBundleManifest.v1.md +24 -0
- package/docs/spec/InvoiceClaim.v1.md +11 -0
- package/docs/spec/MONEY_RAIL_STATE_MACHINE.md +58 -0
- package/docs/spec/MarketplaceAcceptance.v2.md +46 -0
- package/docs/spec/MarketplaceOffer.v2.md +54 -0
- package/docs/spec/MeteringReport.v1.md +18 -0
- package/docs/spec/OperatorAction.v1.md +90 -0
- package/docs/spec/PRODUCER_ERRORS.md +42 -0
- package/docs/spec/PolicyDecision.v1.md +83 -0
- package/docs/spec/PricingMatrix.v1.md +20 -0
- package/docs/spec/PricingMatrixSignatures.v1.md +30 -0
- package/docs/spec/PricingMatrixSignatures.v2.md +29 -0
- package/docs/spec/ProduceCliOutput.v1.md +46 -0
- package/docs/spec/ProofBundleManifest.v1.md +24 -0
- package/docs/spec/README.md +109 -0
- package/docs/spec/REFERENCE_IMPLEMENTATIONS.md +29 -0
- package/docs/spec/REFERENCE_VERIFIER_BEHAVIOR.md +68 -0
- package/docs/spec/REMOTE_SIGNER.md +66 -0
- package/docs/spec/ReleaseIndex.v1.md +32 -0
- package/docs/spec/ReleaseIndexSignatures.v1.md +17 -0
- package/docs/spec/ReleaseTrust.v1.md +13 -0
- package/docs/spec/ReleaseTrust.v2.md +26 -0
- package/docs/spec/RemoteSignerRequest.v1.md +21 -0
- package/docs/spec/RemoteSignerResponse.v1.md +16 -0
- package/docs/spec/ReputationEvent.v1.md +63 -0
- package/docs/spec/RevocationList.v1.md +28 -0
- package/docs/spec/SIGNER_PROVIDER_PLUGIN.md +32 -0
- package/docs/spec/STRICTNESS.md +68 -0
- package/docs/spec/SUPPLY_CHAIN.md +33 -0
- package/docs/spec/SettlementAdjustment.v1.md +45 -0
- package/docs/spec/SettlementDecisionRecord.v1.md +48 -0
- package/docs/spec/SettlementDecisionRecord.v2.md +53 -0
- package/docs/spec/SettlementDecisionReport.v1.md +44 -0
- package/docs/spec/SettlementKernel.v1.md +59 -0
- package/docs/spec/SettlementReceipt.v1.md +63 -0
- package/docs/spec/SlaDefinition.v1.md +24 -0
- package/docs/spec/SlaEvaluation.v1.md +12 -0
- package/docs/spec/THREAT_MODEL.md +113 -0
- package/docs/spec/TOOL_PROVENANCE.md +30 -0
- package/docs/spec/TRUST_ANCHORS.md +84 -0
- package/docs/spec/TenantSettings.v1.md +90 -0
- package/docs/spec/TenantSettings.v2.md +99 -0
- package/docs/spec/TimestampProof.v1.md +25 -0
- package/docs/spec/ToolCallAgreement.v1.md +34 -0
- package/docs/spec/ToolCallEvidence.v1.md +47 -0
- package/docs/spec/ToolManifest.v1.md +47 -0
- package/docs/spec/VERIFIER_ENVIRONMENT.md +38 -0
- package/docs/spec/VERSIONING.md +107 -0
- package/docs/spec/VerificationReport.v1.md +50 -0
- package/docs/spec/VerifyAboutOutput.v1.md +10 -0
- package/docs/spec/VerifyCliOutput.v1.md +28 -0
- package/docs/spec/WARNINGS.md +83 -0
- package/docs/spec/error-codes.v1.txt +285 -0
- package/docs/spec/examples/agreement_delegation_v1.example.json +21 -0
- package/docs/spec/examples/arbitration_case_v1.example.json +26 -0
- package/docs/spec/examples/arbitration_verdict_v1.example.json +32 -0
- package/docs/spec/examples/dispute_open_envelope_v1.example.json +18 -0
- package/docs/spec/examples/produce_cli_output_v1.example.json +32 -0
- package/docs/spec/examples/release_index_signature_v1.example.json +9 -0
- package/docs/spec/examples/release_index_signatures_v1.example.json +14 -0
- package/docs/spec/examples/release_index_v1.example.json +15 -0
- package/docs/spec/examples/release_trust_v1.example.json +7 -0
- package/docs/spec/examples/release_trust_v2.example.json +22 -0
- package/docs/spec/examples/remote_signer_request_v1.example.json +18 -0
- package/docs/spec/examples/remote_signer_response_v1.example.json +8 -0
- package/docs/spec/examples/reputation_event_v1.example.json +29 -0
- package/docs/spec/examples/verification_report_v1.example.json +24 -0
- package/docs/spec/examples/verify_about_output_v1.example.json +29 -0
- package/docs/spec/examples/verify_cli_output_v1.example.json +13 -0
- package/docs/spec/legacy/MarketplaceAcceptance.v1.md +48 -0
- package/docs/spec/legacy/MarketplaceOffer.v1.md +56 -0
- package/docs/spec/legacy/schemas/MarketplaceAcceptance.v1.schema.json +53 -0
- package/docs/spec/legacy/schemas/MarketplaceOffer.v1.schema.json +61 -0
- package/docs/spec/producer-error-codes.v1.txt +14 -0
- package/docs/spec/schemas/AcceptanceCriteria.v1.schema.json +24 -0
- package/docs/spec/schemas/AcceptanceEvaluation.v1.schema.json +26 -0
- package/docs/spec/schemas/AgentEvent.v1.schema.json +49 -0
- package/docs/spec/schemas/AgentIdentity.v1.schema.json +129 -0
- package/docs/spec/schemas/AgentPassport.v1.schema.json +112 -0
- package/docs/spec/schemas/AgentReputation.v1.schema.json +151 -0
- package/docs/spec/schemas/AgentReputation.v2.schema.json +120 -0
- package/docs/spec/schemas/AgentRun.v1.schema.json +71 -0
- package/docs/spec/schemas/AgentRunSettlement.v1.schema.json +75 -0
- package/docs/spec/schemas/AgentWallet.v1.schema.json +54 -0
- package/docs/spec/schemas/AgreementDelegation.v1.schema.json +50 -0
- package/docs/spec/schemas/ArbitrationCase.v1.schema.json +133 -0
- package/docs/spec/schemas/ArbitrationVerdict.v1.schema.json +149 -0
- package/docs/spec/schemas/BundleHeadAttestation.v1.schema.json +21 -0
- package/docs/spec/schemas/ClosePackManifest.v1.schema.json +38 -0
- package/docs/spec/schemas/DelegationGrant.v1.schema.json +102 -0
- package/docs/spec/schemas/DisputeOpenEnvelope.v1.schema.json +78 -0
- package/docs/spec/schemas/EvidenceIndex.v1.schema.json +41 -0
- package/docs/spec/schemas/ExecutionIntent.v1.schema.json +85 -0
- package/docs/spec/schemas/FinancePackBundleManifest.v1.schema.json +38 -0
- package/docs/spec/schemas/FundingHold.v1.schema.json +46 -0
- package/docs/spec/schemas/GovernancePolicy.v1.schema.json +45 -0
- package/docs/spec/schemas/GovernancePolicy.v2.schema.json +70 -0
- package/docs/spec/schemas/InteractionDirectionMatrix.v1.schema.json +43 -0
- package/docs/spec/schemas/InvoiceBundleManifest.v1.schema.json +38 -0
- package/docs/spec/schemas/InvoiceClaim.v1.schema.json +39 -0
- package/docs/spec/schemas/MarketplaceAcceptance.v2.schema.json +53 -0
- package/docs/spec/schemas/MarketplaceOffer.v2.schema.json +61 -0
- package/docs/spec/schemas/MeteringReport.v1.schema.json +45 -0
- package/docs/spec/schemas/OperatorAction.v1.schema.json +113 -0
- package/docs/spec/schemas/PolicyDecision.v1.schema.json +74 -0
- package/docs/spec/schemas/PricingMatrix.v1.schema.json +24 -0
- package/docs/spec/schemas/PricingMatrixSignatures.v1.schema.json +24 -0
- package/docs/spec/schemas/PricingMatrixSignatures.v2.schema.json +24 -0
- package/docs/spec/schemas/ProduceCliOutput.v1.schema.json +107 -0
- package/docs/spec/schemas/ProofBundleManifest.v1.schema.json +37 -0
- package/docs/spec/schemas/PublicKeys.v1.schema.json +33 -0
- package/docs/spec/schemas/ReleaseIndex.v1.schema.json +45 -0
- package/docs/spec/schemas/ReleaseIndexSignature.v1.schema.json +16 -0
- package/docs/spec/schemas/ReleaseIndexSignatures.v1.schema.json +16 -0
- package/docs/spec/schemas/ReleaseTrust.v1.schema.json +15 -0
- package/docs/spec/schemas/ReleaseTrust.v2.schema.json +37 -0
- package/docs/spec/schemas/RemoteSignerPublicKeyResponse.v1.schema.json +14 -0
- package/docs/spec/schemas/RemoteSignerRequest.v1.schema.json +24 -0
- package/docs/spec/schemas/RemoteSignerResponse.v1.schema.json +10 -0
- package/docs/spec/schemas/RemoteSignerSignRequest.v1.schema.json +27 -0
- package/docs/spec/schemas/RemoteSignerSignResponse.v1.schema.json +16 -0
- package/docs/spec/schemas/ReputationEvent.v1.schema.json +164 -0
- package/docs/spec/schemas/RevocationList.v1.schema.json +51 -0
- package/docs/spec/schemas/SettlementAdjustment.v1.schema.json +44 -0
- package/docs/spec/schemas/SettlementDecisionRecord.v1.schema.json +66 -0
- package/docs/spec/schemas/SettlementDecisionRecord.v2.schema.json +149 -0
- package/docs/spec/schemas/SettlementDecisionReport.v1.schema.json +61 -0
- package/docs/spec/schemas/SettlementReceipt.v1.schema.json +135 -0
- package/docs/spec/schemas/SlaDefinition.v1.schema.json +33 -0
- package/docs/spec/schemas/SlaEvaluation.v1.schema.json +26 -0
- package/docs/spec/schemas/TenantSettings.v1.schema.json +90 -0
- package/docs/spec/schemas/TenantSettings.v2.schema.json +161 -0
- package/docs/spec/schemas/TimestampProof.v1.schema.json +17 -0
- package/docs/spec/schemas/ToolCallAgreement.v1.schema.json +34 -0
- package/docs/spec/schemas/ToolCallEvidence.v1.schema.json +45 -0
- package/docs/spec/schemas/ToolManifest.v1.schema.json +54 -0
- package/docs/spec/schemas/VerificationReport.v1.schema.json +83 -0
- package/docs/spec/schemas/VerifyAboutOutput.v1.schema.json +54 -0
- package/docs/spec/schemas/VerifyCliOutput.v1.schema.json +75 -0
- package/docs/spec/schemas/VerifyReleaseOutput.v1.schema.json +47 -0
- package/docs/spec/x402-error-codes.v1.txt +35 -0
- package/docs/templates/buyer-email.txt +18 -0
- package/docs/templates/buyer-one-pager.md +24 -0
- package/package.json +53 -6
- package/scripts/acceptance/full-stack.mjs +734 -0
- package/scripts/acceptance/full-stack.sh +99 -0
- package/scripts/audit/build-audit-packet.mjs +242 -0
- package/scripts/backup-pg.sh +45 -0
- package/scripts/backup-restore/README.md +18 -0
- package/scripts/backup-restore/capture-state.mjs +130 -0
- package/scripts/backup-restore/client.mjs +97 -0
- package/scripts/backup-restore/seed-workload.mjs +235 -0
- package/scripts/backup-restore/verify-state.mjs +139 -0
- package/scripts/backup-restore-test.sh +217 -0
- package/scripts/chaos.js +221 -0
- package/scripts/ci/build-launch-cutover-packet.mjs +304 -0
- package/scripts/ci/build-self-serve-benchmark-report.mjs +122 -0
- package/scripts/ci/changelog-guard.mjs +145 -0
- package/scripts/ci/check-kernel-v0-launch-gate.mjs +233 -0
- package/scripts/ci/check-secret-hygiene.mjs +78 -0
- package/scripts/ci/check-version-consistency.mjs +42 -0
- package/scripts/ci/cli-pack-smoke.mjs +160 -0
- package/scripts/ci/flake-budget-guard.mjs +68 -0
- package/scripts/ci/generate-error-codes.mjs +54 -0
- package/scripts/ci/lib/lighthouse-tracker.mjs +90 -0
- package/scripts/ci/lib/self-serve-launch-gate.mjs +89 -0
- package/scripts/ci/npm-pack-smoke.mjs +454 -0
- package/scripts/ci/run-10x-throughput-drill.mjs +318 -0
- package/scripts/ci/run-10x-throughput-incident-rehearsal.mjs +368 -0
- package/scripts/ci/run-arbitration-workspace-browser-e2e.sh +22 -0
- package/scripts/ci/run-circle-sandbox-smoke.mjs +237 -0
- package/scripts/ci/run-go-live-gate.mjs +150 -0
- package/scripts/ci/run-kernel-v0-ship-gate.mjs +97 -0
- package/scripts/ci/run-mcp-host-cert-matrix.mjs +201 -0
- package/scripts/ci/run-mcp-host-smoke.mjs +473 -0
- package/scripts/ci/run-offline-verification-parity-gate.mjs +762 -0
- package/scripts/ci/run-onboarding-host-success-gate.mjs +516 -0
- package/scripts/ci/run-onboarding-policy-slo-gate.mjs +537 -0
- package/scripts/ci/run-production-cutover-gate.mjs +540 -0
- package/scripts/ci/run-public-openclaw-npx-smoke.mjs +148 -0
- package/scripts/ci/run-release-promotion-guard.mjs +756 -0
- package/scripts/ci/run-self-serve-launch-gate.mjs +56 -0
- package/scripts/ci/runtime-import-smoke.mjs +58 -0
- package/scripts/ci/update-lighthouse-tracker.mjs +112 -0
- package/scripts/closepack/lib.mjs +286 -0
- package/scripts/collect-debug.sh +263 -0
- package/scripts/demo/compositional-settlement-3hop.mjs +237 -0
- package/scripts/demo/delivery-robot/export-ui-fixture.mjs +188 -0
- package/scripts/demo/delivery-robot/generate.mjs +377 -0
- package/scripts/demo/kernel-agent-goes-shopping.mjs +202 -0
- package/scripts/demo/magic-link-first-green.mjs +118 -0
- package/scripts/demo/magic-link-kind-smoke.mjs +577 -0
- package/scripts/demo/mcp-paid-exa.mjs +1110 -0
- package/scripts/dev/billing-doctor.sh +145 -0
- package/scripts/dev/billing-smoke-prod.sh +219 -0
- package/scripts/dev/billing-webhook-replay.sh +161 -0
- package/scripts/dev/env.dev.example +29 -0
- package/scripts/dev/env.sh +37 -0
- package/scripts/dev/new-sdk-key.sh +81 -0
- package/scripts/dev/sdk-first-run.sh +21 -0
- package/scripts/dev/smoke-x402-gateway.sh +115 -0
- package/scripts/dev/start-api.sh +24 -0
- package/scripts/doctor/mcp-host.mjs +120 -0
- package/scripts/examples/produce-and-verify-jobproof.mjs +191 -0
- package/scripts/examples/sdk-first-paid-rfq.py +105 -0
- package/scripts/examples/sdk-first-verified-run.mjs +85 -0
- package/scripts/examples/sdk-first-verified-run.py +99 -0
- package/scripts/examples/sdk-tenant-analytics.mjs +103 -0
- package/scripts/examples/sdk-tenant-analytics.py +118 -0
- package/scripts/finance-pack/bundle.mjs +284 -0
- package/scripts/fixtures/generate-bundle-fixtures.mjs +877 -0
- package/scripts/governance/export.mjs +169 -0
- package/scripts/load/delivery-stress.k6.js +183 -0
- package/scripts/load/ingest-burst.k6.js +236 -0
- package/scripts/load/run-delivery-load.js +66 -0
- package/scripts/load/webhook-receiver.js +131 -0
- package/scripts/magic-link/migrate-run-records-to-db.mjs +35 -0
- package/scripts/mcp/probe.mjs +238 -0
- package/scripts/mcp/settld-mcp-http-gateway.mjs +178 -0
- package/scripts/mcp/settld-mcp-server.mjs +1511 -0
- package/scripts/openapi/write.mjs +13 -0
- package/scripts/ops/bootstrap-tenant-conformance.mjs +185 -0
- package/scripts/ops/build-x402-pilot-reliability-report.mjs +489 -0
- package/scripts/ops/check-x402-receipt-sample.mjs +181 -0
- package/scripts/ops/design-partner-run-packet.mjs +466 -0
- package/scripts/ops/dispute-finance-reconciliation-packet.mjs +313 -0
- package/scripts/ops/hosted-baseline-evidence.mjs +890 -0
- package/scripts/ops/money-rails-chargeback-evidence.mjs +509 -0
- package/scripts/ops/money-rails-reconcile-evidence.mjs +180 -0
- package/scripts/ops/p0-seed-money-rail-operation.mjs +432 -0
- package/scripts/ops/run-x402-hitl-smoke.mjs +607 -0
- package/scripts/pilot/finance-pack.mjs +495 -0
- package/scripts/pilot/fixtures/robot-keypair.json +4 -0
- package/scripts/pilot/fixtures/server-signer.json +4 -0
- package/scripts/policy/cli.mjs +600 -0
- package/scripts/profile/cli.mjs +1324 -0
- package/scripts/proof-bundle/job.mjs +109 -0
- package/scripts/proof-bundle/lib.mjs +92 -0
- package/scripts/proof-bundle/month.mjs +103 -0
- package/scripts/provider/conformance-run.mjs +159 -0
- package/scripts/provider/keys-generate.mjs +135 -0
- package/scripts/provider/publish.mjs +420 -0
- package/scripts/quickstart/x402.mjs +334 -0
- package/scripts/register-entity-secret.mjs +102 -0
- package/scripts/release/build-artifacts.mjs +181 -0
- package/scripts/release/generate-release-index.mjs +112 -0
- package/scripts/release/release-index-lib.mjs +232 -0
- package/scripts/release/sign-release-index.mjs +85 -0
- package/scripts/release/validate-release-assets.mjs +170 -0
- package/scripts/release/verify-release.mjs +261 -0
- package/scripts/restore-pg.sh +34 -0
- package/scripts/scaffold/create-settld-paid-tool.mjs +19 -0
- package/scripts/sdk/smoke-python.py +30 -0
- package/scripts/sdk/smoke.mjs +16 -0
- package/scripts/settlement/x402-batch-worker.mjs +1091 -0
- package/scripts/setup/circle-bootstrap.mjs +310 -0
- package/scripts/setup/host-config.mjs +617 -0
- package/scripts/setup/onboard.mjs +1337 -0
- package/scripts/setup/openclaw-onboard.mjs +423 -0
- package/scripts/setup/wizard.mjs +986 -0
- package/scripts/slo/check.mjs +239 -0
- package/scripts/smoke/k8s-smoke.mjs +214 -0
- package/scripts/spec/generate-protocol-vectors.mjs +1019 -0
- package/scripts/test/check-no-generated-artifacts.sh +12 -0
- package/scripts/test/run.sh +59 -0
- package/scripts/trust/validate-trust-file.mjs +57 -0
- package/scripts/trust-config/rotate-settld-pay.mjs +277 -0
- package/scripts/trust-config/wizard.mjs +161 -0
- package/scripts/vendor-contract-test-lib.mjs +182 -0
- package/scripts/vendor-contract-test.mjs +55 -0
- package/scripts/vercel/build-mkdocs.sh +9 -0
- package/scripts/vercel/ignore-mkdocs.sh +25 -0
- package/scripts/vercel/install-mkdocs.sh +6 -0
- package/scripts/verify-pg.js +217 -0
- package/scripts/x402/receipt-verify.mjs +289 -0
- package/services/finance-sink/src/dedupe-store.js +29 -6
- package/services/receiver/src/dedupe-store.js +29 -5
- package/services/x402-gateway/Dockerfile +13 -0
- package/services/x402-gateway/README.md +58 -0
- package/services/x402-gateway/examples/upstream-mock.js +337 -0
- package/services/x402-gateway/src/server.js +1058 -0
- package/src/api/app.js +34658 -16940
- package/src/api/maintenance.js +70 -0
- package/src/api/middleware/trust-kernel.js +114 -0
- package/src/api/openapi.js +1778 -70
- package/src/api/persistence.js +456 -0
- package/src/api/server.js +81 -5
- package/src/api/store.js +1581 -62
- package/src/api/workers/deliveries.js +99 -4
- package/src/api/workers/insolvency-sweep.js +159 -0
- package/src/core/agent-card.js +69 -0
- package/src/core/agent-wallets.js +231 -0
- package/src/core/agreement-delegation.js +549 -0
- package/src/core/billing-plans.js +40 -6
- package/src/core/circle-reserve-adapter.js +845 -0
- package/src/core/event-policy.js +21 -2
- package/src/core/maintenance-locks.js +1 -0
- package/src/core/operator-action.js +303 -0
- package/src/core/paid-tool-manifest.js +318 -0
- package/src/core/policy-decision.js +322 -0
- package/src/core/policy-packs.js +207 -0
- package/src/core/profile-fingerprint.js +27 -0
- package/src/core/profile-simulation-reasons.js +84 -0
- package/src/core/profile-templates.js +242 -0
- package/src/core/provider-publish-conformance.js +525 -0
- package/src/core/provider-publish-proof.js +396 -0
- package/src/core/provider-quote-signature.js +170 -0
- package/src/core/settld-keys.js +112 -0
- package/src/core/settld-pay-token.js +344 -0
- package/src/core/settlement-kernel.js +239 -2
- package/src/core/settlement-verifier.js +335 -0
- package/src/core/tool-call-agreement.js +112 -0
- package/src/core/tool-call-evidence.js +144 -0
- package/src/core/tool-provider-signature.js +98 -0
- package/src/core/wallet-assignment-resolver.js +129 -0
- package/src/core/wallet-provider-bootstrap.js +365 -0
- package/src/core/x402-escalation-override.js +258 -0
- package/src/core/x402-gate.js +118 -0
- package/src/core/x402-provider-refund-decision.js +220 -0
- package/src/core/x402-receipt-verifier.js +708 -0
- package/src/core/x402-reversal-command.js +251 -0
- package/src/core/x402-wallet-issuer-decision.js +252 -0
- package/src/core/zk-verifier.js +300 -0
- package/src/db/migrations/029_reputation_event_index.sql +54 -0
- package/src/db/migrations/030_artifacts_source_event_unique_job_only.sql +15 -0
- package/src/db/pg.js +18 -7
- package/src/db/store-pg.js +1508 -111
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { mkdir, readFile, writeFile } from "node:fs/promises";
|
|
3
|
+
import { dirname, isAbsolute, relative, resolve, sep } from "node:path";
|
|
4
|
+
import { spawn } from "node:child_process";
|
|
5
|
+
|
|
6
|
+
function parseIntEnv(name, fallback, { min = null, max = null } = {}) {
|
|
7
|
+
const raw = process.env[name];
|
|
8
|
+
if (raw === undefined || raw === null || String(raw).trim() === "") return fallback;
|
|
9
|
+
const value = Number(raw);
|
|
10
|
+
if (!Number.isSafeInteger(value)) throw new Error(`${name} must be an integer`);
|
|
11
|
+
if (min !== null && value < min) throw new Error(`${name} must be >= ${min}`);
|
|
12
|
+
if (max !== null && value > max) throw new Error(`${name} must be <= ${max}`);
|
|
13
|
+
return value;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function parseFloatEnv(name, fallback, { min = null, max = null } = {}) {
|
|
17
|
+
const raw = process.env[name];
|
|
18
|
+
if (raw === undefined || raw === null || String(raw).trim() === "") return fallback;
|
|
19
|
+
const value = Number(raw);
|
|
20
|
+
if (!Number.isFinite(value)) throw new Error(`${name} must be a number`);
|
|
21
|
+
if (min !== null && value < min) throw new Error(`${name} must be >= ${min}`);
|
|
22
|
+
if (max !== null && value > max) throw new Error(`${name} must be <= ${max}`);
|
|
23
|
+
return value;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function parseBoolEnv(name, fallback = false) {
|
|
27
|
+
const raw = process.env[name];
|
|
28
|
+
if (raw === undefined || raw === null || String(raw).trim() === "") return fallback;
|
|
29
|
+
const value = String(raw).trim().toLowerCase();
|
|
30
|
+
if (value === "1" || value === "true" || value === "yes" || value === "y") return true;
|
|
31
|
+
if (value === "0" || value === "false" || value === "no" || value === "n") return false;
|
|
32
|
+
throw new Error(`${name} must be boolean-like (true/false)`);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function runCommand(cmd, args, { env = process.env, stdio = "inherit" } = {}) {
|
|
36
|
+
return new Promise((resolvePromise, rejectPromise) => {
|
|
37
|
+
const child = spawn(cmd, args, { env, stdio });
|
|
38
|
+
child.on("error", rejectPromise);
|
|
39
|
+
child.on("exit", (code) => {
|
|
40
|
+
resolvePromise(code ?? 1);
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async function ensureK6() {
|
|
46
|
+
try {
|
|
47
|
+
const code = await runCommand("k6", ["version"], { stdio: "ignore" });
|
|
48
|
+
return code === 0;
|
|
49
|
+
} catch {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async function ensureDocker() {
|
|
55
|
+
try {
|
|
56
|
+
const code = await runCommand("docker", ["--version"], { stdio: "ignore" });
|
|
57
|
+
return code === 0;
|
|
58
|
+
} catch {
|
|
59
|
+
return false;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function toWorkspacePath(hostPath, cwd) {
|
|
64
|
+
const target = resolve(hostPath);
|
|
65
|
+
const root = resolve(cwd);
|
|
66
|
+
const rel = relative(root, target);
|
|
67
|
+
if (
|
|
68
|
+
rel === "" ||
|
|
69
|
+
rel.startsWith(`..${sep}`) ||
|
|
70
|
+
rel === ".." ||
|
|
71
|
+
(isAbsolute(rel) && resolve(rel) !== target)
|
|
72
|
+
) {
|
|
73
|
+
throw new Error(`docker k6 fallback requires paths under working directory: ${hostPath}`);
|
|
74
|
+
}
|
|
75
|
+
const normalized = rel.split(sep).join("/");
|
|
76
|
+
return normalized === "" ? "/workspace" : `/workspace/${normalized}`;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
async function resolveK6Runner({ cwd, allowDockerFallback = true } = {}) {
|
|
80
|
+
if (await ensureK6()) {
|
|
81
|
+
return {
|
|
82
|
+
kind: "k6_binary",
|
|
83
|
+
cmd: "k6",
|
|
84
|
+
baseArgs: []
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
if (!allowDockerFallback) {
|
|
88
|
+
throw new Error("k6 is required on PATH (docker fallback disabled)");
|
|
89
|
+
}
|
|
90
|
+
if (!(await ensureDocker())) {
|
|
91
|
+
throw new Error("k6 is required on PATH or docker must be installed for fallback");
|
|
92
|
+
}
|
|
93
|
+
const networkMode = process.env.K6_DOCKER_NETWORK_MODE && process.env.K6_DOCKER_NETWORK_MODE.trim() !== "" ? process.env.K6_DOCKER_NETWORK_MODE.trim() : "host";
|
|
94
|
+
const image = process.env.K6_DOCKER_IMAGE && process.env.K6_DOCKER_IMAGE.trim() !== "" ? process.env.K6_DOCKER_IMAGE.trim() : "grafana/k6:0.48.0";
|
|
95
|
+
return {
|
|
96
|
+
kind: "docker_k6",
|
|
97
|
+
cmd: "docker",
|
|
98
|
+
baseArgs: ["run", "--rm", "--network", networkMode, "-v", `${cwd}:/workspace`, "-w", "/workspace", image],
|
|
99
|
+
toRunnerPath: (value) => toWorkspacePath(value, cwd)
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
function readMetric(summary, metricName, key) {
|
|
104
|
+
const metric = summary?.metrics?.[metricName];
|
|
105
|
+
if (!metric || typeof metric !== "object") return null;
|
|
106
|
+
const valueFromValues = metric?.values?.[key];
|
|
107
|
+
if (Number.isFinite(Number(valueFromValues))) return Number(valueFromValues);
|
|
108
|
+
const valueDirect = metric?.[key];
|
|
109
|
+
if (Number.isFinite(Number(valueDirect))) return Number(valueDirect);
|
|
110
|
+
return null;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function resolveThroughputReportPath(cwd = process.cwd(), env = process.env) {
|
|
114
|
+
return resolve(cwd, env.THROUGHPUT_REPORT_PATH || "artifacts/throughput/10x-drill-summary.json");
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function toFailureSummary(err) {
|
|
118
|
+
return {
|
|
119
|
+
message: err?.message ?? String(err),
|
|
120
|
+
code: typeof err?.code === "string" ? err.code : null
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
async function writeFailureReport({ reportPath, runConfig = null, error }) {
|
|
125
|
+
await mkdir(dirname(reportPath), { recursive: true });
|
|
126
|
+
const report = {
|
|
127
|
+
schemaVersion: "ThroughputDrill10xReport.v1",
|
|
128
|
+
generatedAt: new Date().toISOString(),
|
|
129
|
+
mode: "error",
|
|
130
|
+
runConfig,
|
|
131
|
+
metrics: null,
|
|
132
|
+
checks: {
|
|
133
|
+
scriptCompleted: false
|
|
134
|
+
},
|
|
135
|
+
failure: toFailureSummary(error),
|
|
136
|
+
verdict: {
|
|
137
|
+
ok: false,
|
|
138
|
+
reason: "execution_error"
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
await writeFile(reportPath, JSON.stringify(report, null, 2) + "\n", "utf8");
|
|
142
|
+
process.stdout.write(`wrote throughput report: ${reportPath}\n`);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
async function main() {
|
|
146
|
+
const baseJobsPerMinPerTenant = parseIntEnv("BASELINE_JOBS_PER_MIN_PER_TENANT", 10, { min: 1 });
|
|
147
|
+
const multiplier = parseIntEnv("THROUGHPUT_MULTIPLIER", 10, { min: 1 });
|
|
148
|
+
const jobsPerMinPerTenant = parseIntEnv(
|
|
149
|
+
"JOBS_PER_MIN_PER_TENANT",
|
|
150
|
+
baseJobsPerMinPerTenant * multiplier,
|
|
151
|
+
{ min: 1 }
|
|
152
|
+
);
|
|
153
|
+
const tenants = parseIntEnv("TENANTS", 3, { min: 1 });
|
|
154
|
+
const robotsPerTenant = parseIntEnv("ROBOTS_PER_TENANT", 3, { min: 1 });
|
|
155
|
+
const duration = process.env.DURATION && process.env.DURATION.trim() !== "" ? process.env.DURATION.trim() : "120s";
|
|
156
|
+
const targetP95Ms = parseFloatEnv("TARGET_P95_MS", 5000, { min: 1 });
|
|
157
|
+
const maxFailureRate = parseFloatEnv("MAX_FAILURE_RATE", 0.05, { min: 0, max: 1 });
|
|
158
|
+
const allowRejectedRate = parseFloatEnv("MAX_INGEST_REJECTED_PER_MIN", 50, { min: 0 });
|
|
159
|
+
const dryRun = parseBoolEnv("DRY_RUN", false);
|
|
160
|
+
const allowDockerFallback = parseBoolEnv("ALLOW_DOCKER_K6_FALLBACK", true);
|
|
161
|
+
|
|
162
|
+
const reportPath = resolveThroughputReportPath(process.cwd(), process.env);
|
|
163
|
+
const summaryPath = resolve(process.cwd(), process.env.THROUGHPUT_K6_SUMMARY_PATH || "artifacts/throughput/10x-drill-k6-summary.json");
|
|
164
|
+
await mkdir(dirname(reportPath), { recursive: true });
|
|
165
|
+
await mkdir(dirname(summaryPath), { recursive: true });
|
|
166
|
+
|
|
167
|
+
const runConfig = {
|
|
168
|
+
baseUrl: process.env.BASE_URL || "http://127.0.0.1:3000",
|
|
169
|
+
opsTokenPresent: Boolean(process.env.OPS_TOKEN && process.env.OPS_TOKEN.trim() !== ""),
|
|
170
|
+
tenants,
|
|
171
|
+
robotsPerTenant,
|
|
172
|
+
baseJobsPerMinPerTenant,
|
|
173
|
+
throughputMultiplier: multiplier,
|
|
174
|
+
jobsPerMinPerTenant,
|
|
175
|
+
expectedJobsPerMinTotal: tenants * jobsPerMinPerTenant,
|
|
176
|
+
duration,
|
|
177
|
+
targetP95Ms,
|
|
178
|
+
maxFailureRate,
|
|
179
|
+
maxIngestRejectedPerMin: allowRejectedRate,
|
|
180
|
+
script: "scripts/load/ingest-burst.k6.js",
|
|
181
|
+
runner: "unresolved"
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
if (dryRun) {
|
|
185
|
+
const dryReport = {
|
|
186
|
+
schemaVersion: "ThroughputDrill10xReport.v1",
|
|
187
|
+
generatedAt: new Date().toISOString(),
|
|
188
|
+
mode: "dry_run",
|
|
189
|
+
runConfig,
|
|
190
|
+
verdict: {
|
|
191
|
+
ok: false,
|
|
192
|
+
reason: "dry_run"
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
await writeFile(reportPath, JSON.stringify(dryReport, null, 2) + "\n", "utf8");
|
|
196
|
+
process.stdout.write(`wrote dry-run report: ${reportPath}\n`);
|
|
197
|
+
return;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const k6Runner = await resolveK6Runner({
|
|
201
|
+
cwd: process.cwd(),
|
|
202
|
+
allowDockerFallback
|
|
203
|
+
});
|
|
204
|
+
runConfig.runner = k6Runner.kind;
|
|
205
|
+
|
|
206
|
+
const k6Env = {
|
|
207
|
+
...process.env,
|
|
208
|
+
BASE_URL: runConfig.baseUrl,
|
|
209
|
+
OPS_TOKEN: process.env.OPS_TOKEN || "",
|
|
210
|
+
TENANTS: String(tenants),
|
|
211
|
+
ROBOTS_PER_TENANT: String(robotsPerTenant),
|
|
212
|
+
JOBS_PER_MIN_PER_TENANT: String(jobsPerMinPerTenant),
|
|
213
|
+
DURATION: duration,
|
|
214
|
+
TARGET_P95_MS: String(targetP95Ms),
|
|
215
|
+
MAX_FAILURE_RATE: String(maxFailureRate)
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
const resolvedScriptPath = resolve(process.cwd(), runConfig.script);
|
|
219
|
+
const scriptPathForRunner = k6Runner.kind === "docker_k6" ? k6Runner.toRunnerPath(resolvedScriptPath) : runConfig.script;
|
|
220
|
+
const summaryPathForRunner = k6Runner.kind === "docker_k6" ? k6Runner.toRunnerPath(summaryPath) : summaryPath;
|
|
221
|
+
const runnerEnvArgs =
|
|
222
|
+
k6Runner.kind === "docker_k6"
|
|
223
|
+
? Object.entries(k6Env).flatMap(([name, value]) => ["-e", `${name}=${String(value)}`])
|
|
224
|
+
: [];
|
|
225
|
+
|
|
226
|
+
const startedAt = Date.now();
|
|
227
|
+
const exitCode = await runCommand(
|
|
228
|
+
k6Runner.cmd,
|
|
229
|
+
[...k6Runner.baseArgs, ...runnerEnvArgs, "run", "--summary-export", summaryPathForRunner, scriptPathForRunner],
|
|
230
|
+
{ env: k6Env }
|
|
231
|
+
);
|
|
232
|
+
const completedAt = Date.now();
|
|
233
|
+
|
|
234
|
+
let summary;
|
|
235
|
+
try {
|
|
236
|
+
summary = JSON.parse(await readFile(summaryPath, "utf8"));
|
|
237
|
+
} catch (err) {
|
|
238
|
+
const report = {
|
|
239
|
+
schemaVersion: "ThroughputDrill10xReport.v1",
|
|
240
|
+
generatedAt: new Date().toISOString(),
|
|
241
|
+
mode: "error",
|
|
242
|
+
runConfig,
|
|
243
|
+
metrics: null,
|
|
244
|
+
checks: {
|
|
245
|
+
k6ExitCodeZero: exitCode === 0,
|
|
246
|
+
k6SummaryPresent: false
|
|
247
|
+
},
|
|
248
|
+
failure: {
|
|
249
|
+
message: `k6 runner exited with code ${exitCode} before writing summary export`,
|
|
250
|
+
code: typeof err?.code === "string" ? err.code : null
|
|
251
|
+
},
|
|
252
|
+
verdict: {
|
|
253
|
+
ok: false,
|
|
254
|
+
reason: "k6_summary_missing",
|
|
255
|
+
k6ExitCode: exitCode,
|
|
256
|
+
summaryPath
|
|
257
|
+
}
|
|
258
|
+
};
|
|
259
|
+
await writeFile(reportPath, JSON.stringify(report, null, 2) + "\n", "utf8");
|
|
260
|
+
process.stdout.write(`wrote throughput report: ${reportPath}\n`);
|
|
261
|
+
process.exitCode = 1;
|
|
262
|
+
return;
|
|
263
|
+
}
|
|
264
|
+
const p95 = readMetric(summary, "http_req_duration", "p(95)");
|
|
265
|
+
const failureRate = readMetric(summary, "http_req_failed", "rate") ?? readMetric(summary, "http_req_failed", "value");
|
|
266
|
+
const rejectedCount = readMetric(summary, "ingest_rejected_requests_total", "count") ?? 0;
|
|
267
|
+
const durationSeconds = Math.max(1, Math.round((completedAt - startedAt) / 1000));
|
|
268
|
+
const rejectedPerMin = (rejectedCount / durationSeconds) * 60;
|
|
269
|
+
|
|
270
|
+
const checks = {
|
|
271
|
+
k6ExitCodeZero: exitCode === 0,
|
|
272
|
+
p95WithinTarget: p95 !== null ? p95 <= targetP95Ms : false,
|
|
273
|
+
failureRateWithinTarget: failureRate !== null ? failureRate <= maxFailureRate : false,
|
|
274
|
+
ingestRejectedWithinTarget: rejectedPerMin <= allowRejectedRate
|
|
275
|
+
};
|
|
276
|
+
const ok = Object.values(checks).every((value) => value === true);
|
|
277
|
+
|
|
278
|
+
const report = {
|
|
279
|
+
schemaVersion: "ThroughputDrill10xReport.v1",
|
|
280
|
+
generatedAt: new Date().toISOString(),
|
|
281
|
+
runConfig,
|
|
282
|
+
metrics: {
|
|
283
|
+
httpReqDurationP95Ms: p95,
|
|
284
|
+
httpReqFailedRate: failureRate,
|
|
285
|
+
ingestRejectedCount: rejectedCount,
|
|
286
|
+
ingestRejectedPerMin: rejectedPerMin,
|
|
287
|
+
runDurationSeconds: durationSeconds
|
|
288
|
+
},
|
|
289
|
+
checks,
|
|
290
|
+
verdict: {
|
|
291
|
+
ok,
|
|
292
|
+
k6ExitCode: exitCode,
|
|
293
|
+
summaryPath
|
|
294
|
+
}
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
await writeFile(reportPath, JSON.stringify(report, null, 2) + "\n", "utf8");
|
|
298
|
+
process.stdout.write(`wrote throughput report: ${reportPath}\n`);
|
|
299
|
+
if (!ok) {
|
|
300
|
+
process.exitCode = 1;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
main().catch((err) => {
|
|
305
|
+
const reportPath = resolveThroughputReportPath(process.cwd(), process.env);
|
|
306
|
+
writeFailureReport({
|
|
307
|
+
reportPath,
|
|
308
|
+
runConfig: null,
|
|
309
|
+
error: err
|
|
310
|
+
})
|
|
311
|
+
.catch((writeErr) => {
|
|
312
|
+
process.stderr.write(`${writeErr?.stack || writeErr?.message || String(writeErr)}\n`);
|
|
313
|
+
})
|
|
314
|
+
.finally(() => {
|
|
315
|
+
process.stderr.write(`${err?.stack || err?.message || String(err)}\n`);
|
|
316
|
+
process.exit(1);
|
|
317
|
+
});
|
|
318
|
+
});
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { mkdir, writeFile } from "node:fs/promises";
|
|
3
|
+
import { dirname, resolve } from "node:path";
|
|
4
|
+
|
|
5
|
+
function parseIntEnv(name, fallback, { min = null, max = null } = {}) {
|
|
6
|
+
const raw = process.env[name];
|
|
7
|
+
if (raw === undefined || raw === null || String(raw).trim() === "") return fallback;
|
|
8
|
+
const value = Number(raw);
|
|
9
|
+
if (!Number.isSafeInteger(value)) throw new Error(`${name} must be an integer`);
|
|
10
|
+
if (min !== null && value < min) throw new Error(`${name} must be >= ${min}`);
|
|
11
|
+
if (max !== null && value > max) throw new Error(`${name} must be <= ${max}`);
|
|
12
|
+
return value;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function normalizeBaseUrl(raw) {
|
|
16
|
+
const value = typeof raw === "string" && raw.trim() !== "" ? raw.trim() : "http://127.0.0.1:3000";
|
|
17
|
+
return value.endsWith("/") ? value.slice(0, -1) : value;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function makePolicyPayload({ policyId, policyVersion, amberReleaseRatePct, description }) {
|
|
21
|
+
return {
|
|
22
|
+
policyId,
|
|
23
|
+
policyVersion,
|
|
24
|
+
verificationMethod: {
|
|
25
|
+
mode: "deterministic",
|
|
26
|
+
source: "verifier://settld-verify"
|
|
27
|
+
},
|
|
28
|
+
policy: {
|
|
29
|
+
mode: "automatic",
|
|
30
|
+
rules: {
|
|
31
|
+
requireDeterministicVerification: true,
|
|
32
|
+
autoReleaseOnGreen: true,
|
|
33
|
+
autoReleaseOnAmber: false,
|
|
34
|
+
autoReleaseOnRed: false,
|
|
35
|
+
greenReleaseRatePct: 100,
|
|
36
|
+
amberReleaseRatePct,
|
|
37
|
+
redReleaseRatePct: 0
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
description
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function resolveIncidentReportPath(cwd = process.cwd(), env = process.env) {
|
|
45
|
+
return resolve(
|
|
46
|
+
cwd,
|
|
47
|
+
env.THROUGHPUT_INCIDENT_REHEARSAL_REPORT_PATH || "artifacts/throughput/10x-incident-rehearsal-summary.json"
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function toFailureSummary(err) {
|
|
52
|
+
return {
|
|
53
|
+
message: err?.message ?? String(err),
|
|
54
|
+
statusCode: Number.isSafeInteger(err?.statusCode) ? err.statusCode : null,
|
|
55
|
+
details: err?.details ?? null
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async function writeFailureReport({ reportPath, runConfig = null, error }) {
|
|
60
|
+
await mkdir(dirname(reportPath), { recursive: true });
|
|
61
|
+
const report = {
|
|
62
|
+
schemaVersion: "ThroughputIncidentRehearsalReport.v1",
|
|
63
|
+
generatedAt: new Date().toISOString(),
|
|
64
|
+
runConfig,
|
|
65
|
+
durationMs: 0,
|
|
66
|
+
checks: [],
|
|
67
|
+
snapshots: {},
|
|
68
|
+
failure: toFailureSummary(error),
|
|
69
|
+
verdict: {
|
|
70
|
+
ok: false,
|
|
71
|
+
requiredChecks: 0,
|
|
72
|
+
passedChecks: 0
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
await writeFile(reportPath, JSON.stringify(report, null, 2) + "\n", "utf8");
|
|
76
|
+
process.stdout.write(`wrote throughput incident rehearsal report: ${reportPath}\n`);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
async function main() {
|
|
80
|
+
const startedAt = Date.now();
|
|
81
|
+
const baseUrl = normalizeBaseUrl(process.env.BASE_URL);
|
|
82
|
+
const opsToken = typeof process.env.OPS_TOKEN === "string" ? process.env.OPS_TOKEN.trim() : "";
|
|
83
|
+
if (!opsToken) throw new Error("OPS_TOKEN is required");
|
|
84
|
+
const tenantId =
|
|
85
|
+
typeof process.env.TENANT_ID === "string" && process.env.TENANT_ID.trim() !== ""
|
|
86
|
+
? process.env.TENANT_ID.trim()
|
|
87
|
+
: "tenant_default";
|
|
88
|
+
const timeoutMs = parseIntEnv("HTTP_TIMEOUT_MS", 10_000, { min: 1000, max: 120_000 });
|
|
89
|
+
const protocolVersion =
|
|
90
|
+
typeof process.env.SETTLD_PROTOCOL === "string" && process.env.SETTLD_PROTOCOL.trim() !== ""
|
|
91
|
+
? process.env.SETTLD_PROTOCOL.trim()
|
|
92
|
+
: "1.0";
|
|
93
|
+
const reportPath = resolveIncidentReportPath(process.cwd(), process.env);
|
|
94
|
+
const policyId =
|
|
95
|
+
typeof process.env.INCIDENT_REHEARSAL_POLICY_ID === "string" && process.env.INCIDENT_REHEARSAL_POLICY_ID.trim() !== ""
|
|
96
|
+
? process.env.INCIDENT_REHEARSAL_POLICY_ID.trim()
|
|
97
|
+
: "market.incident.rehearsal.v1";
|
|
98
|
+
|
|
99
|
+
const rehearsalId = `inc_rh_${Date.now()}`;
|
|
100
|
+
const noteDegraded = `${rehearsalId}:comms:announce_degraded_mode`;
|
|
101
|
+
const noteRollback = `${rehearsalId}:comms:announce_rollback_complete`;
|
|
102
|
+
|
|
103
|
+
await mkdir(dirname(reportPath), { recursive: true });
|
|
104
|
+
|
|
105
|
+
const defaultHeaders = {
|
|
106
|
+
"x-proxy-tenant-id": tenantId,
|
|
107
|
+
"x-proxy-ops-token": opsToken,
|
|
108
|
+
accept: "application/json"
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
async function requestJson({ method, path, body = null, write = false, idempotencyKey = null }) {
|
|
112
|
+
const headers = { ...defaultHeaders };
|
|
113
|
+
if (write) {
|
|
114
|
+
headers["content-type"] = "application/json";
|
|
115
|
+
headers["x-settld-protocol"] = protocolVersion;
|
|
116
|
+
if (idempotencyKey) headers["x-idempotency-key"] = idempotencyKey;
|
|
117
|
+
}
|
|
118
|
+
const response = await fetch(`${baseUrl}${path}`, {
|
|
119
|
+
method,
|
|
120
|
+
headers,
|
|
121
|
+
body: body === null ? undefined : JSON.stringify(body),
|
|
122
|
+
signal: AbortSignal.timeout(timeoutMs)
|
|
123
|
+
});
|
|
124
|
+
const text = await response.text();
|
|
125
|
+
let json = null;
|
|
126
|
+
try {
|
|
127
|
+
json = text ? JSON.parse(text) : null;
|
|
128
|
+
} catch {}
|
|
129
|
+
if (!response.ok) {
|
|
130
|
+
const details =
|
|
131
|
+
json && typeof json === "object"
|
|
132
|
+
? json
|
|
133
|
+
: {
|
|
134
|
+
body: text
|
|
135
|
+
};
|
|
136
|
+
const err = new Error(`${method} ${path} failed (${response.status})`);
|
|
137
|
+
err.statusCode = response.status;
|
|
138
|
+
err.details = details;
|
|
139
|
+
throw err;
|
|
140
|
+
}
|
|
141
|
+
return {
|
|
142
|
+
statusCode: response.status,
|
|
143
|
+
json
|
|
144
|
+
};
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
async function getPolicyState() {
|
|
148
|
+
const res = await requestJson({
|
|
149
|
+
method: "GET",
|
|
150
|
+
path: `/ops/settlement-policies/state?policyId=${encodeURIComponent(policyId)}`
|
|
151
|
+
});
|
|
152
|
+
return res.json ?? {};
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
async function ensurePolicyVersion({ policyVersion, amberReleaseRatePct, description }) {
|
|
156
|
+
const state = await getPolicyState();
|
|
157
|
+
const policies = Array.isArray(state?.policies) ? state.policies : [];
|
|
158
|
+
const existing = policies.find(
|
|
159
|
+
(row) =>
|
|
160
|
+
String(row?.policyId ?? "") === policyId &&
|
|
161
|
+
Number(row?.policyVersion ?? -1) === Number(policyVersion)
|
|
162
|
+
);
|
|
163
|
+
if (existing) return existing;
|
|
164
|
+
const created = await requestJson({
|
|
165
|
+
method: "POST",
|
|
166
|
+
path: "/marketplace/settlement-policies",
|
|
167
|
+
write: true,
|
|
168
|
+
idempotencyKey: `${rehearsalId}_policy_${policyVersion}`,
|
|
169
|
+
body: makePolicyPayload({
|
|
170
|
+
policyId,
|
|
171
|
+
policyVersion,
|
|
172
|
+
amberReleaseRatePct,
|
|
173
|
+
description
|
|
174
|
+
})
|
|
175
|
+
});
|
|
176
|
+
return created?.json?.policy ?? null;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function activeVersionFromState(state) {
|
|
180
|
+
return Number(state?.rollout?.stages?.active?.policyVersion ?? NaN);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
const checks = [];
|
|
184
|
+
const snapshots = {};
|
|
185
|
+
let failure = null;
|
|
186
|
+
|
|
187
|
+
try {
|
|
188
|
+
const health = await requestJson({ method: "GET", path: "/healthz" });
|
|
189
|
+
checks.push({
|
|
190
|
+
id: "api_healthy",
|
|
191
|
+
ok: health?.json?.ok === true,
|
|
192
|
+
details: health?.json ?? null
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
await ensurePolicyVersion({
|
|
196
|
+
policyVersion: 1,
|
|
197
|
+
amberReleaseRatePct: 10,
|
|
198
|
+
description: "incident rehearsal degraded policy"
|
|
199
|
+
});
|
|
200
|
+
await ensurePolicyVersion({
|
|
201
|
+
policyVersion: 2,
|
|
202
|
+
amberReleaseRatePct: 30,
|
|
203
|
+
description: "incident rehearsal stable policy"
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
const stateBefore = await getPolicyState();
|
|
207
|
+
snapshots.stateBefore = stateBefore;
|
|
208
|
+
const stateBeforeActive = activeVersionFromState(stateBefore);
|
|
209
|
+
if (stateBeforeActive !== 2) {
|
|
210
|
+
await requestJson({
|
|
211
|
+
method: "POST",
|
|
212
|
+
path: "/ops/settlement-policies/rollout",
|
|
213
|
+
write: true,
|
|
214
|
+
idempotencyKey: `${rehearsalId}_baseline_rollout`,
|
|
215
|
+
body: {
|
|
216
|
+
stage: "active",
|
|
217
|
+
policyRef: { policyId, policyVersion: 2 },
|
|
218
|
+
note: `${rehearsalId}:baseline_stable`
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const degradedSignal = await requestJson({
|
|
224
|
+
method: "GET",
|
|
225
|
+
path:
|
|
226
|
+
"/ops/network/command-center?windowHours=24&disputeSlaHours=1&emitAlerts=true&persistAlerts=true" +
|
|
227
|
+
"&httpClientErrorRateThresholdPct=0&httpServerErrorRateThresholdPct=0&deliveryDlqThreshold=0" +
|
|
228
|
+
"&disputeOverSlaThreshold=0&determinismRejectThreshold=0&kernelVerificationErrorThreshold=0"
|
|
229
|
+
});
|
|
230
|
+
snapshots.degradedSignal = degradedSignal?.json ?? null;
|
|
231
|
+
const degradedBreachCount = Number(degradedSignal?.json?.alerts?.breachCount ?? 0);
|
|
232
|
+
checks.push({
|
|
233
|
+
id: "degraded_mode_alert_signal_emitted",
|
|
234
|
+
ok: degradedBreachCount > 0,
|
|
235
|
+
details: {
|
|
236
|
+
breachCount: degradedBreachCount,
|
|
237
|
+
emittedCount: Number(degradedSignal?.json?.alerts?.emittedCount ?? 0)
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
|
|
241
|
+
const degradedRollout = await requestJson({
|
|
242
|
+
method: "POST",
|
|
243
|
+
path: "/ops/settlement-policies/rollout",
|
|
244
|
+
write: true,
|
|
245
|
+
idempotencyKey: `${rehearsalId}_degraded_rollout`,
|
|
246
|
+
body: {
|
|
247
|
+
stage: "active",
|
|
248
|
+
policyRef: { policyId, policyVersion: 1 },
|
|
249
|
+
note: noteDegraded
|
|
250
|
+
}
|
|
251
|
+
});
|
|
252
|
+
snapshots.degradedRollout = degradedRollout?.json ?? null;
|
|
253
|
+
|
|
254
|
+
const stateDegraded = await getPolicyState();
|
|
255
|
+
snapshots.stateDegraded = stateDegraded;
|
|
256
|
+
const degradedActiveVersion = activeVersionFromState(stateDegraded);
|
|
257
|
+
checks.push({
|
|
258
|
+
id: "degraded_policy_activated",
|
|
259
|
+
ok: degradedActiveVersion === 1,
|
|
260
|
+
details: {
|
|
261
|
+
activePolicyVersion: Number.isFinite(degradedActiveVersion) ? degradedActiveVersion : null
|
|
262
|
+
}
|
|
263
|
+
});
|
|
264
|
+
|
|
265
|
+
const rollback = await requestJson({
|
|
266
|
+
method: "POST",
|
|
267
|
+
path: "/ops/settlement-policies/rollback",
|
|
268
|
+
write: true,
|
|
269
|
+
idempotencyKey: `${rehearsalId}_rollback`,
|
|
270
|
+
body: {
|
|
271
|
+
note: noteRollback
|
|
272
|
+
}
|
|
273
|
+
});
|
|
274
|
+
snapshots.rollback = rollback?.json ?? null;
|
|
275
|
+
|
|
276
|
+
const stateRecovered = await getPolicyState();
|
|
277
|
+
snapshots.stateRecovered = stateRecovered;
|
|
278
|
+
const recoveredActiveVersion = activeVersionFromState(stateRecovered);
|
|
279
|
+
checks.push({
|
|
280
|
+
id: "rollback_restores_stable_policy",
|
|
281
|
+
ok: recoveredActiveVersion === 2,
|
|
282
|
+
details: {
|
|
283
|
+
activePolicyVersion: Number.isFinite(recoveredActiveVersion) ? recoveredActiveVersion : null
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
const postRunCommandCenter = await requestJson({
|
|
288
|
+
method: "GET",
|
|
289
|
+
path: "/ops/network/command-center?windowHours=24&disputeSlaHours=1&emitAlerts=true"
|
|
290
|
+
});
|
|
291
|
+
snapshots.postRunCommandCenter = postRunCommandCenter?.json ?? null;
|
|
292
|
+
const postRunBreachCount = Number(postRunCommandCenter?.json?.alerts?.breachCount ?? 0);
|
|
293
|
+
checks.push({
|
|
294
|
+
id: "post_rollback_command_center_clear",
|
|
295
|
+
ok: postRunBreachCount === 0,
|
|
296
|
+
details: {
|
|
297
|
+
breachCount: postRunBreachCount
|
|
298
|
+
}
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
const audits = await requestJson({ method: "GET", path: "/ops/audit?limit=200" });
|
|
302
|
+
const rows = Array.isArray(audits?.json?.audit) ? audits.json.audit : [];
|
|
303
|
+
const noteSet = new Set(
|
|
304
|
+
rows
|
|
305
|
+
.map((row) => (typeof row?.details?.note === "string" ? row.details.note : ""))
|
|
306
|
+
.filter(Boolean)
|
|
307
|
+
);
|
|
308
|
+
const hasDegradedCommsAudit = noteSet.has(noteDegraded);
|
|
309
|
+
const hasRollbackCommsAudit = noteSet.has(noteRollback);
|
|
310
|
+
checks.push({
|
|
311
|
+
id: "communications_drill_audited",
|
|
312
|
+
ok: hasDegradedCommsAudit && hasRollbackCommsAudit,
|
|
313
|
+
details: {
|
|
314
|
+
hasDegradedCommsAudit,
|
|
315
|
+
hasRollbackCommsAudit
|
|
316
|
+
}
|
|
317
|
+
});
|
|
318
|
+
} catch (err) {
|
|
319
|
+
failure = {
|
|
320
|
+
message: err?.message ?? String(err),
|
|
321
|
+
statusCode: Number.isSafeInteger(err?.statusCode) ? err.statusCode : null,
|
|
322
|
+
details: err?.details ?? null
|
|
323
|
+
};
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
const ok = failure === null && checks.every((check) => check.ok === true);
|
|
327
|
+
const report = {
|
|
328
|
+
schemaVersion: "ThroughputIncidentRehearsalReport.v1",
|
|
329
|
+
generatedAt: new Date().toISOString(),
|
|
330
|
+
runConfig: {
|
|
331
|
+
rehearsalId,
|
|
332
|
+
baseUrl,
|
|
333
|
+
tenantId,
|
|
334
|
+
policyId,
|
|
335
|
+
protocolVersion,
|
|
336
|
+
timeoutMs
|
|
337
|
+
},
|
|
338
|
+
durationMs: Date.now() - startedAt,
|
|
339
|
+
checks,
|
|
340
|
+
snapshots,
|
|
341
|
+
failure,
|
|
342
|
+
verdict: {
|
|
343
|
+
ok,
|
|
344
|
+
requiredChecks: checks.length,
|
|
345
|
+
passedChecks: checks.filter((check) => check.ok === true).length
|
|
346
|
+
}
|
|
347
|
+
};
|
|
348
|
+
|
|
349
|
+
await writeFile(reportPath, JSON.stringify(report, null, 2) + "\n", "utf8");
|
|
350
|
+
process.stdout.write(`wrote throughput incident rehearsal report: ${reportPath}\n`);
|
|
351
|
+
if (!ok) process.exitCode = 1;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
main().catch((err) => {
|
|
355
|
+
const reportPath = resolveIncidentReportPath(process.cwd(), process.env);
|
|
356
|
+
writeFailureReport({
|
|
357
|
+
reportPath,
|
|
358
|
+
runConfig: null,
|
|
359
|
+
error: err
|
|
360
|
+
})
|
|
361
|
+
.catch((writeErr) => {
|
|
362
|
+
process.stderr.write(`${writeErr?.stack || writeErr?.message || String(writeErr)}\n`);
|
|
363
|
+
})
|
|
364
|
+
.finally(() => {
|
|
365
|
+
process.stderr.write(`${err?.stack || err?.message || String(err)}\n`);
|
|
366
|
+
process.exit(1);
|
|
367
|
+
});
|
|
368
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
|
|
4
|
+
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
5
|
+
TEST_FILE="test/api-e2e-ops-arbitration-workspace-browser.test.js"
|
|
6
|
+
|
|
7
|
+
export SETTLD_RUN_BROWSER_E2E="${SETTLD_RUN_BROWSER_E2E:-1}"
|
|
8
|
+
|
|
9
|
+
# Optional host library shim for environments where Playwright browser deps are staged manually.
|
|
10
|
+
if [[ -z "${SETTLD_PW_DEPS_LIB_DIR:-}" && -d "/tmp/pw-deps/root/usr/lib/x86_64-linux-gnu" ]]; then
|
|
11
|
+
export SETTLD_PW_DEPS_LIB_DIR="/tmp/pw-deps/root/usr/lib/x86_64-linux-gnu"
|
|
12
|
+
fi
|
|
13
|
+
if [[ -n "${SETTLD_PW_DEPS_LIB_DIR:-}" && -d "${SETTLD_PW_DEPS_LIB_DIR}" ]]; then
|
|
14
|
+
if [[ -n "${LD_LIBRARY_PATH:-}" ]]; then
|
|
15
|
+
export LD_LIBRARY_PATH="${SETTLD_PW_DEPS_LIB_DIR}:${LD_LIBRARY_PATH}"
|
|
16
|
+
else
|
|
17
|
+
export LD_LIBRARY_PATH="${SETTLD_PW_DEPS_LIB_DIR}"
|
|
18
|
+
fi
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
cd "${ROOT_DIR}"
|
|
22
|
+
node --test "${TEST_FILE}"
|