File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ dependencies = [
3939agents = [
4040 " core-for-ai>=0.1.98" ,
4141 " prompt_toolkit==3.0.50" ,
42+ # Required for the agent-tide-step CLI entry point
4243]
4344visualization = [
4445 " networkx==3.4.2" ,
@@ -49,6 +50,8 @@ visualization = [
4950[project .scripts ]
5051codetide-mcp-server = " codetide.mcp.server:serve"
5152codetide-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 ]
5457Homepage = " https://github.com/BrunoV21/CodeTide"
Original file line number Diff line number Diff line change 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 = [
You can’t perform that action at this time.
0 commit comments