mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-25 06:15:01 +00:00
- 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.
46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"utils.branch_condition": {
|
|
"label": "meta.plugins.utils_branch_condition.label",
|
|
"inputs": {
|
|
"value": {
|
|
"label": "meta.plugins.utils_branch_condition.inputs.value.label",
|
|
"type": "text",
|
|
"default": "$reduced_output"
|
|
},
|
|
"mode": {
|
|
"label": "meta.plugins.utils_branch_condition.inputs.mode.label",
|
|
"type": "select",
|
|
"default": "is_empty",
|
|
"options": [
|
|
"is_empty",
|
|
"is_truthy",
|
|
"equals",
|
|
"not_equals",
|
|
"contains",
|
|
"regex"
|
|
],
|
|
"option_labels": [
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.is_empty",
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.is_truthy",
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.equals",
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.not_equals",
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.contains",
|
|
"meta.plugins.utils_branch_condition.inputs.mode.options.regex"
|
|
]
|
|
},
|
|
"compare": {
|
|
"label": "meta.plugins.utils_branch_condition.inputs.compare.label",
|
|
"type": "text",
|
|
"default": ""
|
|
}
|
|
},
|
|
"outputs": {
|
|
"result": {
|
|
"label": "meta.plugins.utils_branch_condition.outputs.result.label",
|
|
"type": "text",
|
|
"default": "branch_decision"
|
|
}
|
|
}
|
|
}
|
|
}
|