ldclabs /
anda
🤖 An AI agent framework built with Rust.
87/100 healthLoading repository data…
tang-vu / repository
Autonomous AI agent that contributes to open source — discovers repos, analyzes code, generates fixes, and submits PRs
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Autonomous AI agent that discovers, analyzes, and submitsPull Requests to open source projects on GitHub.
Getting Started · Features · Commands · Architecture · Hall of Fame
Set it up once. Wake up to merged PRs.
| Metric | |
|---|---|
| PRs Submitted | 44+ |
| PRs Merged | 10 |
| Repos Contributed | 21+ |
| Languages Analyzed | 13 |
Notable Contributions:
🌍 Worldmonitor — 45k ⭐ · 3 merged
🕵️ Maigret — 19k ⭐ · 3 merged
🤖 AI-Research-SKILLs — 6k ⭐ · 1 merged
📊 s-tui — 5k ⭐ · 1 merged
🔍 HolmesGPT — 2k ⭐ · 1 merged
See the full Hall of Fame → for every PR with links.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Discovery │────▶│ Analysis │────▶│ Generator │────▶│ PR + CI │────▶│ Patrol │
│ │ │ │ │ │ │ │ │ │
│ Search repos│ │ 13-lang AST │ │ LLM-powered │ │ Fork, commit│ │ Auto-fix │
│ by language │ │ 27 skills │ │ code gen + │ │ create PR │ │ review │
│ and stars │ │ security, │ │ self-review │ │ sign CLA │ │ feedback │
│ │ │ quality, │ │ + scoring │ │ monitor CI │ │ & reply │
│ │ │ performance │ │ │ │ │ │ │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
# Build from source (recommended)
git clone https://github.com/tang-vu/ContribAI.git && cd ContribAI
cargo install --path crates/contribai-rs
# Or one-line install
curl -fsSL https://raw.githubusercontent.com/tang-vu/ContribAI/main/install.sh | bash
# Windows:
irm https://raw.githubusercontent.com/tang-vu/ContribAI/main/install.ps1 | iex
contribai init # Interactive setup wizard
contribai login # Verify auth + switch LLM providers
contribai hunt # Autonomous: discover → analyze → PR
contribai target <repo_url> # Target a specific repo
contribai analyze <repo_url> # Dry-run analysis (no PRs)
contribai interactive # Browse in ratatui TUI
github:
token: "ghp_your_token" # or set GITHUB_TOKEN env var
llm:
provider: "gemini" # gemini | openai | anthropic | ollama | vertex
model: "gemini-3-flash-preview"
api_key: "your_api_key" # or set GEMINI_API_KEY env var
# base_url: "https://api.openai.com/v1" # Optional: override default endpoint for OpenAI-compatible providers
discovery:
languages: # default: all 15 languages
- python
- javascript
- typescript
- go
- rust
stars_range: [100, 5000]
See config.yaml.template for all options.
:8787| Deep AST (tree-sitter) | Fallback Parser |
|---|---|
| Python · JavaScript · TypeScript · Go · Rust · Java | Kotlin → Java |
| C · C++ · Ruby · PHP · C# · HTML · CSS | Swift → Java · Vue/Svelte → HTML |
ContribAI ships with 40+ commands accessible via CLI or interactive menu.
contribai hunt # Autonomous discovery + PRs
contribai hunt --dry-run # Analyze only, no PRs
contribai run # Single pipeline run
contribai target <url> # Target specific repo
contribai analyze <url> # Dry-run analysis
contribai solve <url> # Solve open issues
contribai patrol # Respond to PR reviews
contribai status # PR status table
contribai stats # Contribution statistics
contribai leaderboard # Merge rate by repo
contribai system-status # DB, rate limits, scheduler
contribai # Interactive menu (22 items)
contribai interactive # ratatui TUI browser
contribai init # Setup wizard
contribai login # Interactive auth + provider config
contribai config-list # Show all config
contribai config-get llm.provider # Get config value
contribai config-set llm.provider openai # Set config value
contribai profile security-focused # Named profile
contribai web-server # Dashboard at :8787
contribai schedule # Cron scheduler
contribai mcp-server # MCP stdio server
contribai cleanup # Remove stale forks
contribai notify-test # Test Slack/Discord/Telegram
ContribAI/
├── crates/contribai-rs/src/ ← Rust v6.8.0 (primary)
│ ├── cli/ 40+ commands + ratatui TUI
│ ├── core/ Config, events, error types
│ ├── github/ REST v3 + GraphQL client
│ ├── analysis/ 13-lang AST + 27 skills
│ ├── generator/ LLM code generation + scoring
│ ├── orchestrator/ Pipeline + SQLite memory (72h TTL)
│ ├── llm/ Multi-provider + 5 sub-agents
│ ├── pr/ PR lifecycle + patrol + CI
│ ├── mcp/ 21-tool MCP server (stdio)
│ ├── web/ axum dashboard + webhooks
│ ├── sandbox/ Docker + local fallback
│ └── tools/ Tool protocol interface
│
└── python/ Legacy v4.1.0 (reference only)
| Layer | Technology |
|---|---|
| Language | Rust 2021 (primary), Python 3.11+ (legacy) |
| Async | Tokio (full), async/await throughout |
| HTTP | reqwest 0.12 (async, rustls-tls) |
| Database | SQLite (rusqlite, bundled) |
| LLM | Gemini 3.x, OpenAI, Anthropic, Ollama, Vertex AI |
| GitHub | REST API v3 + GraphQL |
| AST | tree-sitter (13 languages) |
| Web | axum 0.7 + tower-http |
| TUI | ratatui + crossterm |
| CLI | clap v4 + dialoguer + colored |
| Tests | 602 tests (mockall, wiremock, tokio-test, criterion) |
See docs/system-architecture.md for the full design.
cargo test # Run all 602 tests
cargo test -- --nocapture # With stdout output
cargo test ast_intel # AST module tests only
cargo clippy # Lint check
Use ContribAI as a tool provider for Claude Desktop or Antigravity IDE:
{
"mcpServers": {
"contribai": {
"command": "contribai",
"args": ["mcp-server"]
}
}
}
21 tools available: repo analysis, PR management, GitHub search, issue solving, memory queries, and more.
docker compose up -d dashboard # Dashboard at :8787
docker compose run --rm runner run # One-shot pipeline run
docker compose up -d dashboard scheduler # Dashboard + cron scheduler
| Document | Description |
|---|---|
| Hall of Fame | 10 merged · 14 closed across 21+ repos |
| AGENTS.md | AI agent guide — architecture, patterns, CLI reference |
| Deployment Guide | Install, Docker, config, all 22 CLI commands |
| System Architecture | Pipeline, middleware, events, LLM routing |
| Codebase Summary | Module map, tech stack, data structures |
| Project Roadmap | Version history and future plans |
AGPL-3.0 + Commons Clause — see LICENSE for details.
Built with Rust 🦀 and LLMs 🤖
Selected from shared topics, language and repository description—not editorial ratings.
ldclabs /
🤖 An AI agent framework built with Rust.
87/100 healthmezmo /
AURA is an agentic harness that turns an LLM model into a reliable, autonomous service capable of executing real SRE work. AURA provides the guardrails, API servers, state management, authentication, streaming, error handling, and tool integrations necessary to run AI SRE agents safely in production.
74/100 healthcardea-mcp /
Enable AI agents to create and execute their own tools in Rust autonomously. Available as web API and MCP services
yantrikos /
Cognitive memory engine for AI agents — temporal decay, contradiction detection, autonomous consolidation, knowledge graph, ANN recall via HNSW. Embeddable Rust library with Python bindings; powers yantrikdb-server (HTTP gateway, MCP server, openraft cluster). AGPL.
71/100 health0xMerl99 /
The open world for autonomous AI agents on Solana Trade. Build. Fight. Earn. Explore. Connect your AI agent to a persistent shared world. Trade real SOL, build structures, form guilds, fight for territory, complete bounties, gather resources across 7 biomes. Not a simulation — everything is real.
72/100 healthsfr-development /
AI-Powered Offensive Security Research Engine - desktop-native security testing platform with native MCP integration. 90 tools, MITM proxy, stealth browser, autonomous AI agent. Built on Tauri + Rust + React.
70/100 health