mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
Initial scaffold for ECC 2.0, a terminal-native agentic IDE built with Ratatui. Compiles to a 3.4MB single binary. Core modules: - Session manager with SQLite-backed state store - TUI dashboard with split-pane layout (sessions, output, metrics) - Worktree orchestration (auto-create per agent session) - Observability with tool call risk scoring - Inter-agent communication via SQLite mailbox - Background daemon with heartbeat monitoring - CLI with start/stop/sessions/status/daemon subcommands Tech stack: Rust + Ratatui + Crossterm + Tokio + rusqlite + git2 + clap
94 lines
1.0 KiB
Plaintext
94 lines
1.0 KiB
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# API keys and secrets
|
|
*.key
|
|
*.pem
|
|
secrets.json
|
|
config/secrets.yml
|
|
.secrets
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
.yarn/
|
|
lerna-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
.cache/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Task files (Claude Code teams)
|
|
tasks/
|
|
|
|
# Personal configs (if any)
|
|
personal/
|
|
private/
|
|
|
|
# Session templates (not committed)
|
|
examples/sessions/*.tmp
|
|
|
|
# Local drafts
|
|
marketing/
|
|
.dmux/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
|
|
# Rust build artifacts
|
|
ecc2/target/
|
|
|
|
# Bootstrap pipeline outputs
|
|
# Generated lock files in tool subdirectories
|
|
.opencode/package-lock.json
|
|
.opencode/node_modules/
|
|
assets/images/security/badrudi-exploit.mp4
|