mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-16 21:53:07 +00:00
* test(copilot): add edge case test for error with code field Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Changes from fix/bug-fixes-1-0 * refactor(auto-mode): enhance orphaned feature detection and improve project initialization - Updated detectOrphanedFeatures method to accept preloaded features, reducing redundant disk reads. - Improved project initialization by creating required directories and files in parallel for better performance. - Adjusted planning mode handling in UI components to clarify approval requirements for different modes. - Added refresh functionality for file editor tabs to ensure content consistency with disk state. These changes enhance performance, maintainability, and user experience across the application. * feat(orphaned-features): add orphaned features management routes and UI integration - Introduced new routes for managing orphaned features, including listing, resolving, and bulk resolving. - Updated the UI to include an Orphaned Features section in project settings and navigation. - Enhanced the execution service to support new orphaned feature functionalities. These changes improve the application's capability to handle orphaned features effectively, enhancing user experience and project management. * fix: Normalize line endings and resolve stale dirty states in file editor * chore: Update .gitignore and enhance orphaned feature handling - Added a blank line in .gitignore for better readability. - Introduced a hash to worktree paths in orphaned feature resolution to prevent conflicts. - Added validation for target branch existence during orphaned feature resolution. - Improved prompt formatting in execution service for clarity. - Enhanced error handling in project selector for project initialization failures. - Refactored orphaned features section to improve state management and UI responsiveness. These changes improve code maintainability and user experience when managing orphaned features. --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
116 lines
1.5 KiB
Plaintext
116 lines
1.5 KiB
Plaintext
#added by trueheads > will remove once supercombo adds multi-os support
|
|
launch.sh
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.turbo/
|
|
|
|
# Automaker
|
|
.automaker/images/
|
|
.automaker/
|
|
/.automaker/*
|
|
/.automaker/
|
|
|
|
.worktrees/
|
|
|
|
/logs
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# IDE/Editor configs
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Editor backup/temp files
|
|
*~
|
|
*.bak
|
|
*.backup
|
|
*.orig
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Local settings (user-specific)
|
|
*.local.json
|
|
|
|
# Application state/backup
|
|
backup.json
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
playwright-report/
|
|
blob-report/
|
|
test/**/test-project-[0-9]*/
|
|
test/opus-thinking-*/
|
|
test/agent-session-test-*/
|
|
test/feature-backlog-test-*/
|
|
test/running-task-display-test-*/
|
|
test/agent-output-modal-responsive-*/
|
|
test/fixtures/.worker-*/
|
|
test/board-bg-test-*/
|
|
test/edit-feature-test-*/
|
|
test/open-project-test-*/
|
|
|
|
|
|
# Environment files (keep .example)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
!.env.local.example
|
|
|
|
# Codex config (contains API keys)
|
|
.codex/config.toml
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Misc
|
|
*.pem
|
|
|
|
docker-compose.override.yml
|
|
.claude/docker-compose.override.yml
|
|
.claude/hans/
|
|
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
|
|
# Fork-specific workflow files (should never be committed)
|
|
DEVELOPMENT_WORKFLOW.md
|
|
check-sync.sh
|
|
# API key files
|
|
data/.api-key
|
|
data/credentials.json
|
|
data/
|
|
.codex/
|
|
|
|
# GSD planning docs (local-only)
|
|
.planning/
|
|
.mcp.json
|
|
.planning
|