chore: add OpenCode configuration
- Add AGENTS.md with comprehensive project rules and guidelines - Add opencode.json with model configuration (Sonnet 4.5 + Haiku 4.5) - Add .ignore to exclude build artifacts and generated files - Enable AI-assisted development with proper monorepo context
This commit is contained in:
parent
b71fe338c5
commit
c1af7a2bde
3 changed files with 247 additions and 0 deletions
31
.ignore
Normal file
31
.ignore
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Ignore patterns for OpenCode
|
||||
# These directories are excluded from search to reduce noise and improve relevance
|
||||
|
||||
# Build outputs and caches
|
||||
**/dist/**
|
||||
**/.next/**
|
||||
**/.turbo/**
|
||||
**/coverage/**
|
||||
**/.cache/**
|
||||
**/node_modules/**
|
||||
|
||||
# Generated files
|
||||
**/.DS_Store/**
|
||||
**/*.log
|
||||
**/tmp/**
|
||||
|
||||
# Lock files (unless explicitly requested)
|
||||
**/pnpm-lock.yaml
|
||||
**/package-lock.json
|
||||
**/yarn.lock
|
||||
|
||||
# Environment files
|
||||
**/.env*
|
||||
**/.envrc
|
||||
|
||||
# IDE files
|
||||
**/.vscode/**
|
||||
**/.idea/**
|
||||
|
||||
# OS files
|
||||
**/Thumbs.db
|
||||
Loading…
Add table
Add a link
Reference in a new issue