mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 06:12:06 +00:00
feat: Add GitHub Actions CI for PR protection
- Add CI workflow with Python (ruff lint, security tests) and UI (ESLint, TypeScript, build) jobs - Add ruff, mypy, pytest to requirements.txt - Add pyproject.toml with ruff configuration - Fix import sorting across Python files (ruff --fix) - Fix test_security.py expectations to match actual security policy - Remove invalid 'eof' command from ALLOWED_COMMANDS 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
12
start.py
12
start.py
@@ -9,19 +9,19 @@ Supports two paths for new projects:
|
||||
"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
import subprocess
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
from prompts import (
|
||||
scaffold_project_prompts,
|
||||
has_project_prompts,
|
||||
get_project_prompts_dir,
|
||||
has_project_prompts,
|
||||
scaffold_project_prompts,
|
||||
)
|
||||
from registry import (
|
||||
register_project,
|
||||
get_project_path,
|
||||
list_registered_projects,
|
||||
register_project,
|
||||
)
|
||||
|
||||
|
||||
@@ -256,9 +256,9 @@ def run_manual_spec_flow(project_dir: Path) -> bool:
|
||||
print(" Manual Specification Setup")
|
||||
print("-" * 50)
|
||||
print("\nTemplate files have been created. Edit these files in your editor:")
|
||||
print(f"\n Required:")
|
||||
print("\n Required:")
|
||||
print(f" {prompts_dir / 'app_spec.txt'}")
|
||||
print(f"\n Optional (customize agent behavior):")
|
||||
print("\n Optional (customize agent behavior):")
|
||||
print(f" {prompts_dir / 'initializer_prompt.md'}")
|
||||
print(f" {prompts_dir / 'coding_prompt.md'}")
|
||||
print("\n" + "-" * 50)
|
||||
|
||||
Reference in New Issue
Block a user