feat(devkit): add resumable workspace automation and UI review tooling
Verified with the coordinated workspace changes by devkit full run 2026-09-08T225814-186389-0000-3e3ed7cd (all seven phases passed). This shared UI pass does not mark the individual module reviews complete.
This commit is contained in:
Executable
+32
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"schema_version": 1,
|
||||
"name": "Example Python project",
|
||||
"repositories": [{"name": "app", "path": "."}],
|
||||
"checks": [
|
||||
{
|
||||
"id": "whitespace",
|
||||
"title": "Git whitespace check",
|
||||
"argv": ["git", "diff", "--check"],
|
||||
"cwd": ".",
|
||||
"repos": ["app"],
|
||||
"inputs": {"repos": ["app"]},
|
||||
"timeout_seconds": 30
|
||||
},
|
||||
{
|
||||
"id": "unit-tests",
|
||||
"title": "Python unit tests",
|
||||
"argv": ["{python}", "-m", "unittest", "discover", "-s", "tests"],
|
||||
"cwd": ".",
|
||||
"repos": ["app"],
|
||||
"inputs": {"repos": ["app"]},
|
||||
"after": ["whitespace"],
|
||||
"resources": ["test-database"],
|
||||
"timeout_seconds": 300
|
||||
}
|
||||
],
|
||||
"profiles": {
|
||||
"quick": ["whitespace", "unit-tests"],
|
||||
"backend": ["unit-tests"],
|
||||
"full": ["whitespace", "unit-tests"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user