Skip to content

Commit b5e7082

Browse files
committed
exposed Agent Tide step cli as script
1 parent ee1ed3f commit b5e7082

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies = [
3939
agents = [
4040
"core-for-ai>=0.1.98",
4141
"prompt_toolkit==3.0.50",
42+
# Required for the agent-tide-step CLI entry point
4243
]
4344
visualization = [
4445
"networkx==3.4.2",
@@ -49,6 +50,8 @@ visualization = [
4950
[project.scripts]
5051
codetide-mcp-server = "codetide.mcp.server:serve"
5152
codetide-cli = "codetide.cli:main"
53+
agent-tide-step = "codetide.agents.tide.cli:main"
54+
# agent-tide-step requires the [agents] extra: pip install codetide[agents] or to execute uvx --from codetide[agents] agent-tide-step -h
5255

5356
[project.urls]
5457
Homepage = "https://github.com/BrunoV21/CodeTide"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
entry_points={
2727
"console_scripts": [
2828
"codetide-mcp-server=codetide.mcp.server:serve",
29-
"codetide-cli=codetide.cli:main"
29+
"codetide-cli=codetide.cli:main",
30+
# agent-tide-step requires the [agents] extra: pip install codetide[agents] or to execute uvx --from codetide[agents] agent-tide-step -h
31+
"agent-tide-step=codetide.agents.tide.cli:main"
3032
]
3133
},
3234
classifiers=[

0 commit comments

Comments
 (0)