Skip to content

Commit a9f95e0

Browse files
committed
exposed agent-tide-cli as script
1 parent aebf0c9 commit a9f95e0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ visualization = [
5050
[project.scripts]
5151
codetide-mcp-server = "codetide.mcp.server:serve"
5252
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
53+
agent-tide-step = "codetide.agents.tide.cli_step:main"
54+
agent-tide = "codetide.agents.tide.cli:main"
55+
# agent-tide-step and agent-tide require the [agents] extra: pip install codetide[agents] or to execute uvx --from codetide[agents] agent-tide-step -h
5556

5657
[project.urls]
5758
Homepage = "https://github.com/BrunoV21/CodeTide"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"codetide-mcp-server=codetide.mcp.server:serve",
2929
"codetide-cli=codetide.cli:main",
3030
# 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"
31+
"agent-tide-step=codetide.agents.tide.cli_step:main",
32+
"agent-tide=codetide.agents.tide.cli:main"
3233
]
3334
},
3435
classifiers=[

0 commit comments

Comments
 (0)