mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +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.
89 lines
1.9 KiB
JSON
89 lines
1.9 KiB
JSON
{
|
|
"id": "testing_triangle",
|
|
"label": "meta.workflow_packages.testing_triangle.label",
|
|
"description": "meta.workflow_packages.testing_triangle.description",
|
|
"tags": ["testing", "lint", "e2e"],
|
|
"workflow": {
|
|
"nodes": [
|
|
{
|
|
"id": "lint",
|
|
"type": "tools.run_lint",
|
|
"inputs": {
|
|
"path": "src"
|
|
},
|
|
"outputs": {
|
|
"results": "lint_results"
|
|
}
|
|
},
|
|
{
|
|
"id": "lint_failed",
|
|
"type": "utils.branch_condition",
|
|
"inputs": {
|
|
"value": "$lint_results",
|
|
"mode": "regex",
|
|
"compare": "(FAILED|ERROR)"
|
|
},
|
|
"outputs": {
|
|
"result": "lint_failed"
|
|
}
|
|
},
|
|
{
|
|
"id": "lint_ok",
|
|
"type": "utils.not",
|
|
"inputs": {
|
|
"value": "$lint_failed"
|
|
},
|
|
"outputs": {
|
|
"result": "lint_ok"
|
|
}
|
|
},
|
|
{
|
|
"id": "unit_tests",
|
|
"type": "tools.run_tests",
|
|
"when": "$lint_ok",
|
|
"inputs": {
|
|
"path": "tests"
|
|
},
|
|
"outputs": {
|
|
"results": "unit_results"
|
|
}
|
|
},
|
|
{
|
|
"id": "unit_failed",
|
|
"type": "utils.branch_condition",
|
|
"when": "$lint_ok",
|
|
"inputs": {
|
|
"value": "$unit_results",
|
|
"mode": "regex",
|
|
"compare": "(FAILED|ERROR)"
|
|
},
|
|
"outputs": {
|
|
"result": "unit_failed"
|
|
}
|
|
},
|
|
{
|
|
"id": "unit_ok",
|
|
"type": "utils.not",
|
|
"when": "$lint_ok",
|
|
"inputs": {
|
|
"value": "$unit_failed"
|
|
},
|
|
"outputs": {
|
|
"result": "unit_ok"
|
|
}
|
|
},
|
|
{
|
|
"id": "ui_tests",
|
|
"type": "tools.run_tests",
|
|
"when": "$unit_ok",
|
|
"inputs": {
|
|
"path": "tests/ui"
|
|
},
|
|
"outputs": {
|
|
"results": "ui_results"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|