You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for generic AI agents with customizable command directories
- Introduced `--ai generic` option for unsupported agents, allowing users to specify their own command directories.
- Updated documentation and examples to reflect the new generic agent support.
- Enhanced scripts and workflows to accommodate the new agent type.
project_name: str=typer.Argument(None, help="Name for your new project directory (optional if using --here, or use '.' for current directory)"),
1191
-
ai_assistant: str=typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, amp, shai, q, agy, bob, or qoder "),
1197
+
ai_assistant: str=typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, amp, shai, q, agy, bob, qoder, or generic (requires --ai-commands-dir)"),
1198
+
ai_commands_dir: str=typer.Option(None, "--ai-commands-dir", help="Directory for agent command files (required with --ai generic, e.g. .myagent/commands/)"),
1192
1199
script_type: str=typer.Option(None, "--script", help="Script type to use: sh or ps"),
1193
1200
ignore_agent_tools: bool=typer.Option(False, "--ignore-agent-tools", help="Skip checks for AI agent tools like Claude Code"),
0 commit comments