# ADL Kiro Baseline - gitignore
# Installer for Kiro IDE configuration management

### Temporary Files ###
*.tmp
*.bak
*.swp
*~
*.orig

# Git merge conflicts
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*

### IDE ###
# VS Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/

# JetBrains IDEs
.idea/
*.iml
*.iws
out/

### Operating Systems ###
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Linux
.directory
.Trash-*
.nfs*
.fuse_hidden*

# Windows
Thumbs.db
ehthumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/
*.lnk

### Testing ###
# bats test artifacts
test-results/
*.test.log

### Chezmoi ###
# Local chezmoi state (not the source directory)
.chezmoi/

### Python ###
__pycache__/
*.pyc

### Project Specific ###
# Local development overrides
local.env
.env.local

# Engram local persistence
.engram/

# Smoke test artifacts
smoke-test-*.log

# Manual release artifacts
dist/

# Local binaries
/akima

# CLI test artifacts
internal/cli/installed.json
