.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/open-gitagent/gitagent
home/mcp-servers/open-gitagent/gitagent
open-gitagent avatar

gitagent

byopen-gitagent· 1 MCP server

Stars

627

Forks

118

Category

AI Agents & MCP

View on GitHub

TL;DR

A universal git-native multimodal always learning AI Agent (TinyHuman)

How to install gitagent?

open-gitagent/gitagent
$git clone https://github.com/open-gitagent/gitagent

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install gitagent by running `git clone https://github.com/open-gitagent/gitagent`, then use it for the current task and follow its documentation at https://github.com/open-gitagent/gitagent.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <img src="./gitagent-logo.png" alt="GitAgent Logo" width="200" />
3</p>
4 
5<p align="center">
6 <img src="https://img.shields.io/npm/v/gitagent?style=flat-square&color=blue" alt="npm version" />
7 <img src="https://img.shields.io/badge/node-%3E%3D20-brightgreen?style=flat-square" alt="node version" />
8 <img src="https://img.shields.io/github/license/open-gitagent/gitagent?style=flat-square" alt="license" />
9 <img src="https://img.shields.io/badge/TypeScript-5.7-blue?style=flat-square&logo=typescript&logoColor=white" alt="typescript" />
10</p>
11 
12<h1 align="center">Gitagent</h1>
13 
14<p align="center">
15 <strong>A universal git-native multimodal always learning AI Agent (TinyHuman)</strong><br/>
16 Your agent lives inside a git repo — identity, rules, memory, tools, and skills are all version-controlled files.
17</p>
18 
19<p align="center">
20 <a href="#one-command-install">Install</a> &bull;
21 <a href="#quick-start">Quick Start</a> &bull;
22 <a href="#sdk">SDK</a> &bull;
23 <a href="#architecture">Architecture</a> &bull;
24 <a href="#tools">Tools</a> &bull;
25 <a href="#hooks">Hooks</a> &bull;
26 <a href="#skills">Skills</a> &bull;
27 <a href="#plugins">Plugins</a>
28</p>
29 
30---
31 
32## Why Gitagent?
33 
34Most agent frameworks treat configuration as code scattered across your application. Gitagent flips this — **your agent IS a git repository**:
35 
36- **`agent.yaml`** — model, tools, runtime config
37- **`SOUL.md`** — personality and identity
38- **`RULES.md`** — behavioral constraints
39- **`memory/`** — git-committed memory with full history
40- **`tools/`** — declarative YAML tool definitions
41- **`skills/`** — composable skill modules
42- **`hooks/`** — lifecycle hooks (script or programmatic)
43 
44Fork an agent. Branch a personality. `git log` your agent's memory. Diff its rules. This is **agents as repos**.
45 
46## One-Command Install
47 
48Copy, paste, run. That's it — no cloning, no manual setup. The installer handles everything:
49 
50```bash
51bash <(curl -fsSL "https://raw.githubusercontent.com/open-gitagent/gitagent/main/install.sh?$(date +%s)")
52```
53 
54This will:
55- Install gitagent globally via npm
56- Walk you through API key setup (Quick or Advanced mode)
57- Launch the voice UI in your browser at `http://localhost:3333`
58 
59> **Requirements:** Node.js 18+, npm, git
60 
61### Or install manually:
62 
63```bash
64# Slim CLI + SDK (recommended in sandboxed/CI environments where supply-chain
65# scanners reject larger bundles)
66npm install -g @open-gitagent/gitagent
67 
68# Add voice mode + web UI (the same web UI install.sh launches at :3333)
69npm install -g @open-gitagent/voice
70```
71 
72`install.sh` installs both packages by default. Set `GITAGENT_SLIM=1` before
73the curl-bash to skip voice.
74 
75## Migrating from 1.x → 2.0
76 
77Voice mode lives in `@open-gitagent/voice` now. The reason: as a single bundle,
78the package was being blocked by some supply-chain scanners that flagged its
793,800-line `dist/voice/ui.html` and the unused `baileys` dependency. Splitting
80voice out drops the slim-core tarball from ~180 kB to ~85 kB and removes the
81scanner triggers entirely.
82 
83```bash
84# If you were on v1.x and used voice:
85npm install -g @open-gitagent/gitagent@latest @open-gitagent/voice
86 
87# If you only use the SDK / non-voice CLI:
88npm install -g @open-gitagent/gitagent@latest
89```
90 
91The `gitagent` command and `@open-gitagent/gitagent` SDK exports are unchanged.
92`gitagent --voice` dynamically loads `@open-gitagent/voice`; without it
93installed, it prints a one-line install hint and exits cleanly.
94 
95## Quick Start
96 
97**Run your first agent in one line:**
98 
99```bash
100export OPENAI_API_KEY="sk-..."
101gitagent --dir ~/my-project "Explain this project and suggest improvements"
102```
103 
104That's it. Gitagent auto-scaffolds everything on first run — `agent.yaml`, `SOUL.md`, `memory/` — and drops you into the agent.
105 
106### Local Repo Mode
107 
108Clone a GitHub repo, run an agent on it, auto-commit and push to a session branch:
109 
110```bash
111gitagent --repo https://github.com/org/repo --pat ghp_xxx "Fix the login bug"
112```
113 
114Resume an existing session:
115 
116```b

Preview

open-gitagent/gitagentopen-gitagent/gitagent
Repoopen-gitagent/gitagent
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k