mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
- Created var plugin directory with get, set, delete, exists plugins - Created test plugin directory with assert_equals, assert_true, assert_false, assert_exists, run_suite plugins - Updated plugin_map.json to register all new plugins (90 total plugins now) - Created 5 test packages: logic_plugins_test, math_plugins_test, string_plugins_test, list_plugins_test, dict_plugins_test - Added comprehensive unit tests for all new plugins - Updated documentation with test plugin information - All tests passing (16 workflow plugin tests + 11 unit testing plugin tests) Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
91 lines
7.1 KiB
JSON
91 lines
7.1 KiB
JSON
{
|
|
"backend.build_tool_map": "autometabuilder.workflow.plugins.backend.backend_build_tool_map.run",
|
|
"backend.create_github": "autometabuilder.workflow.plugins.backend.backend_create_github.run",
|
|
"backend.create_openai": "autometabuilder.workflow.plugins.backend.backend_create_openai.run",
|
|
"backend.load_env": "autometabuilder.workflow.plugins.backend.backend_load_env.run",
|
|
"backend.load_messages": "autometabuilder.workflow.plugins.backend.backend_load_messages.run",
|
|
"backend.load_metadata": "autometabuilder.workflow.plugins.backend.backend_load_metadata.run",
|
|
"backend.load_plugins": "autometabuilder.workflow.plugins.backend.backend_load_plugins.run",
|
|
"backend.load_prompt": "autometabuilder.workflow.plugins.backend.backend_load_prompt.run",
|
|
"backend.load_tool_registry": "autometabuilder.workflow.plugins.backend.backend_load_tool_registry.run",
|
|
"backend.load_tools": "autometabuilder.workflow.plugins.backend.backend_load_tools.run",
|
|
"backend.parse_cli_args": "autometabuilder.workflow.plugins.backend.backend_parse_cli_args.run",
|
|
"control.switch": "autometabuilder.workflow.plugins.control.control_switch.run",
|
|
"convert.parse_json": "autometabuilder.workflow.plugins.convert.convert_parse_json.run",
|
|
"convert.to_boolean": "autometabuilder.workflow.plugins.convert.convert_to_boolean.run",
|
|
"convert.to_dict": "autometabuilder.workflow.plugins.convert.convert_to_dict.run",
|
|
"convert.to_json": "autometabuilder.workflow.plugins.convert.convert_to_json.run",
|
|
"convert.to_list": "autometabuilder.workflow.plugins.convert.convert_to_list.run",
|
|
"convert.to_number": "autometabuilder.workflow.plugins.convert.convert_to_number.run",
|
|
"convert.to_string": "autometabuilder.workflow.plugins.convert.convert_to_string.run",
|
|
"core.ai_request": "autometabuilder.workflow.plugins.core.core_ai_request.run",
|
|
"core.append_context_message": "autometabuilder.workflow.plugins.core.core_append_context_message.run",
|
|
"core.append_tool_results": "autometabuilder.workflow.plugins.core.core_append_tool_results.run",
|
|
"core.append_user_instruction": "autometabuilder.workflow.plugins.core.core_append_user_instruction.run",
|
|
"core.load_context": "autometabuilder.workflow.plugins.core.core_load_context.run",
|
|
"core.run_tool_calls": "autometabuilder.workflow.plugins.core.core_run_tool_calls.run",
|
|
"core.seed_messages": "autometabuilder.workflow.plugins.core.core_seed_messages.run",
|
|
"dict.get": "autometabuilder.workflow.plugins.dict.dict_get.run",
|
|
"dict.items": "autometabuilder.workflow.plugins.dict.dict_items.run",
|
|
"dict.keys": "autometabuilder.workflow.plugins.dict.dict_keys.run",
|
|
"dict.merge": "autometabuilder.workflow.plugins.dict.dict_merge.run",
|
|
"dict.set": "autometabuilder.workflow.plugins.dict.dict_set.run",
|
|
"dict.values": "autometabuilder.workflow.plugins.dict.dict_values.run",
|
|
"list.concat": "autometabuilder.workflow.plugins.list.list_concat.run",
|
|
"list.every": "autometabuilder.workflow.plugins.list.list_every.run",
|
|
"list.find": "autometabuilder.workflow.plugins.list.list_find.run",
|
|
"list.length": "autometabuilder.workflow.plugins.list.list_length.run",
|
|
"list.slice": "autometabuilder.workflow.plugins.list.list_slice.run",
|
|
"list.some": "autometabuilder.workflow.plugins.list.list_some.run",
|
|
"list.sort": "autometabuilder.workflow.plugins.list.list_sort.run",
|
|
"logic.and": "autometabuilder.workflow.plugins.logic.logic_and.run",
|
|
"logic.equals": "autometabuilder.workflow.plugins.logic.logic_equals.run",
|
|
"logic.gt": "autometabuilder.workflow.plugins.logic.logic_gt.run",
|
|
"logic.gte": "autometabuilder.workflow.plugins.logic.logic_gte.run",
|
|
"logic.in": "autometabuilder.workflow.plugins.logic.logic_in.run",
|
|
"logic.lt": "autometabuilder.workflow.plugins.logic.logic_lt.run",
|
|
"logic.lte": "autometabuilder.workflow.plugins.logic.logic_lte.run",
|
|
"logic.or": "autometabuilder.workflow.plugins.logic.logic_or.run",
|
|
"logic.xor": "autometabuilder.workflow.plugins.logic.logic_xor.run",
|
|
"math.abs": "autometabuilder.workflow.plugins.math.math_abs.run",
|
|
"math.add": "autometabuilder.workflow.plugins.math.math_add.run",
|
|
"math.divide": "autometabuilder.workflow.plugins.math.math_divide.run",
|
|
"math.max": "autometabuilder.workflow.plugins.math.math_max.run",
|
|
"math.min": "autometabuilder.workflow.plugins.math.math_min.run",
|
|
"math.modulo": "autometabuilder.workflow.plugins.math.math_modulo.run",
|
|
"math.multiply": "autometabuilder.workflow.plugins.math.math_multiply.run",
|
|
"math.power": "autometabuilder.workflow.plugins.math.math_power.run",
|
|
"math.round": "autometabuilder.workflow.plugins.math.math_round.run",
|
|
"math.subtract": "autometabuilder.workflow.plugins.math.math_subtract.run",
|
|
"string.concat": "autometabuilder.workflow.plugins.string.string_concat.run",
|
|
"string.format": "autometabuilder.workflow.plugins.string.string_format.run",
|
|
"string.length": "autometabuilder.workflow.plugins.string.string_length.run",
|
|
"string.lower": "autometabuilder.workflow.plugins.string.string_lower.run",
|
|
"string.replace": "autometabuilder.workflow.plugins.string.string_replace.run",
|
|
"string.split": "autometabuilder.workflow.plugins.string.string_split.run",
|
|
"string.trim": "autometabuilder.workflow.plugins.string.string_trim.run",
|
|
"string.upper": "autometabuilder.workflow.plugins.string.string_upper.run",
|
|
"tools.create_branch": "autometabuilder.workflow.plugins.tools.tools_create_branch.run",
|
|
"tools.create_pull_request": "autometabuilder.workflow.plugins.tools.tools_create_pull_request.run",
|
|
"tools.list_files": "autometabuilder.workflow.plugins.tools.tools_list_files.run",
|
|
"tools.read_file": "autometabuilder.workflow.plugins.tools.tools_read_file.run",
|
|
"tools.run_docker": "autometabuilder.workflow.plugins.tools.tools_run_docker.run",
|
|
"tools.run_lint": "autometabuilder.workflow.plugins.tools.tools_run_lint.run",
|
|
"tools.run_tests": "autometabuilder.workflow.plugins.tools.tools_run_tests.run",
|
|
"utils.branch_condition": "autometabuilder.workflow.plugins.utils.utils_branch_condition.run",
|
|
"utils.check_mvp": "autometabuilder.workflow.plugins.utils.utils_check_mvp.run",
|
|
"utils.filter_list": "autometabuilder.workflow.plugins.utils.utils_filter_list.run",
|
|
"utils.map_list": "autometabuilder.workflow.plugins.utils.utils_map_list.run",
|
|
"utils.not": "autometabuilder.workflow.plugins.utils.utils_not.run",
|
|
"utils.reduce_list": "autometabuilder.workflow.plugins.utils.utils_reduce_list.run",
|
|
"utils.update_roadmap": "autometabuilder.workflow.plugins.utils.utils_update_roadmap.run",
|
|
"var.delete": "autometabuilder.workflow.plugins.var.var_delete.run",
|
|
"var.exists": "autometabuilder.workflow.plugins.var.var_exists.run",
|
|
"var.get": "autometabuilder.workflow.plugins.var.var_get.run",
|
|
"var.set": "autometabuilder.workflow.plugins.var.var_set.run",
|
|
"test.assert_equals": "autometabuilder.workflow.plugins.test.test_assert_equals.run",
|
|
"test.assert_true": "autometabuilder.workflow.plugins.test.test_assert_true.run",
|
|
"test.assert_false": "autometabuilder.workflow.plugins.test.test_assert_false.run",
|
|
"test.assert_exists": "autometabuilder.workflow.plugins.test.test_assert_exists.run",
|
|
"test.run_suite": "autometabuilder.workflow.plugins.test.test_run_suite.run"
|
|
} |