mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-16 11:03:48 +00:00
- Add dotenv loader for NODE_ENV=development with .env.development.example - Add factory self-hosting deployment docs - Defer agent session creation in handoff init (create on first prompt) - Fall back to mock agent when Claude/Codex credentials are missing - Replace stub mock agent launcher with real ACP JSON-RPC Node.js script - Fix React useEffect dependency array in org settings - Clean up tracked .context cache/temp files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
592 B
Text
59 lines
592 B
Text
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
target/
|
|
|
|
# Package manager
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Cache
|
|
.cache/
|
|
.astro/
|
|
*.tsbuildinfo
|
|
.turbo/
|
|
**/.turbo/
|
|
.pnpm-store/
|
|
coverage/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
!.env.development.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Rust
|
|
Cargo.lock
|
|
**/*.rs.bk
|
|
|
|
# Agent runtime directories
|
|
.agents/
|
|
.claude/
|
|
.opencode/
|
|
|
|
# Example temp files
|
|
.tmp-upload/
|
|
*.db
|
|
.sandbox-agent-factory/
|
|
.openhandoff/
|
|
|
|
# CLI binaries (downloaded during npm publish)
|
|
sdks/cli/platforms/*/bin/
|