cortexdb-cli 0.2.0__tar.gz → 0.4.0__tar.gz
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.
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/.gitignore +11 -0
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/PKG-INFO +1 -1
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/README.md +90 -90
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/__init__.py +1 -1
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/client.py +92 -92
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/admin.py +83 -83
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/answer.py +105 -98
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/auth.py +128 -128
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/beliefs.py +121 -121
- cortexdb_cli-0.4.0/cortexdb_cli/commands/claims.py +117 -0
- cortexdb_cli-0.4.0/cortexdb_cli/commands/compose.py +123 -0
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/config_cmd.py +1 -1
- cortexdb_cli-0.4.0/cortexdb_cli/commands/conflicts.py +309 -0
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/entities.py +174 -174
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/episodes.py +131 -131
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/experience.py +238 -238
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/export_cmd.py +65 -65
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/facts.py +171 -171
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/forget.py +86 -86
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/import_cmd.py +198 -198
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/init.py +95 -95
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/interactive.py +254 -254
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/policy.py +99 -99
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/recall.py +31 -3
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/scopes.py +98 -98
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/search.py +64 -64
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/understanding.py +152 -141
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/config.py +116 -113
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/main.py +159 -140
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/state.py +53 -53
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/pyproject.toml +1 -1
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/commands/__init__.py +0 -0
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/errors.py +0 -0
- {cortexdb_cli-0.2.0 → cortexdb_cli-0.4.0}/cortexdb_cli/output.py +0 -0
|
@@ -69,3 +69,14 @@ dist/
|
|
|
69
69
|
# Scratch/debug text files at root
|
|
70
70
|
/*.txt
|
|
71
71
|
/*.log
|
|
72
|
+
|
|
73
|
+
# Local debug / marketing / private content (not for repo)
|
|
74
|
+
harness/.reports/
|
|
75
|
+
harness_data_*/
|
|
76
|
+
blog/
|
|
77
|
+
sales/
|
|
78
|
+
videos/
|
|
79
|
+
local-instance/
|
|
80
|
+
|
|
81
|
+
# doc-claims verifier scratch output
|
|
82
|
+
tools/verifier_out*/
|
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
# cortexdb-cli
|
|
2
|
-
|
|
3
|
-
Command-line interface for [CortexDB](https://cortexdb.ai) — the long-term memory layer for AI systems.
|
|
4
|
-
|
|
5
|
-
Wraps the v1 HTTP API in a small, fast Click + Rich CLI. Anonymous signup
|
|
6
|
-
in one command, no email or card; works against the public SaaS or any
|
|
7
|
-
self-hosted CortexDB deployment.
|
|
8
|
-
|
|
9
|
-
## Install
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
pip install cortexdb-cli
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
Requires Python 3.10+.
|
|
16
|
-
|
|
17
|
-
## Quickstart
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
# 1. One-time setup — anonymous signup, writes ~/.cortexdb/state.json
|
|
21
|
-
cortexdb init
|
|
22
|
-
|
|
23
|
-
# 2. Store a memory
|
|
24
|
-
cortexdb remember "Q3 revenue: $2.4M. We're on track for $10M ARR by year-end."
|
|
25
|
-
|
|
26
|
-
# 3. Recall it
|
|
27
|
-
cortexdb recall "Q3 revenue?"
|
|
28
|
-
|
|
29
|
-
# 4. Or just type — drops into a REPL
|
|
30
|
-
cortexdb
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
The signup token has a 7-day TTL on the free tier. Re-run `cortexdb init`
|
|
34
|
-
to refresh, or pass `--api-key` + `--actor` to use a token from your IdP.
|
|
35
|
-
|
|
36
|
-
## Commands
|
|
37
|
-
|
|
38
|
-
```
|
|
39
|
-
cortexdb init anonymous signup; persist token + actor
|
|
40
|
-
cortexdb remember "..." store a memory (POST /v1/experience)
|
|
41
|
-
cortexdb recall "..." recall a stratified context pack
|
|
42
|
-
cortexdb search "..." granular event-level search
|
|
43
|
-
cortexdb forget --memory-id ... delete with audit
|
|
44
|
-
cortexdb episodes {list,get,delete} episode CRUD
|
|
45
|
-
cortexdb entities {list,get,link} entity rollups over the Facts layer
|
|
46
|
-
cortexdb admin {health,usage,layers} diagnostics
|
|
47
|
-
cortexdb import data.json bulk-load (JSON / JSONL / CSV / TXT)
|
|
48
|
-
cortexdb export -o backup.json export memories
|
|
49
|
-
cortexdb config {show,set} view / edit ~/.cortexdb/config.toml
|
|
50
|
-
cortexdb interactive REPL
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## Configuration
|
|
54
|
-
|
|
55
|
-
Three layers, in precedence order:
|
|
56
|
-
|
|
57
|
-
1. **CLI flags** — `--api-key`, `--endpoint`, `--actor`, `--scope`, `--profile`
|
|
58
|
-
2. **Environment** — `CORTEXDB_API_KEY`, `CORTEXDB_URL`, `CORTEXDB_ACTOR`, `CORTEXDB_SCOPE`
|
|
59
|
-
3. **Persisted state**:
|
|
60
|
-
- `~/.cortexdb/config.toml` — endpoint, profile names (human-editable)
|
|
61
|
-
- `~/.cortexdb/state.json` — token, actor, scope, expiry (managed by `init`, 0600 on POSIX)
|
|
62
|
-
|
|
63
|
-
The state.json format matches the cortexdb-mcp 0.3.0 server's, so you can
|
|
64
|
-
copy state across to use both tools from the same anonymous identity.
|
|
65
|
-
|
|
66
|
-
## Pipe-friendly
|
|
67
|
-
|
|
68
|
-
Auto-detects when stdout isn't a TTY and emits JSON:
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
cortexdb recall "Q3 revenue" | jq .context_block
|
|
72
|
-
cortexdb entities list | jq '.[].subject'
|
|
73
|
-
echo "remember this" | cortexdb remember -
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
Force JSON mode any time with `--json`.
|
|
77
|
-
|
|
78
|
-
## Auth notes
|
|
79
|
-
|
|
80
|
-
- The v1 API requires both `Authorization: Bearer <PASETO>` and `X-Cortex-Actor`.
|
|
81
|
-
The CLI stamps both on every request — you never need to pass them by hand.
|
|
82
|
-
- 401s show the specific error code (`TOKEN_EXPIRED`, `actor_mismatch`, …)
|
|
83
|
-
and the remediation: usually `cortexdb init`.
|
|
84
|
-
- 403s cite the missing capability and the policy tier that denied. If a
|
|
85
|
-
recall returns `diagnostics.read denied`, pass `--diagnostics none` —
|
|
86
|
-
free-tier tokens don't carry the `diagnostics.read` capability.
|
|
87
|
-
|
|
88
|
-
## License
|
|
89
|
-
|
|
90
|
-
Apache-2.0
|
|
1
|
+
# cortexdb-cli
|
|
2
|
+
|
|
3
|
+
Command-line interface for [CortexDB](https://cortexdb.ai) — the long-term memory layer for AI systems.
|
|
4
|
+
|
|
5
|
+
Wraps the v1 HTTP API in a small, fast Click + Rich CLI. Anonymous signup
|
|
6
|
+
in one command, no email or card; works against the public SaaS or any
|
|
7
|
+
self-hosted CortexDB deployment.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install cortexdb-cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Requires Python 3.10+.
|
|
16
|
+
|
|
17
|
+
## Quickstart
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# 1. One-time setup — anonymous signup, writes ~/.cortexdb/state.json
|
|
21
|
+
cortexdb init
|
|
22
|
+
|
|
23
|
+
# 2. Store a memory
|
|
24
|
+
cortexdb remember "Q3 revenue: $2.4M. We're on track for $10M ARR by year-end."
|
|
25
|
+
|
|
26
|
+
# 3. Recall it
|
|
27
|
+
cortexdb recall "Q3 revenue?"
|
|
28
|
+
|
|
29
|
+
# 4. Or just type — drops into a REPL
|
|
30
|
+
cortexdb
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The signup token has a 7-day TTL on the free tier. Re-run `cortexdb init`
|
|
34
|
+
to refresh, or pass `--api-key` + `--actor` to use a token from your IdP.
|
|
35
|
+
|
|
36
|
+
## Commands
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
cortexdb init anonymous signup; persist token + actor
|
|
40
|
+
cortexdb remember "..." store a memory (POST /v1/experience)
|
|
41
|
+
cortexdb recall "..." recall a stratified context pack
|
|
42
|
+
cortexdb search "..." granular event-level search
|
|
43
|
+
cortexdb forget --memory-id ... delete with audit
|
|
44
|
+
cortexdb episodes {list,get,delete} episode CRUD
|
|
45
|
+
cortexdb entities {list,get,link} entity rollups over the Facts layer
|
|
46
|
+
cortexdb admin {health,usage,layers} diagnostics
|
|
47
|
+
cortexdb import data.json bulk-load (JSON / JSONL / CSV / TXT)
|
|
48
|
+
cortexdb export -o backup.json export memories
|
|
49
|
+
cortexdb config {show,set} view / edit ~/.cortexdb/config.toml
|
|
50
|
+
cortexdb interactive REPL
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Configuration
|
|
54
|
+
|
|
55
|
+
Three layers, in precedence order:
|
|
56
|
+
|
|
57
|
+
1. **CLI flags** — `--api-key`, `--endpoint`, `--actor`, `--scope`, `--profile`
|
|
58
|
+
2. **Environment** — `CORTEXDB_API_KEY`, `CORTEXDB_URL`, `CORTEXDB_ACTOR`, `CORTEXDB_SCOPE`
|
|
59
|
+
3. **Persisted state**:
|
|
60
|
+
- `~/.cortexdb/config.toml` — endpoint, profile names (human-editable)
|
|
61
|
+
- `~/.cortexdb/state.json` — token, actor, scope, expiry (managed by `init`, 0600 on POSIX)
|
|
62
|
+
|
|
63
|
+
The state.json format matches the cortexdb-mcp 0.3.0 server's, so you can
|
|
64
|
+
copy state across to use both tools from the same anonymous identity.
|
|
65
|
+
|
|
66
|
+
## Pipe-friendly
|
|
67
|
+
|
|
68
|
+
Auto-detects when stdout isn't a TTY and emits JSON:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
cortexdb recall "Q3 revenue" | jq .context_block
|
|
72
|
+
cortexdb entities list | jq '.[].subject'
|
|
73
|
+
echo "remember this" | cortexdb remember -
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Force JSON mode any time with `--json`.
|
|
77
|
+
|
|
78
|
+
## Auth notes
|
|
79
|
+
|
|
80
|
+
- The v1 API requires both `Authorization: Bearer <PASETO>` and `X-Cortex-Actor`.
|
|
81
|
+
The CLI stamps both on every request — you never need to pass them by hand.
|
|
82
|
+
- 401s show the specific error code (`TOKEN_EXPIRED`, `actor_mismatch`, …)
|
|
83
|
+
and the remediation: usually `cortexdb init`.
|
|
84
|
+
- 403s cite the missing capability and the policy tier that denied. If a
|
|
85
|
+
recall returns `diagnostics.read denied`, pass `--diagnostics none` —
|
|
86
|
+
free-tier tokens don't carry the `diagnostics.read` capability.
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
Apache-2.0
|
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
"""HTTP client for the CortexDB v1 API.
|
|
2
|
-
|
|
3
|
-
Thin wrapper around httpx that reads credentials + endpoint from the CLI
|
|
4
|
-
context and stamps every request with both `Authorization: Bearer …` and
|
|
5
|
-
`X-Cortex-Actor: …`. The actor header is mandatory on v1 — missing it
|
|
6
|
-
returns 401 ACTOR_MISMATCH no matter how valid the token is.
|
|
7
|
-
|
|
8
|
-
We deliberately don't depend on the cortexdbai SDK: keeping the CLI a
|
|
9
|
-
straight HTTP client makes the install fast and lets us pin httpx
|
|
10
|
-
independently from the SDK's release cadence.
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
from __future__ import annotations
|
|
14
|
-
|
|
15
|
-
from contextlib import contextmanager
|
|
16
|
-
from typing import Any, Generator
|
|
17
|
-
|
|
18
|
-
import httpx
|
|
19
|
-
|
|
20
|
-
from cortexdb_cli import __version__
|
|
21
|
-
|
|
22
|
-
DEFAULT_ENDPOINT = "https://api-v1.cortexdb.ai"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class CortexClient:
|
|
26
|
-
"""Synchronous HTTP client for the CortexDB v1 API."""
|
|
27
|
-
|
|
28
|
-
def __init__(
|
|
29
|
-
self,
|
|
30
|
-
endpoint: str,
|
|
31
|
-
api_key: str,
|
|
32
|
-
actor: str = "",
|
|
33
|
-
timeout: float = 30.0,
|
|
34
|
-
) -> None:
|
|
35
|
-
self.endpoint = endpoint.rstrip("/")
|
|
36
|
-
self.api_key = api_key
|
|
37
|
-
self.actor = actor
|
|
38
|
-
headers: dict[str, str] = {
|
|
39
|
-
"Content-Type": "application/json",
|
|
40
|
-
"User-Agent": f"cortexdb-cli/{__version__}",
|
|
41
|
-
}
|
|
42
|
-
if api_key:
|
|
43
|
-
headers["Authorization"] = f"Bearer {api_key}"
|
|
44
|
-
if actor:
|
|
45
|
-
headers["X-Cortex-Actor"] = actor
|
|
46
|
-
self._http = httpx.Client(
|
|
47
|
-
base_url=self.endpoint,
|
|
48
|
-
headers=headers,
|
|
49
|
-
timeout=timeout,
|
|
50
|
-
)
|
|
51
|
-
|
|
52
|
-
def close(self) -> None:
|
|
53
|
-
self._http.close()
|
|
54
|
-
|
|
55
|
-
def get(self, path: str, params: dict[str, Any] | None = None) -> httpx.Response:
|
|
56
|
-
return self._http.get(path, params=params)
|
|
57
|
-
|
|
58
|
-
def post(
|
|
59
|
-
self,
|
|
60
|
-
path: str,
|
|
61
|
-
json: dict[str, Any] | None = None,
|
|
62
|
-
params: dict[str, Any] | None = None,
|
|
63
|
-
) -> httpx.Response:
|
|
64
|
-
return self._http.post(path, json=json, params=params)
|
|
65
|
-
|
|
66
|
-
def delete(self, path: str, params: dict[str, Any] | None = None) -> httpx.Response:
|
|
67
|
-
return self._http.delete(path, params=params)
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
def signup(endpoint: str = DEFAULT_ENDPOINT, timeout: float = 30.0) -> dict[str, Any]:
|
|
71
|
-
"""Call POST /v1/auth/signup and return {token, user_id, scope, expires_at, tier}.
|
|
72
|
-
|
|
73
|
-
The endpoint is public — no auth required. Free tier; 7-day TTL.
|
|
74
|
-
"""
|
|
75
|
-
with httpx.Client(timeout=timeout) as http:
|
|
76
|
-
resp = http.post(f"{endpoint.rstrip('/')}/v1/auth/signup", json={})
|
|
77
|
-
resp.raise_for_status()
|
|
78
|
-
return resp.json()
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
@contextmanager
|
|
82
|
-
def get_client(ctx: dict[str, Any]) -> Generator[CortexClient, None, None]:
|
|
83
|
-
"""Create a CortexClient from CLI context."""
|
|
84
|
-
client = CortexClient(
|
|
85
|
-
endpoint=ctx.get("endpoint", DEFAULT_ENDPOINT),
|
|
86
|
-
api_key=ctx.get("api_key", ""),
|
|
87
|
-
actor=ctx.get("actor", ""),
|
|
88
|
-
)
|
|
89
|
-
try:
|
|
90
|
-
yield client
|
|
91
|
-
finally:
|
|
92
|
-
client.close()
|
|
1
|
+
"""HTTP client for the CortexDB v1 API.
|
|
2
|
+
|
|
3
|
+
Thin wrapper around httpx that reads credentials + endpoint from the CLI
|
|
4
|
+
context and stamps every request with both `Authorization: Bearer …` and
|
|
5
|
+
`X-Cortex-Actor: …`. The actor header is mandatory on v1 — missing it
|
|
6
|
+
returns 401 ACTOR_MISMATCH no matter how valid the token is.
|
|
7
|
+
|
|
8
|
+
We deliberately don't depend on the cortexdbai SDK: keeping the CLI a
|
|
9
|
+
straight HTTP client makes the install fast and lets us pin httpx
|
|
10
|
+
independently from the SDK's release cadence.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import annotations
|
|
14
|
+
|
|
15
|
+
from contextlib import contextmanager
|
|
16
|
+
from typing import Any, Generator
|
|
17
|
+
|
|
18
|
+
import httpx
|
|
19
|
+
|
|
20
|
+
from cortexdb_cli import __version__
|
|
21
|
+
|
|
22
|
+
DEFAULT_ENDPOINT = "https://api-v1.cortexdb.ai"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class CortexClient:
|
|
26
|
+
"""Synchronous HTTP client for the CortexDB v1 API."""
|
|
27
|
+
|
|
28
|
+
def __init__(
|
|
29
|
+
self,
|
|
30
|
+
endpoint: str,
|
|
31
|
+
api_key: str,
|
|
32
|
+
actor: str = "",
|
|
33
|
+
timeout: float = 30.0,
|
|
34
|
+
) -> None:
|
|
35
|
+
self.endpoint = endpoint.rstrip("/")
|
|
36
|
+
self.api_key = api_key
|
|
37
|
+
self.actor = actor
|
|
38
|
+
headers: dict[str, str] = {
|
|
39
|
+
"Content-Type": "application/json",
|
|
40
|
+
"User-Agent": f"cortexdb-cli/{__version__}",
|
|
41
|
+
}
|
|
42
|
+
if api_key:
|
|
43
|
+
headers["Authorization"] = f"Bearer {api_key}"
|
|
44
|
+
if actor:
|
|
45
|
+
headers["X-Cortex-Actor"] = actor
|
|
46
|
+
self._http = httpx.Client(
|
|
47
|
+
base_url=self.endpoint,
|
|
48
|
+
headers=headers,
|
|
49
|
+
timeout=timeout,
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
def close(self) -> None:
|
|
53
|
+
self._http.close()
|
|
54
|
+
|
|
55
|
+
def get(self, path: str, params: dict[str, Any] | None = None) -> httpx.Response:
|
|
56
|
+
return self._http.get(path, params=params)
|
|
57
|
+
|
|
58
|
+
def post(
|
|
59
|
+
self,
|
|
60
|
+
path: str,
|
|
61
|
+
json: dict[str, Any] | None = None,
|
|
62
|
+
params: dict[str, Any] | None = None,
|
|
63
|
+
) -> httpx.Response:
|
|
64
|
+
return self._http.post(path, json=json, params=params)
|
|
65
|
+
|
|
66
|
+
def delete(self, path: str, params: dict[str, Any] | None = None) -> httpx.Response:
|
|
67
|
+
return self._http.delete(path, params=params)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def signup(endpoint: str = DEFAULT_ENDPOINT, timeout: float = 30.0) -> dict[str, Any]:
|
|
71
|
+
"""Call POST /v1/auth/signup and return {token, user_id, scope, expires_at, tier}.
|
|
72
|
+
|
|
73
|
+
The endpoint is public — no auth required. Free tier; 7-day TTL.
|
|
74
|
+
"""
|
|
75
|
+
with httpx.Client(timeout=timeout) as http:
|
|
76
|
+
resp = http.post(f"{endpoint.rstrip('/')}/v1/auth/signup", json={})
|
|
77
|
+
resp.raise_for_status()
|
|
78
|
+
return resp.json()
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
@contextmanager
|
|
82
|
+
def get_client(ctx: dict[str, Any]) -> Generator[CortexClient, None, None]:
|
|
83
|
+
"""Create a CortexClient from CLI context."""
|
|
84
|
+
client = CortexClient(
|
|
85
|
+
endpoint=ctx.get("endpoint", DEFAULT_ENDPOINT),
|
|
86
|
+
api_key=ctx.get("api_key", ""),
|
|
87
|
+
actor=ctx.get("actor", ""),
|
|
88
|
+
)
|
|
89
|
+
try:
|
|
90
|
+
yield client
|
|
91
|
+
finally:
|
|
92
|
+
client.close()
|
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
"""cortexdb admin — health, usage, layer stats."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
import click
|
|
6
|
-
|
|
7
|
-
from cortexdb_cli.client import get_client
|
|
8
|
-
from cortexdb_cli.errors import handle_errors
|
|
9
|
-
from cortexdb_cli.output import (
|
|
10
|
-
is_json_mode,
|
|
11
|
-
print_health,
|
|
12
|
-
print_ontology,
|
|
13
|
-
print_usage,
|
|
14
|
-
spinner,
|
|
15
|
-
)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
@click.group("admin")
|
|
19
|
-
def admin_group() -> None:
|
|
20
|
-
"""Diagnostics — reachability, identity, rate-limit, layer status."""
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
@admin_group.command("health")
|
|
24
|
-
@click.pass_context
|
|
25
|
-
@handle_errors
|
|
26
|
-
def admin_health(ctx: click.Context) -> None:
|
|
27
|
-
"""Auth + reachability check (GET /v1/auth/whoami)."""
|
|
28
|
-
cfg = ctx.obj
|
|
29
|
-
with get_client(cfg) as client:
|
|
30
|
-
resp = client.get("/v1/auth/whoami")
|
|
31
|
-
resp.raise_for_status()
|
|
32
|
-
body = resp.json()
|
|
33
|
-
# Normalise into the shape print_health expects.
|
|
34
|
-
body.setdefault("status", "ok")
|
|
35
|
-
print_health(body, cfg)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
@admin_group.command("usage")
|
|
39
|
-
@click.pass_context
|
|
40
|
-
@handle_errors
|
|
41
|
-
def admin_usage(ctx: click.Context) -> None:
|
|
42
|
-
"""Tier, capabilities, rate-limit headroom, token expiry."""
|
|
43
|
-
cfg = ctx.obj
|
|
44
|
-
with get_client(cfg) as client:
|
|
45
|
-
if not is_json_mode(cfg):
|
|
46
|
-
with spinner("Loading usage..."):
|
|
47
|
-
resp = client.get("/v1/auth/whoami")
|
|
48
|
-
else:
|
|
49
|
-
resp = client.get("/v1/auth/whoami")
|
|
50
|
-
resp.raise_for_status()
|
|
51
|
-
body = resp.json()
|
|
52
|
-
# Fold rate-limit + expiry response headers into the body so the
|
|
53
|
-
# output formatter can render them in one block.
|
|
54
|
-
for k in (
|
|
55
|
-
"X-RateLimit-Limit",
|
|
56
|
-
"X-RateLimit-Reset",
|
|
57
|
-
"X-RateLimit-Remaining",
|
|
58
|
-
"X-Cortex-Token-Expires-In",
|
|
59
|
-
"X-Cortex-Token-Expires-At",
|
|
60
|
-
):
|
|
61
|
-
if k in resp.headers:
|
|
62
|
-
body[k] = resp.headers[k]
|
|
63
|
-
print_usage(body, cfg)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
@admin_group.command("layers")
|
|
67
|
-
@click.pass_context
|
|
68
|
-
@handle_errors
|
|
69
|
-
def admin_layers(ctx: click.Context) -> None:
|
|
70
|
-
"""Per-layer counts and synthesis lag (GET /v1/admin/layers/stats).
|
|
71
|
-
|
|
72
|
-
Stability: experimental — the endpoint is gated by the
|
|
73
|
-
`admin.layers.stats` capability and may not be present on the free tier.
|
|
74
|
-
"""
|
|
75
|
-
cfg = ctx.obj
|
|
76
|
-
with get_client(cfg) as client:
|
|
77
|
-
if not is_json_mode(cfg):
|
|
78
|
-
with spinner("Loading layer stats..."):
|
|
79
|
-
resp = client.get("/v1/admin/layers/stats")
|
|
80
|
-
else:
|
|
81
|
-
resp = client.get("/v1/admin/layers/stats")
|
|
82
|
-
resp.raise_for_status()
|
|
83
|
-
print_ontology(resp.json(), cfg)
|
|
1
|
+
"""cortexdb admin — health, usage, layer stats."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import click
|
|
6
|
+
|
|
7
|
+
from cortexdb_cli.client import get_client
|
|
8
|
+
from cortexdb_cli.errors import handle_errors
|
|
9
|
+
from cortexdb_cli.output import (
|
|
10
|
+
is_json_mode,
|
|
11
|
+
print_health,
|
|
12
|
+
print_ontology,
|
|
13
|
+
print_usage,
|
|
14
|
+
spinner,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
@click.group("admin")
|
|
19
|
+
def admin_group() -> None:
|
|
20
|
+
"""Diagnostics — reachability, identity, rate-limit, layer status."""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
@admin_group.command("health")
|
|
24
|
+
@click.pass_context
|
|
25
|
+
@handle_errors
|
|
26
|
+
def admin_health(ctx: click.Context) -> None:
|
|
27
|
+
"""Auth + reachability check (GET /v1/auth/whoami)."""
|
|
28
|
+
cfg = ctx.obj
|
|
29
|
+
with get_client(cfg) as client:
|
|
30
|
+
resp = client.get("/v1/auth/whoami")
|
|
31
|
+
resp.raise_for_status()
|
|
32
|
+
body = resp.json()
|
|
33
|
+
# Normalise into the shape print_health expects.
|
|
34
|
+
body.setdefault("status", "ok")
|
|
35
|
+
print_health(body, cfg)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
@admin_group.command("usage")
|
|
39
|
+
@click.pass_context
|
|
40
|
+
@handle_errors
|
|
41
|
+
def admin_usage(ctx: click.Context) -> None:
|
|
42
|
+
"""Tier, capabilities, rate-limit headroom, token expiry."""
|
|
43
|
+
cfg = ctx.obj
|
|
44
|
+
with get_client(cfg) as client:
|
|
45
|
+
if not is_json_mode(cfg):
|
|
46
|
+
with spinner("Loading usage..."):
|
|
47
|
+
resp = client.get("/v1/auth/whoami")
|
|
48
|
+
else:
|
|
49
|
+
resp = client.get("/v1/auth/whoami")
|
|
50
|
+
resp.raise_for_status()
|
|
51
|
+
body = resp.json()
|
|
52
|
+
# Fold rate-limit + expiry response headers into the body so the
|
|
53
|
+
# output formatter can render them in one block.
|
|
54
|
+
for k in (
|
|
55
|
+
"X-RateLimit-Limit",
|
|
56
|
+
"X-RateLimit-Reset",
|
|
57
|
+
"X-RateLimit-Remaining",
|
|
58
|
+
"X-Cortex-Token-Expires-In",
|
|
59
|
+
"X-Cortex-Token-Expires-At",
|
|
60
|
+
):
|
|
61
|
+
if k in resp.headers:
|
|
62
|
+
body[k] = resp.headers[k]
|
|
63
|
+
print_usage(body, cfg)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
@admin_group.command("layers")
|
|
67
|
+
@click.pass_context
|
|
68
|
+
@handle_errors
|
|
69
|
+
def admin_layers(ctx: click.Context) -> None:
|
|
70
|
+
"""Per-layer counts and synthesis lag (GET /v1/admin/layers/stats).
|
|
71
|
+
|
|
72
|
+
Stability: experimental — the endpoint is gated by the
|
|
73
|
+
`admin.layers.stats` capability and may not be present on the free tier.
|
|
74
|
+
"""
|
|
75
|
+
cfg = ctx.obj
|
|
76
|
+
with get_client(cfg) as client:
|
|
77
|
+
if not is_json_mode(cfg):
|
|
78
|
+
with spinner("Loading layer stats..."):
|
|
79
|
+
resp = client.get("/v1/admin/layers/stats")
|
|
80
|
+
else:
|
|
81
|
+
resp = client.get("/v1/admin/layers/stats")
|
|
82
|
+
resp.raise_for_status()
|
|
83
|
+
print_ontology(resp.json(), cfg)
|