rawctx CLI scaffold
Project description
rawctx CLI
Python CLI and SDK for rawctx Hub.
Detailed package workflow guide:
../docs/guides/package-workflow.md
Commands
User:
rawctx login [--registry URL] [--id-token JWT] [--token-name NAME] [--expires-in-days N] [--no-browser] [--json]rawctx logout [--local-only] [--json]rawctx search [QUERY] [--format F] [--source-format F] [--origin all|native|indexed] [--domain D] [--source S] [--tags CSV] [--sort recent|downloads|stars] [--page N] [--size N] [--json] [--offline] [--registry URL]rawctx info PACKAGE_REF [--json] [--offline] [--registry URL]rawctx download PACKAGE_REF MODEL_PATH [--local-dir DIR] [--stdout] [--offline] [--force] [--json] [--registry URL]rawctx snapshot-download PACKAGE_REF [--local-dir DIR] [--offline] [--force] [--json] [--registry URL]rawctx validate [TARGET] [--format auto|manifest|osi] [--show-dataset-measures] [--json]rawctx pack [TARGET_DIR] [--output-dir DIR] [--json]rawctx convert --from metricflow --to osi INPUT_PATH --output DIR [--package-name @scope/name] [--package-version X.Y.Z] [--overwrite] [--json]rawctx publish [TARGET_DIR] [--registry URL]rawctx publish --from-dbt DBT_PROJECT_DIR [--emit-package DIR] [--package-name @scope/name] [--package-version X.Y.Z] [--registry URL]
Maintainer:
rawctx claim PACKAGE_REF [--json] [--registry URL]
Ops:
rawctx index dbt --seed-file PATH [--only owner/name] [--limit N] [--dry-run] [--json] [--registry URL]rawctx index git --repo owner/name --source-ref REF --package-version X.Y.Z [--package-name NAME] [--scope SCOPE] [--model-glob GLOB ...] [--dry-run] [--json] [--registry URL]
Notebook / Code
Search uses the public Hub index first so CLI and SDK results match the web search experience. If a search returns no public matches and you have a token configured, rawctx retries with authenticated search.
Notebook shell style:
!rawctx search "semantic model" --sort downloads --json
!rawctx info @scope/name --json
!rawctx snapshot-download @scope/name --json
!rawctx download @scope/name models/sample.osi.yaml --json
!rawctx validate ./my-package --json
Python API:
import rawctx
result = rawctx.search("semantic model", registry="https://api.rawctx.dev", sort="downloads")
pkg = rawctx.info("@scope/name", registry="https://api.rawctx.dev")
model = rawctx.load("@scope/name", registry="https://api.rawctx.dev")
prompt = rawctx.to_prompt(
"@scope/name",
datasets=["expense_reports", "users"],
max_tokens=2000,
registry="https://api.rawctx.dev",
)
print(model.datasets) # ['users', 'trips', 'expense_reports']
print(model.measures) # [Measure(name='total_amount', ...)]
print(model.dimensions) # [Dimension(name='currency_code', ...)]
print(model.relationships) # [Relationship(name='user_trips', ...)]
print(prompt)
print(pkg["model_paths"])
snapshot_dir = rawctx.snapshot_download("@scope/name", registry="https://api.rawctx.dev")
osi_path = rawctx.download("@scope/name", "models/sample.osi.yaml", registry="https://api.rawctx.dev")
validation = rawctx.validate("./my-package")
Async Python API:
import asyncio
import rawctx
async def main():
async with rawctx.AsyncRawctxClient(registry="https://api.rawctx.dev") as client:
result = await client.search("semantic model", sort="recent")
model = await client.load("@scope/name")
prompt = await client.to_prompt("@scope/name", datasets=["expense_reports", "users"])
snapshot_dir = await client.snapshot_download("@scope/name")
return result, model, prompt, snapshot_dir
asyncio.run(main())
Download behavior:
downloadfetches one OSI YAML file listed inmanifest.modelssnapshot-downloadmaterializes the full extracted package tree- When using
snapshot-download --local-dir, prefer a new or empty directory.--forceonly replaces an existing rawctx snapshot directory and refuses to wipe the current working directory or unrelated folders. indexedpackages remain preview-only and cannot be downloaded directly
Convert Workflow
rawctx convert --from metricflow --to osi ./my-dbt-project --output ./dist/pkg
rawctx validate ./dist/pkg --json
rawctx pack ./dist/pkg --output-dir ./dist --json
Publish directly from dbt:
rawctx publish --from-dbt ./my-dbt-project --emit-package ./dist/pkg
Auth Flow (Auto + Fallback)
- Run
rawctx login. - CLI opens or prints the OAuth URL from
POST /api/auth/loginand falls back to the legacy GitHub endpoint if needed. - Complete login in the browser.
- CLI automatically polls OAuth session status and captures
id_tokenwhen the registry supports it. - CLI calls
POST /api/auth/tokenand stores the API token in~/.rawctx/config.yaml.
Manual fallback:
rawctx login --id-token '<JWT>'
Config and Environment
Config file (default): ~/.rawctx/config.yaml
registry: "https://api.rawctx.dev"
auth:
token: "rxctx_..."
token_id: "uuid"
token_name: "rawctx-cli"
issued_at: "2026-02-28T00:00:00+00:00"
profile:
username: "owner"
Environment overrides:
RAWCTX_CONFIG(config path)RAWCTX_REGISTRY(registry URL)RAWCTX_TOKEN(auth token)
Priority: CLI option > env var > config > default.
Offline Mode
--offline is supported for:
searchinfodownloadsnapshot-download
Cache paths:
- index:
~/.rawctx/cache/packages.json - archives:
~/.rawctx/cache/archives/@scope/name/<version>.rawctx.tar.gz - snapshots:
~/.rawctx/packages/@scope/name/<version>/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rawctx-0.3.5.tar.gz.
File metadata
- Download URL: rawctx-0.3.5.tar.gz
- Upload date:
- Size: 81.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f2e49c9f5dbf68a71bbec7be282c2b538364533595bb575c48be4494a3aee92
|
|
| MD5 |
828d1687a8c716730380f0c4573f62cd
|
|
| BLAKE2b-256 |
d5356ea8aec7a70221ba5d79819c72ac697541ebd8253b2c7196a7c964d9ac2f
|
File details
Details for the file rawctx-0.3.5-py3-none-any.whl.
File metadata
- Download URL: rawctx-0.3.5-py3-none-any.whl
- Upload date:
- Size: 75.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b929f19deb7dc6d71a95d4d94efa70457a41e1ae0d161a8ccfe1e5145aa52008
|
|
| MD5 |
40b12254a51b5b88f586f56e221ffd5b
|
|
| BLAKE2b-256 |
1c50278b6044a73c556286f043217b72e325147485b2e626aa8ac0ca60a73fea
|