CLI install command fails with argument parsing errors #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The
kaizen-agentic installcommand fails with argument parsing errors when attempting to install agents, preventing the basic functionality of adding agents to a project.Environment
Expected Behavior
The command
kaizen-agentic install tddai-assistantshould successfully install the tddai-assistant agent into the current project directory.Actual Behavior
The command fails with argument parsing errors despite the help text indicating it should accept AGENTS... as arguments.
Steps to Reproduce
kaizen-agentic install tddai-assistantError Output
Analysis
The CLI appears to have routing issues where the install subcommand is not properly receiving its arguments. The argument parsing seems to be falling back to the main command parser instead of the install subcommand parser.
Impact
This prevents the basic installation of agents, blocking the primary workflow of the kaizen-agentic framework for existing projects.
Priority
High - blocks core functionality of the framework.