Skip to main content

Public CLI for the Summation API (sum-api).

Project description

summation-cli (sumcli)

Public Summation CLI — a first-party client of the Summation API. Talks to stable /v1 routes on the public gateway.

Naming

Context Name
PyPI / package summation-cli
Python import sum_cli
Binary sumcli

Install

Requires uv and Python 3.11+ (uv can install Python for you).

uv tool install summation-cli          # latest
uv tool install summation-cli==X.Y.Z   # or pin a release

Or bootstrap uv + install in one shot:

curl -fsSL https://install.summation.com/sumcli | sh

Then:

sumcli --help
uv tool upgrade summation-cli   # later upgrades

Resources

Resource Description
auth Inspect authentication state (whoami, status, token, login, logout)
config Profiles, active session, and ~/.summation/config (use, set-project, import-env, …)
tenant Organization and tenant metadata
projects Project CRUD and current
chats Addison conversations; SSE → NDJSON with --follow on create/reply
reports Generate and verify reports (.sdoc); file ops via files
playbooks Playbook discovery
files Project-scoped files (upload, download, list, show, import, delete)
filesystem Connected filesystem roots such as SharePoint (roots, list, upload, download, mkdir, delete, import-env, set-defaults)
catalog Project catalog entries (list, show, attach, detach, refresh)
connections External data source connections (CRUD, test, browse)
tables Grid tables and CSV import (tables import is a multi-step HTTP workflow); also append, data, import-status, catalog-show, catalog-update
views Summation views (list, show, data, delete, catalog-show, catalog-update)
grid Grid status, create, push, diff, validate, materialize, lineage
queries Read-only SQL execution (queries run)

Run sumcli | jq '.result.resources' for the live command tree with action blurbs, or sumcli <resource> --help for flags.

Quickstart

Device login (interactive)

sumcli auth login
sumcli auth whoami | jq .

auth login prints a device code and a URL. Approve it in the browser, and the CLI stores the session in ~/.summation/config.

Optional — named profile for a non-default host:

sumcli config set-profile my-org \
  --base-url https://sandbox-api.summation.com

sumcli config use my-org                       # make it the active profile
sumcli auth login                              # log in against that profile
sumcli --profile my-org auth whoami | jq .     # or target a profile per command

Pin a default project per org so project-scoped commands need no --project:

sumcli config set-project --profile my-org --project prj-...
sumcli config clear-project --profile my-org       # undo

M2M login

sumcli config set-profile my-org \
  --base-url https://sandbox-api.summation.com \
  --client-id "$CLIENT_ID" \
  --client-secret "$CLIENT_SECRET"

sumcli config use my-org
sumcli auth whoami | jq .
sumcli projects list | jq '.result.projects'

Output

JSON when piped, human-readable at a terminal. JSON is a stable envelope with contextual next_actions (NDJSON for streaming commands); the human view is lossy — wide tables drop columns — so never parse it.

Override the default two ways:

SUMCLI_OUTPUT=human sumcli projects list   # any position
sumcli --output human projects list        # root option, before the subcommand

Common workflows

Local CSV → grid table

Two ways: a one-shot direct ingest, or an explicit two-step that goes through the project file tree first.

