* docs * updates * Fix: The handleCopy function fails to handle errors from navigator.clipboard.writeText(), causing unhandled exceptions and misleading UI feedback when clipboard operations fail. Co-authored-by: ctate <chris@ctate.dev> * Fix: The benchmark file uses emojis (📊, 🚀, 🔨, 📈, 📋, ✅, ⏱️, ⚠) in console output, violating repository guidelines that forbid emojis in code and output. Co-authored-by: ctate <chris@ctate.dev> * Remove benchmark/run.ts from PR --------- Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com>
51 lines
533 B
Plaintext
51 lines
533 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
|
|
# Native binaries (keep the launcher scripts)
|
|
bin/agent-browser-*
|
|
!bin/agent-browser
|
|
!bin/agent-browser.cmd
|
|
|
|
# Rust build artifacts
|
|
cli/target/
|
|
cli/*.o
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test artifacts
|
|
*.png
|
|
*.jpeg
|
|
*.jpg
|
|
|
|
# Package manager
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# opensrc - source code for packages
|
|
opensrc/
|
|
|
|
# Docs site
|
|
docs/node_modules/
|
|
docs/.next/
|
|
docs/out/
|
|
docs/package-lock.json
|