🎉 Git Agents v2.4 is live — Explore new multi-agent orchestration →
Explore How it works Features Categories Docs
v2.4.0 — On-chain agent registry live

Deploy autonomous AI agents.
Ship faster with Git Agents.

A decentralized marketplace to discover, fork, and deploy intelligent agents that run your workflows — autonomously, on-chain.

~/projects/my-app — zsh
git-agents init --network mainnet
Workspace initialized. Registry: 0x4a2...f8c

git-agents deploy code-reviewer --model gpt-4o --trigger pr
# Compiling agent bytecode...
Agent deployed → agent/code-reviewer@1.0.0
Listening on PR events. Cost: 0.002 GIT/run

12,400+
Agents deployed
3,800+
Active builders
$2.1M+
Agent earnings
99.9%
Uptime SLA
Trusted by engineers at
GitHub
Vercel
Stripe
Notion
Linear
Cloudflare
Datadog
HashiCorp
GitHub
Vercel
Stripe
Notion
Linear
Cloudflare
Datadog
HashiCorp
// marketplace

Trending agents

Fork battle-tested agents from the community and deploy in seconds.

2.3k
CodeReviewer Pro
Automated pull request reviews with semantic analysis, security scanning, and style enforcement across 20+ languages.
TypeScript Security CI/CD
1.8k
DataPipeline Agent
Ingests raw data from APIs, databases, and files — cleans, transforms, and loads into your data warehouse autonomously.
Python ETL Analytics
4.1k
SecureAudit
Deep smart contract and application security auditing. Finds vulnerabilities, suggests patches, and generates audit reports.
Solidity Rust Audit
987
DocGen Agent
Reads your codebase and auto-generates comprehensive documentation, README files, and API references in Markdown/HTML.
Docs LLM Markdown
1.2k
DepsUpdater
Monitors your dependencies for updates and CVEs. Auto-creates PRs with tested upgrades, changelogs, and migration notes.
npm pip cargo
3.6k
TestForge
Generates unit, integration, and e2e test suites by understanding your codebase intent. Reaches 80%+ coverage instantly.
Jest Pytest Playwright
// browse by category

Find your agent

Code Review 348
Security 214
Data & Analytics 189
Documentation 127
DevOps & CI 302
Testing 265
Dependency Mgmt 88
Customer Support 156
Slack & Comms 94
Web Scraping 201
DeFi & Trading 143
Design & UI 67
// how it works

From zero to autonomous in minutes

Git Agents abstracts away the infrastructure so you can focus on what agents actually do.

01

Discover or create an agent

Browse the marketplace or scaffold a custom agent using our CLI. Every agent is open-source and forkable.

02

Configure triggers & model

Set webhook triggers (GitHub PRs, cron jobs, API calls), choose your LLM backend, and define budget limits.

03

Deploy on-chain

Your agent's logic and permissions are registered on-chain — immutable, auditable, and autonomously funded via GIT tokens.

04

Monitor & earn

Track runs, costs, and output quality in the dashboard. Publish your agent to earn GIT every time it's used.

agent.config.ts
deploy.yml
// Git Agents config
import { defineAgent } from '@git-agents/sdk'

export default defineAgent({
  name: 'my-code-reviewer',
  model: 'claude-sonnet-4-6',
  triggers: [{
    type: 'github.pull_request',
    on: ['opened', 'synchronize'],
  }],
  budget: {
    maxPerRun: 0.05, // GIT
    monthlyLimit: 10,
  },
  instructions: `
    Review the diff for bugs,
    security issues, and style.
    Post a structured comment.
  `,
})
// platform features

Built for serious builders

On-chain registry

Every agent deployment is logged on-chain. Immutable provenance, verifiable permissions, transparent billing.

Fork & remix

Every agent is open-source. One-click fork any community agent, customize it, and publish your version.

Any LLM backend

Claude, GPT-4o, Gemini, Llama — swap models per agent without rewriting logic.

Event-driven triggers

GitHub webhooks, Slack commands, cron schedules, REST APIs, or on-chain events — connect anything.

Budget controls

Hard spending caps per run and per month. Agents never exceed your limits without explicit approval.

Earn while you sleep

Publish agents to the marketplace and earn GIT tokens every time someone runs your agent.

// what builders say

Loved by developers

We replaced 3 separate bots with one Git Agent. Code review latency dropped from 45 minutes to under 60 seconds on every PR. The on-chain audit trail was a huge win for our compliance team.

SL
Sofia Larsson
Staff Engineer · Fintech startup, Stockholm

I published my DataPipeline agent on a Sunday. By Tuesday it had 200 runs and I'd earned enough GIT to cover my cloud bill for the month. The marketplace distribution is insane.

MO
Marcus Obi
Indie developer · Lagos

Security auditing used to take us 2 weeks per release. SecureAudit runs on every commit now. We caught a reentrancy bug in staging that would've been catastrophic on mainnet. Worth every token.

AK
Ayesha Khan
Lead Blockchain Dev · DeFi protocol
// pricing

Simple, usage-based pricing

Pay for what you run. No seats, no tiers of features hidden behind paywalls.

Hobbyist
$0 / month

Perfect for side projects and exploring the platform.

  • 5 active agents
  • 500 runs / month
  • Community marketplace access
  • Basic analytics
  • No earnings from marketplace
  • No SLA guarantee
Team
$99 / month

For teams deploying agents at scale with shared governance.

  • Everything in Builder
  • Unlimited runs
  • Team workspaces + RBAC
  • Private agent registry
  • Audit logs + compliance export
  • Dedicated Slack support
// get started

Your first agent in under 5 minutes

No credit card. No config hell. Just deploy.

npm install -g @git-agents/cli && git-agents init