deepsieve-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.
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/.gitignore +7 -0
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/PKG-INFO +14 -1
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/README.md +13 -0
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/pyproject.toml +1 -1
- deepsieve_cli-0.4.0/src/deepsieve_cli/main.py +1150 -0
- deepsieve_cli-0.4.0/tests/test_cli.py +1054 -0
- deepsieve_cli-0.2.0/src/deepsieve_cli/main.py +0 -605
- deepsieve_cli-0.2.0/tests/test_cli.py +0 -507
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/src/deepsieve_cli/__init__.py +0 -0
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/src/deepsieve_cli/__main__.py +0 -0
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/src/deepsieve_cli/client.py +0 -0
- {deepsieve_cli-0.2.0 → deepsieve_cli-0.4.0}/src/deepsieve_cli/config.py +0 -0
|
@@ -132,3 +132,10 @@ page-*.yml
|
|
|
132
132
|
|
|
133
133
|
# Antigravity (Gemini) agent local config — per-machine, like .claude/settings.local.json
|
|
134
134
|
.agents/
|
|
135
|
+
|
|
136
|
+
# --- Review-seat scratch (`.review-<ticket>/`) ---
|
|
137
|
+
# Reviewer briefs and seat reports written into a worktree for a review round.
|
|
138
|
+
# `.review-1539/` reached `development` in #1561 through a `git add -A` — the
|
|
139
|
+
# same mechanism as the node_modules note above, a second time. Reports belong
|
|
140
|
+
# in the session scratchpad; a copy in the tree is only ever a transient.
|
|
141
|
+
.review-*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: deepsieve-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: DeepSieve CLI — run cited deep research from your terminal
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Requires-Dist: httpx>=0.27
|
|
@@ -20,18 +20,31 @@ scoped API key. Nothing to copy, nothing pasted into your shell history. The
|
|
|
20
20
|
credential appears in **Settings → API keys** on your deployment and can be
|
|
21
21
|
revoked there at any time.
|
|
22
22
|
|
|
23
|
+
The key covers the CLI's own commands and cannot create a Blueprint. If an agent
|
|
24
|
+
will use it to create Blueprints, run `deepsieve login --preset agent`; the
|
|
25
|
+
approval screen lists the extra scopes.
|
|
26
|
+
|
|
23
27
|
## Commands
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
30
|
deepsieve whoami # identity, workspace, scopes
|
|
27
31
|
deepsieve runs create --query "..." --dry-run # free simulated run (~15s)
|
|
28
32
|
deepsieve runs create --query "..." --wait # real run: spends credits
|
|
33
|
+
deepsieve runs create --seeds "..." --allowed-source "*.gov" # only cite these
|
|
29
34
|
deepsieve runs list
|
|
30
35
|
deepsieve runs get <id> # exit 4 while still running
|
|
31
36
|
deepsieve runs cancel <id>
|
|
32
37
|
deepsieve members list # who is in the workspace + seat usage
|
|
38
|
+
deepsieve changes list --live # merges, renames, successor links
|
|
39
|
+
deepsieve changes undo <id> # asks first; --yes in scripts
|
|
40
|
+
deepsieve merge preview <entity> --survivor <id> --loser <id> # writes nothing
|
|
41
|
+
deepsieve merge apply <entity> --survivor <id> --loser <id> [--choice KEY=loser]
|
|
33
42
|
deepsieve data catalog # entities + columns (never guess)
|
|
34
43
|
deepsieve data get companies --receipts # rows with per-cell citations
|
|
44
|
+
deepsieve chat thread <run-id> # changes, with status + warnings
|
|
45
|
+
deepsieve chat confirm <action-id> # apply a change that waits for confirmation
|
|
46
|
+
deepsieve chat dismiss <action-id> # decline it; nothing is written
|
|
47
|
+
deepsieve chat revert <action-id> # undo a change a chat answer applied
|
|
35
48
|
deepsieve setup mcp # MCP registration for this origin
|
|
36
49
|
```
|
|
37
50
|
|
|
@@ -12,18 +12,31 @@ scoped API key. Nothing to copy, nothing pasted into your shell history. The
|
|
|
12
12
|
credential appears in **Settings → API keys** on your deployment and can be
|
|
13
13
|
revoked there at any time.
|
|
14
14
|
|
|
15
|
+
The key covers the CLI's own commands and cannot create a Blueprint. If an agent
|
|
16
|
+
will use it to create Blueprints, run `deepsieve login --preset agent`; the
|
|
17
|
+
approval screen lists the extra scopes.
|
|
18
|
+
|
|
15
19
|
## Commands
|
|
16
20
|
|
|
17
21
|
```bash
|
|
18
22
|
deepsieve whoami # identity, workspace, scopes
|
|
19
23
|
deepsieve runs create --query "..." --dry-run # free simulated run (~15s)
|
|
20
24
|
deepsieve runs create --query "..." --wait # real run: spends credits
|
|
25
|
+
deepsieve runs create --seeds "..." --allowed-source "*.gov" # only cite these
|
|
21
26
|
deepsieve runs list
|
|
22
27
|
deepsieve runs get <id> # exit 4 while still running
|
|
23
28
|
deepsieve runs cancel <id>
|
|
24
29
|
deepsieve members list # who is in the workspace + seat usage
|
|
30
|
+
deepsieve changes list --live # merges, renames, successor links
|
|
31
|
+
deepsieve changes undo <id> # asks first; --yes in scripts
|
|
32
|
+
deepsieve merge preview <entity> --survivor <id> --loser <id> # writes nothing
|
|
33
|
+
deepsieve merge apply <entity> --survivor <id> --loser <id> [--choice KEY=loser]
|
|
25
34
|
deepsieve data catalog # entities + columns (never guess)
|
|
26
35
|
deepsieve data get companies --receipts # rows with per-cell citations
|
|
36
|
+
deepsieve chat thread <run-id> # changes, with status + warnings
|
|
37
|
+
deepsieve chat confirm <action-id> # apply a change that waits for confirmation
|
|
38
|
+
deepsieve chat dismiss <action-id> # decline it; nothing is written
|
|
39
|
+
deepsieve chat revert <action-id> # undo a change a chat answer applied
|
|
27
40
|
deepsieve setup mcp # MCP registration for this origin
|
|
28
41
|
```
|
|
29
42
|
|