Files
AutoMetabuilder/backend/autometabuilder/workflow/plugin_map.json
johndoe6345789 877ba64de8 Introduce AutoMetabuilder core components and workflow packages:
- Implement core components: CLI argument parsing, environment loading, GitHub service creation, and logging configuration.
- Add support for OpenAI client setup and model resolution.
- Develop SDLC context loader from GitHub and repository files.
- Implement workflow context and engine builders.
- Introduce major workflow packages: `game_tick_loop` and `contextual_iterative_loop`.
- Update localization files with new package descriptions and labels.
- Streamline web navigation by loading items from a dedicated JSON file.
2026-01-10 00:45:46 +00:00

21 lines
1.5 KiB
JSON

{
"core.load_context": "autometabuilder.workflow.plugins.core_load_context.run",
"core.seed_messages": "autometabuilder.workflow.plugins.core_seed_messages.run",
"core.append_context_message": "autometabuilder.workflow.plugins.core_append_context_message.run",
"core.append_user_instruction": "autometabuilder.workflow.plugins.core_append_user_instruction.run",
"core.ai_request": "autometabuilder.workflow.plugins.core_ai_request.run",
"core.run_tool_calls": "autometabuilder.workflow.plugins.core_run_tool_calls.run",
"core.append_tool_results": "autometabuilder.workflow.plugins.core_append_tool_results.run",
"tools.list_files": "autometabuilder.workflow.plugins.tools_list_files.run",
"tools.read_file": "autometabuilder.workflow.plugins.tools_read_file.run",
"tools.run_tests": "autometabuilder.workflow.plugins.tools_run_tests.run",
"tools.run_lint": "autometabuilder.workflow.plugins.tools_run_lint.run",
"tools.create_branch": "autometabuilder.workflow.plugins.tools_create_branch.run",
"tools.create_pull_request": "autometabuilder.workflow.plugins.tools_create_pull_request.run",
"utils.filter_list": "autometabuilder.workflow.plugins.utils_filter_list.run",
"utils.map_list": "autometabuilder.workflow.plugins.utils_map_list.run",
"utils.reduce_list": "autometabuilder.workflow.plugins.utils_reduce_list.run",
"utils.branch_condition": "autometabuilder.workflow.plugins.utils_branch_condition.run",
"utils.not": "autometabuilder.workflow.plugins.utils_not.run"
}