Add comprehensive workflow commands for AI-assisted development: - Claude commands: analyze, clarify, plan - Kilocode workflows: full feature development lifecycle - Opencode commands: specification and implementation workflows - Roo MCP configuration for tool integration Update .gitignore to exclude .astro build cache directories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
506 B
Plaintext
45 lines
506 B
Plaintext
# Dependencies
|
|
/node_modules
|
|
**/node_modules
|
|
|
|
# Build output
|
|
/dist
|
|
/build
|
|
**/.astro
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.dev.vars
|
|
|
|
# IDE and editor directories
|
|
.idea/
|
|
.vscode/
|
|
|
|
# OS-generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
|
|
# AI and tool directories
|
|
.codex/
|
|
.gemini/
|
|
.turbo/
|
|
.wrangler/
|
|
|
|
# OS-generated files in subdirs
|
|
**/.DS_Store
|