diff --git a/agentstack/cli/cli.py b/agentstack/cli/cli.py index 34a2fe9..33bf938 100644 --- a/agentstack/cli/cli.py +++ b/agentstack/cli/cli.py @@ -315,7 +315,7 @@ def list_tools(): for tool in tools: print(f" - {tool['name']}: {tool['url']}") - print("\n\n❇️ Add a tool with: agentstack tools add ") + print("\n\n✨ Add a tool with: agentstack tools add ") except FileNotFoundError: print("Error: tools.json file not found at path:", tools_json_path) diff --git a/agentstack/main.py b/agentstack/main.py index b94c6d9..8f86d14 100644 --- a/agentstack/main.py +++ b/agentstack/main.py @@ -75,7 +75,6 @@ def main(): generate_parser.print_help() elif args.command in ['tools', 't']: if args.tools_command in ['list', 'l']: - print('list') list_tools() elif args.tools_command in ['add', 'a']: generation.add_tool(args.name)