langstage-cli 0.4.0__tar.gz → 0.5.1__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.
- {langstage_cli-0.4.0/langstage_cli.egg-info → langstage_cli-0.5.1}/PKG-INFO +16 -3
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/README.md +11 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli/cli.py +6 -2
- {langstage_cli-0.4.0 → langstage_cli-0.5.1/langstage_cli.egg-info}/PKG-INFO +16 -3
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli.egg-info/requires.txt +5 -2
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/pyproject.toml +8 -3
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/LICENSE +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/deepagent_code/__init__.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli/__init__.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli/config.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli.egg-info/SOURCES.txt +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli.egg-info/dependency_links.txt +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli.egg-info/entry_points.txt +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/langstage_cli.egg-info/top_level.txt +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/setup.cfg +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/tests/test_cli.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/tests/test_codeconfig.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/tests/test_config.py +0 -0
- {langstage_cli-0.4.0 → langstage_cli-0.5.1}/tests/test_rename_shim.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langstage-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: The terminal stage for your LangGraph agent — Claude Code-style CLI for any CompiledGraph
|
|
5
5
|
Author-email: Kedar Dabhadkar <kdabhadk@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -19,16 +19,18 @@ Requires-Python: >=3.11
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: langgraph>=0.2.0
|
|
22
|
-
Requires-Dist: langgraph-stream-parser<0.
|
|
22
|
+
Requires-Dist: langgraph-stream-parser<0.5,>=0.3
|
|
23
23
|
Requires-Dist: click>=8.0.0
|
|
24
24
|
Requires-Dist: python-dotenv
|
|
25
|
-
Requires-Dist: deepagents
|
|
26
25
|
Provides-Extra: dev
|
|
27
26
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
28
27
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
29
28
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
30
29
|
Requires-Dist: ruff==0.15.15; extra == "dev"
|
|
31
30
|
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
31
|
+
Requires-Dist: deepagents>=0.3; extra == "dev"
|
|
32
|
+
Provides-Extra: agui
|
|
33
|
+
Requires-Dist: langgraph-stream-parser[agui]<0.5,>=0.4; extra == "agui"
|
|
32
34
|
Dynamic: license-file
|
|
33
35
|
|
|
34
36
|
# langstage-cli
|
|
@@ -52,6 +54,17 @@ langstage-cli is the terminal stage of the **LangStage family**: write your agen
|
|
|
52
54
|
| Reference agent | [langstage-hermes](https://github.com/dkedar7/langstage-hermes) | `LANGSTAGE_AGENT_SPEC=langstage_hermes.agent:graph` on any stage |
|
|
53
55
|
| Shared core | [langgraph-stream-parser](https://github.com/dkedar7/langgraph-stream-parser) | typed events + config resolver behind every stage |
|
|
54
56
|
|
|
57
|
+
📖 **Full documentation:** <https://dkedar7.github.io/langstage-docs/>
|
|
58
|
+
|
|
59
|
+
### Serve over AG-UI
|
|
60
|
+
|
|
61
|
+
This surface's agent — any LangGraph `CompiledGraph` — can also be served over the [AG-UI protocol](https://github.com/dkedar7/langgraph-stream-parser):
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install "langgraph-stream-parser[agui]"
|
|
65
|
+
langstage-agui --agent my_agent.py:graph
|
|
66
|
+
```
|
|
67
|
+
|
|
55
68
|
## Installation
|
|
56
69
|
|
|
57
70
|
```bash
|
|
@@ -19,6 +19,17 @@ langstage-cli is the terminal stage of the **LangStage family**: write your agen
|
|
|
19
19
|
| Reference agent | [langstage-hermes](https://github.com/dkedar7/langstage-hermes) | `LANGSTAGE_AGENT_SPEC=langstage_hermes.agent:graph` on any stage |
|
|
20
20
|
| Shared core | [langgraph-stream-parser](https://github.com/dkedar7/langgraph-stream-parser) | typed events + config resolver behind every stage |
|
|
21
21
|
|
|
22
|
+
📖 **Full documentation:** <https://dkedar7.github.io/langstage-docs/>
|
|
23
|
+
|
|
24
|
+
### Serve over AG-UI
|
|
25
|
+
|
|
26
|
+
This surface's agent — any LangGraph `CompiledGraph` — can also be served over the [AG-UI protocol](https://github.com/dkedar7/langgraph-stream-parser):
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install "langgraph-stream-parser[agui]"
|
|
30
|
+
langstage-agui --agent my_agent.py:graph
|
|
31
|
+
```
|
|
32
|
+
|
|
22
33
|
## Installation
|
|
23
34
|
|
|
24
35
|
```bash
|
|
@@ -12,6 +12,7 @@ import sys
|
|
|
12
12
|
import threading
|
|
13
13
|
import time
|
|
14
14
|
import uuid
|
|
15
|
+
from importlib.metadata import PackageNotFoundError, version as _pkg_version
|
|
15
16
|
from pathlib import Path
|
|
16
17
|
from typing import Any, Dict, List, Optional, Tuple
|
|
17
18
|
|
|
@@ -56,8 +57,11 @@ BRIGHT_GREEN, BRIGHT_YELLOW = "\033[92m", "\033[93m"
|
|
|
56
57
|
SPINNER_FRAMES = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
|
|
57
58
|
|
|
58
59
|
|
|
59
|
-
# Version info
|
|
60
|
-
|
|
60
|
+
# Version info — read from package metadata so it never drifts from pyproject.
|
|
61
|
+
try:
|
|
62
|
+
__version__ = _pkg_version("langstage-cli")
|
|
63
|
+
except PackageNotFoundError: # pragma: no cover - editable/source checkout
|
|
64
|
+
__version__ = "0.0.0+local"
|
|
61
65
|
|
|
62
66
|
|
|
63
67
|
# Slash command registry
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langstage-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: The terminal stage for your LangGraph agent — Claude Code-style CLI for any CompiledGraph
|
|
5
5
|
Author-email: Kedar Dabhadkar <kdabhadk@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -19,16 +19,18 @@ Requires-Python: >=3.11
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: langgraph>=0.2.0
|
|
22
|
-
Requires-Dist: langgraph-stream-parser<0.
|
|
22
|
+
Requires-Dist: langgraph-stream-parser<0.5,>=0.3
|
|
23
23
|
Requires-Dist: click>=8.0.0
|
|
24
24
|
Requires-Dist: python-dotenv
|
|
25
|
-
Requires-Dist: deepagents
|
|
26
25
|
Provides-Extra: dev
|
|
27
26
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
28
27
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
29
28
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
30
29
|
Requires-Dist: ruff==0.15.15; extra == "dev"
|
|
31
30
|
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
31
|
+
Requires-Dist: deepagents>=0.3; extra == "dev"
|
|
32
|
+
Provides-Extra: agui
|
|
33
|
+
Requires-Dist: langgraph-stream-parser[agui]<0.5,>=0.4; extra == "agui"
|
|
32
34
|
Dynamic: license-file
|
|
33
35
|
|
|
34
36
|
# langstage-cli
|
|
@@ -52,6 +54,17 @@ langstage-cli is the terminal stage of the **LangStage family**: write your agen
|
|
|
52
54
|
| Reference agent | [langstage-hermes](https://github.com/dkedar7/langstage-hermes) | `LANGSTAGE_AGENT_SPEC=langstage_hermes.agent:graph` on any stage |
|
|
53
55
|
| Shared core | [langgraph-stream-parser](https://github.com/dkedar7/langgraph-stream-parser) | typed events + config resolver behind every stage |
|
|
54
56
|
|
|
57
|
+
📖 **Full documentation:** <https://dkedar7.github.io/langstage-docs/>
|
|
58
|
+
|
|
59
|
+
### Serve over AG-UI
|
|
60
|
+
|
|
61
|
+
This surface's agent — any LangGraph `CompiledGraph` — can also be served over the [AG-UI protocol](https://github.com/dkedar7/langgraph-stream-parser):
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install "langgraph-stream-parser[agui]"
|
|
65
|
+
langstage-agui --agent my_agent.py:graph
|
|
66
|
+
```
|
|
67
|
+
|
|
55
68
|
## Installation
|
|
56
69
|
|
|
57
70
|
```bash
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
langgraph>=0.2.0
|
|
2
|
-
langgraph-stream-parser<0.
|
|
2
|
+
langgraph-stream-parser<0.5,>=0.3
|
|
3
3
|
click>=8.0.0
|
|
4
4
|
python-dotenv
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
[agui]
|
|
7
|
+
langgraph-stream-parser[agui]<0.5,>=0.4
|
|
6
8
|
|
|
7
9
|
[dev]
|
|
8
10
|
pytest>=7.0.0
|
|
@@ -10,3 +12,4 @@ pytest-asyncio>=0.21.0
|
|
|
10
12
|
black>=23.0.0
|
|
11
13
|
ruff==0.15.15
|
|
12
14
|
mypy>=1.0.0
|
|
15
|
+
deepagents>=0.3
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "langstage-cli"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.5.1"
|
|
8
8
|
description = "The terminal stage for your LangGraph agent — Claude Code-style CLI for any CompiledGraph"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -25,10 +25,9 @@ classifiers = [
|
|
|
25
25
|
|
|
26
26
|
dependencies = [
|
|
27
27
|
"langgraph>=0.2.0",
|
|
28
|
-
"langgraph-stream-parser>=0.3,<0.
|
|
28
|
+
"langgraph-stream-parser>=0.3,<0.5",
|
|
29
29
|
"click>=8.0.0",
|
|
30
30
|
"python-dotenv",
|
|
31
|
-
"deepagents",
|
|
32
31
|
]
|
|
33
32
|
|
|
34
33
|
[project.optional-dependencies]
|
|
@@ -38,7 +37,13 @@ dev = [
|
|
|
38
37
|
"black>=23.0.0",
|
|
39
38
|
"ruff==0.15.15",
|
|
40
39
|
"mypy>=1.0.0",
|
|
40
|
+
# Only the bundled `examples/agent.py` (a dev sample, not shipped in the
|
|
41
|
+
# wheel) uses deepagents — the CLI itself never imports it. Keep it here so
|
|
42
|
+
# the example/tests run, but don't make every `pip install langstage-cli`
|
|
43
|
+
# pull deepagents + langchain + langgraph.
|
|
44
|
+
"deepagents>=0.3",
|
|
41
45
|
]
|
|
46
|
+
agui = ["langgraph-stream-parser[agui]>=0.4,<0.5"]
|
|
42
47
|
|
|
43
48
|
[project.scripts]
|
|
44
49
|
langstage-cli = "langstage_cli.cli:main"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|