One-shot (recommended when you don't need the file in the project tree):

sumcli tables import --local --path ./Customers.csv --table customers

Uploads bytes → previews schema → materializes a new grid table. Outputs NDJSON ending with importStatus: SUCCESS and a tbl-... ID. Server auto-detects column types.

Two-step (when you want the CSV in the project file tree too):

# 1. Upload the CSV into the project at /Customers.csv.
sumcli files upload ./Customers.csv

# 2. Promote it from the project tree into the grid.
sumcli tables import --remote --path /Customers.csv --table customers

Step 2 also accepts --file-id file-... if you have the ID directly.

Existing project file → grid table

If the file is already in the project (uploaded by someone else, dropped via the UI, etc.):

sumcli files list | jq '.result.files[] | select(.fileName | endswith(".csv"))'
sumcli tables import --remote --path "/Order_Details.csv" --table order_details

Inspect, attach, query, clean up

After tables import succeeds, the new table lives in the tenant grid but is not attached to the project catalog. Attach it to make it visible in catalog list and queryable as a project resource:

sumcli tables show tbl-...                                      # schema + columns
sumcli tables data tbl-... | jq '.result.data.rows[:5]'         # sample rows
sumcli catalog attach --source-type table --source-id tbl-...   # link to current project
sumcli catalog list                                             # confirm linkage
sumcli catalog detach --confirm file-...                        # remove the catalog entry
sumcli tables delete --confirm tbl-...                          # remove from grid

Note: tables delete removes the underlying grid table but does not auto-cascade the project catalog entry that referenced it. Detach the entry separately with catalog detach <file_id> --confirm.

Long-running operations

chats create, chats reply, reports generate, reports verify, grid push, and tables import all support --wait/--no-wait (and --follow where applicable). See Long-running commands below.

Discovery

Bare invocation prints the full command tree as JSON. Resource names and actions come from the installed CLI; action blurbs for API-backed commands are derived from an OpenAPI snapshot bundled in the wheel.

sumcli | jq '.result.resources | keys'
sumcli | jq '.result.resources.projects'
sumcli | jq '.result.resources.projects.actions'
sumcli projects --help   # per-command flags and help strings

Command shape

sumcli [--profile NAME] [--base-url URL] <resource> <action> [--options]

Project-scoped commands accept --project when no default project is configured.

Behavior

  • Destructive commands require **--confirm**: projects delete, files delete, views delete, tables delete, connections delete, catalog detach, filesystem delete, config delete-profile. filesystem upload requires --confirm only when it overwrites an existing file.
  • sumcli auth status calls GET /v1/auth/status only (not an alias for whoami).
  • sumcli auth token exchanges credentials if needed and prints a redacted token plus length.
  • List commands default to 50 items unless --count is set (showing, total, truncated in the result).

Network boundary

Commands talk only to the Summation API /v1 routes, with these exceptions:

  • tables import PUTs file bytes directly to a pre-signed URL that the API returns. The CLI never constructs that URL itself.
  • filesystem (SharePoint) sends credentials to login.microsoftonline.com and file bytes to graph.microsoft.com; it does not go through sum-api.

Long-running commands (--wait / --follow)

Flag Meaning
--wait (default) Run to completion, then print the final envelope
--no-wait Run to completion without printing progress
--follow Print NDJSON progress while the operation runs (requires --wait)

Uses --wait / --follow: chats create, chats reply, reports generate, reports verify, grid push. All default to --wait. reports generate and reports verify also default to --follow; the rest default to --no-follow.

--no-wait --follow is rejected (INVALID_FLAGS, exit 1).

Examples:

sumcli reports generate -m "Q4 summary"              # wait, NDJSON stream (default follow)
sumcli reports generate -m "Q4 summary" --no-follow  # wait, single JSON response
sumcli reports generate -m "Q4 summary" --no-wait    # no progress, final envelope only
sumcli chats create -m "hello"                       # wait, single JSON response (follow off by default)
sumcli chats create -m "hello" --follow              # wait, NDJSON stream

tables import takes --wait/--no-wait but has no --follow; it streams NDJSON whenever it waits. chats events always streams NDJSON (--raw-sse optional).

Streaming and exit codes

  • Success and validation errors print one JSON envelope. Failures exit 1.
  • With --follow, intermediate lines are NDJSON (type: start, text, step, progress, log, …). The last line is a terminal envelope: type result or error, carrying the same ok / error / fix fields as non-streaming output.
  • Stream errors print one terminal error envelope and exit 1.

Errors

Every failure is a JSON envelope with ok: false, an error.code, and a fix hint. Common codes: NO_PROJECT, CONFIRM_REQUIRED, INVALID_FLAGS, IMPORT_FAILED, INTERNAL_ERROR.

M2M token cache

M2M tokens are cached for the life of the process and refreshed shortly before they expire, so repeated commands reuse one token.

Rotating a client_secret or changing m2m_scope fetches a new token automatically — no cache to clear.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

summation_cli-0.1.1.tar.gz (80.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

summation_cli-0.1.1-py3-none-any.whl (103.2 kB view details)

Uploaded Python 3

File details

Details for the file summation_cli-0.1.1.tar.gz.

File metadata

  • Download URL: summation_cli-0.1.1.tar.gz
  • Upload date:
  • Size: 80.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for summation_cli-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3bb6be2166500a4d6e99c320efcd756216f37874083ea6a7c89c7e8352da8d55
MD5 156159e4e459d0b0fd8221525a3fd09a
BLAKE2b-256 eb5a901fa80e6ef0e4ac3124a91ef382ba2bea1c33dec7bf34c36794a7582602

See more details on using hashes here.

File details

Details for the file summation_cli-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: summation_cli-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 103.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for summation_cli-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2b2596e7c62feb16214a03adafad7ad4a9ff89f91510bbb20a8fca0a291d206b
MD5 c905089d6698ab9aba56e1db1cfb933a
BLAKE2b-256 de154117d04920fd0c9b25220a302faa20f884b9b73bcc96442a6091b9b87182

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page