langstage-cli 0.4.0__tar.gz → 0.5.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.
Files changed (19) hide show
  1. {langstage_cli-0.4.0/langstage_cli.egg-info → langstage_cli-0.5.0}/PKG-INFO +15 -2
  2. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/README.md +11 -0
  3. {langstage_cli-0.4.0 → langstage_cli-0.5.0/langstage_cli.egg-info}/PKG-INFO +15 -2
  4. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli.egg-info/requires.txt +4 -1
  5. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/pyproject.toml +3 -2
  6. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/LICENSE +0 -0
  7. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/deepagent_code/__init__.py +0 -0
  8. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli/__init__.py +0 -0
  9. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli/cli.py +0 -0
  10. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli/config.py +0 -0
  11. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli.egg-info/SOURCES.txt +0 -0
  12. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli.egg-info/dependency_links.txt +0 -0
  13. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli.egg-info/entry_points.txt +0 -0
  14. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/langstage_cli.egg-info/top_level.txt +0 -0
  15. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/setup.cfg +0 -0
  16. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/tests/test_cli.py +0 -0
  17. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/tests/test_codeconfig.py +0 -0
  18. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/tests/test_config.py +0 -0
  19. {langstage_cli-0.4.0 → langstage_cli-0.5.0}/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.4.0
3
+ Version: 0.5.0
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,7 +19,7 @@ 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.4,>=0.3
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
25
  Requires-Dist: deepagents
@@ -29,6 +29,8 @@ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
29
29
  Requires-Dist: black>=23.0.0; extra == "dev"
30
30
  Requires-Dist: ruff==0.15.15; extra == "dev"
31
31
  Requires-Dist: mypy>=1.0.0; 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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langstage-cli
3
- Version: 0.4.0
3
+ Version: 0.5.0
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,7 +19,7 @@ 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.4,>=0.3
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
25
  Requires-Dist: deepagents
@@ -29,6 +29,8 @@ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
29
29
  Requires-Dist: black>=23.0.0; extra == "dev"
30
30
  Requires-Dist: ruff==0.15.15; extra == "dev"
31
31
  Requires-Dist: mypy>=1.0.0; 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,9 +1,12 @@
1
1
  langgraph>=0.2.0
2
- langgraph-stream-parser<0.4,>=0.3
2
+ langgraph-stream-parser<0.5,>=0.3
3
3
  click>=8.0.0
4
4
  python-dotenv
5
5
  deepagents
6
6
 
7
+ [agui]
8
+ langgraph-stream-parser[agui]<0.5,>=0.4
9
+
7
10
  [dev]
8
11
  pytest>=7.0.0
9
12
  pytest-asyncio>=0.21.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "langstage-cli"
7
- version = "0.4.0"
7
+ version = "0.5.0"
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,7 +25,7 @@ classifiers = [
25
25
 
26
26
  dependencies = [
27
27
  "langgraph>=0.2.0",
28
- "langgraph-stream-parser>=0.3,<0.4",
28
+ "langgraph-stream-parser>=0.3,<0.5",
29
29
  "click>=8.0.0",
30
30
  "python-dotenv",
31
31
  "deepagents",
@@ -39,6 +39,7 @@ dev = [
39
39
  "ruff==0.15.15",
40
40
  "mypy>=1.0.0",
41
41
  ]
42
+ agui = ["langgraph-stream-parser[agui]>=0.4,<0.5"]
42
43
 
43
44
  [project.scripts]
44
45
  langstage-cli = "langstage_cli.cli:main"
File without changes
File without changes