+ CI/CD Commands
+
+ }
+ >
+ {/* CI/CD Commands */}
+
+
+
+
+
+ setFormData({ ...formData, test_command: e.target.value })
+ }
+ placeholder="uv run pytest"
+ />
+
- {showAdvanced && (
- <>
- {/* CI/CD Commands */}
-
-
-
-
-
- setFormData({ ...formData, test_command: e.target.value })
- }
- placeholder="uv run pytest"
- />
-
+
+
+
+
+
+ setFormData({ ...formData, lint_command: e.target.value })
+ }
+ placeholder="uv run ruff check ."
+ />
+
-
-
-
-
-
- setFormData({ ...formData, lint_command: e.target.value })
- }
- placeholder="uv run ruff check ."
- />
-
+
+
+
+
+
+ setFormData({
+ ...formData,
+ format_command: e.target.value,
+ })
+ }
+ placeholder="uv run ruff format ."
+ />
+
-
-
-
-
-
- setFormData({
- ...formData,
- format_command: e.target.value,
- })
- }
- placeholder="uv run ruff format ."
- />
-
+
+
+
+
+
+ setFormData({
+ ...formData,
+ typecheck_command: e.target.value,
+ })
+ }
+ placeholder="uv run mypy src/"
+ />
+
-
-
-
-
-
- setFormData({
- ...formData,
- typecheck_command: e.target.value,
- })
- }
- placeholder="uv run mypy src/"
- />
-
-
-
-
-
-
-
- setFormData({
- ...formData,
- build_command: e.target.value,
- })
- }
- placeholder="pnpm build"
- />
-
-
-
-
-
-
-
- setFormData({
- ...formData,
- quality_command: e.target.value,
- })
- }
- placeholder="make gate"
- />
-
- Fast pre-submit gate (lint + types + complexity, no tests)
- run in the dev's workspace at hand-off to QA.
-
-
-
-
-
-
-
-
- setFormData({
- ...formData,
- codegen_command: e.target.value,
- })
- }
- placeholder="make codegen"
- />
-
- Regenerates checked-in generated artifacts; any drift is
- committed in the task's workspace before each push.
-
-
+
+
+
+
+
+ setFormData({
+ ...formData,
+ build_command: e.target.value,
+ })
+ }
+ placeholder="pnpm build"
+ />
+
+
+
+
+
+
+ setFormData({
+ ...formData,
+ quality_command: e.target.value,
+ })
+ }
+ placeholder="make gate"
+ />
- Autonomous maintenance (CI-watch, video engine,
- dependency-update bot, sandbox DB/Redis/Mongo) is configured
- after creation, from this project's Edit Project dialog.
+ Fast pre-submit gate (lint + types + complexity, no tests) run
+ in the dev's workspace at hand-off to QA.
- >
- )}
+
+
+
+
+
+
+
+ setFormData({
+ ...formData,
+ codegen_command: e.target.value,
+ })
+ }
+ placeholder="make codegen"
+ />
+
+ Regenerates checked-in generated artifacts; any drift is
+ committed in the task's workspace before each push.
+
+
+
+
+ Autonomous maintenance (CI-watch, video engine,
+ dependency-update bot, sandbox DB/Redis/Mongo) is configured
+ after creation, from this project's Edit Project dialog.
+
+