We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddfe724 commit e6ef6deCopy full SHA for e6ef6de
agentstack/cli/cli.py
@@ -315,7 +315,7 @@ def list_tools():
315
for tool in tools:
316
print(f" - {tool['name']}: {tool['url']}")
317
318
- print("\n\n❇️ Add a tool with: agentstack tools add <tool_name>")
+ print("\n\n✨ Add a tool with: agentstack tools add <tool_name>")
319
320
except FileNotFoundError:
321
print("Error: tools.json file not found at path:", tools_json_path)
agentstack/main.py
@@ -75,7 +75,6 @@ def main():
75
generate_parser.print_help()
76
elif args.command in ['tools', 't']:
77
if args.tools_command in ['list', 'l']:
78
- print('list')
79
list_tools()
80
elif args.tools_command in ['add', 'a']:
81
generation.add_tool(args.name)
0 commit comments