[`agentic_crew.main`](#module-agentic_crew.main)
Main entry point for agentic-crew - Framework-Agnostic Crew Runner.
This is a generic crew runner that discovers and executes crews defined in packages’ .crew/, .crewai/, .langgraph/, or .strands/ directories.
Usage:
List all available packages with crews
Section titled “List all available packages with crews”agentic-crew list agentic-crew list –json # JSON output for external tools
# List crews in a specific packageagentic-crew list otterfall
# Run a crewagentic-crew run otterfall game_builder --input "Create a BiomeComponent"agentic-crew run otterfall game_builder --input "..." --json # JSON output
# Run with input from fileagentic-crew run otterfall game_builder --file tasks.md
# Show crew detailsagentic-crew info otterfall game_builder --jsonModule Contents
Section titled “Module Contents”Functions
Section titled “Functions”cmd_list | List available packages and crews. |
|---|---|
cmd_run | Run a specific crew or single-agent task. |
_cmd_run_single_agent | Run a task with a single-agent CLI runner. |
cmd_build | Legacy build command - runs otterfall game_builder. |
cmd_info | Show detailed info about a crew. |
cmd_list_runners | List available single-agent CLI runners. |
main | CLI entry point. |
agentic_crew.main.cmd_list(args)
Section titled “agentic_crew.main.cmd_list(args)”List available packages and crews.
agentic_crew.main.cmd_run(args)
Section titled “agentic_crew.main.cmd_run(args)”Run a specific crew or single-agent task.
agentic_crew.main._cmd_run_single_agent(args, use_json: bool, start_time: float)
Section titled “agentic_crew.main._cmd_run_single_agent(args, use_json: bool, start_time: float)”Run a task with a single-agent CLI runner.
agentic_crew.main.cmd_build(args)
Section titled “agentic_crew.main.cmd_build(args)”Legacy build command - runs otterfall game_builder.
agentic_crew.main.cmd_info(args)
Section titled “agentic_crew.main.cmd_info(args)”Show detailed info about a crew.
agentic_crew.main.cmd_list_runners(args)
Section titled “agentic_crew.main.cmd_list_runners(args)”List available single-agent CLI runners.
agentic_crew.main.main()
Section titled “agentic_crew.main.main()”CLI entry point.