Cloud upload with local engine parity (kiploks upload)

Source path in repo: docs/examples/06-cloud-upload-parity.md. [View on GitHub]

Mirrored from the engine repository. Prefer reading here for a consistent experience; use GitHub for file history and blame.

Compare local analyze() output with what the server runs on oos_trades by attaching a prior CLI JSON.

1) Produce local analyze JSON

kiploks analyze ./minimal-input.json --json --seed 42 --decimals 8 > local-analyze.json

2) Upload standalone result with parity

export KIPLOKS_API_BASE=https://kiploks.com
export KIPLOKS_API_KEY=your_integration_key

kiploks upload ./standalone-result.json --cloud --local-analyze ./local-analyze.json

Use --dry-run first to inspect the planned POST. The response includes per-result parity fields when the server supports them.

See engine/packages/cli/README.md for --skip-status, --api-base-url, and environment variable details.

[Back to documentation index]