.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

…/nth5693/gemini-kit
home/mcp-servers/nth5693/gemini-kit
nth5693 avatar

gemini-kit

bynth5693· 1 MCP server

Stars

371

Forks

33

Category

AI Agents & MCP

View on GitHub

TL;DR

Gemini-Kit is an extension for Gemini CLI that brings 27 specialized AI agents, 45 commands, and 33 workflows to help you code 10x faster.

How to install gemini-kit?

nth5693/gemini-kit
$git clone https://github.com/nth5693/gemini-kit

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1# 🚀 Gemini-Kit
2 
3<div align="center">
4 
5[![Version](https://img.shields.io/badge/version-4.0.0-blue.svg)](https://github.com/nth5693/gemini-kit/releases)
6[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
7[![Tests](https://img.shields.io/badge/tests-291%20passed-brightgreen.svg)]()
8[![Agents](https://img.shields.io/badge/AI%20Agents-27-purple.svg)]()
9[![Skills](https://img.shields.io/badge/Skills-15-orange.svg)]()
10[![Commands](https://img.shields.io/badge/Commands-45-yellow.svg)]()
11[![Workflows](https://img.shields.io/badge/Workflows-33-cyan.svg)]()
12 
13### 🎯 Transform Your Terminal into an AI Engineering Team
14 
15**Gemini-Kit** is an extension for [Gemini CLI](https://github.com/google-gemini/gemini-cli) that brings **27 specialized AI agents**, **45 commands**, and **33 workflows** to help you code 10x faster.
16 
17[🚀 Quick Start](#-quick-start) • [🤖 Agents](#-agents) • [🛠️ Skills](#️-skills) • [⌨️ Commands](#️-commands) • [📚 API](docs/API.md)
18 
19</div>
20 
21---
22 
23## 📋 Table of Contents
24 
25- [What is Gemini-Kit?](#-what-is-gemini-kit)
26- [Quick Start](#-quick-start)
27- [Agents](#-agents)
28- [Skills](#️-skills)
29- [Commands](#️-commands)
30- [MCP Tools](#-mcp-tools)
31- [Security](#-security)
32- [FAQ](#-faq)
33 
34---
35 
36## 🤔 What is Gemini-Kit?
37 
38**Gemini-Kit** transforms Gemini CLI into a **virtual engineering team** with:
39 
40| Feature | Count | Description |
41|---------|-------|-------------|
42| 🤖 **AI Agents** | 27 | Specialized roles (Security, Frontend, Backend, DevOps...) |
43| 🛠️ **Skills** | 15 | Knowledge modules (React, Next.js, Docker, Security...) |
44| ⌨️ **Commands** | 45 | Slash commands for every workflow |
45| 🔄 **Workflows** | 33 | Structured development workflows |
46| 🔒 **Security** | 30+ | Secret detection patterns |
47| 📜 **Scripts** | 50+ | Automation scripts |
48 
49### Key Features
50 
51- **🔄 Compound System**: `/explore → /plan → /work → /review → /compound` - Each iteration builds a Knowledge Base. Solutions are saved and reused!
52- **🧠 Learning System**: AI learns from your feedback. Correct once, it remembers forever
53- **📚 23 Critical Patterns**: Common mistakes documented as patterns - AI reads them before coding
54- **🎯 Multi-agent Orchestration**: Orchestrator coordinates multiple agents for complex tasks
55- **💾 Auto-checkpoint**: Automatic Git backup before changes
56- **🔒 Security Hooks**: Real-time blocking of secrets (30+ patterns)
57- **📢 Notifications**: Discord & Telegram integration
58 
59---
60 
61## 🚀 Quick Start
62 
63### Prerequisites
64 
65| Requirement | Version | Check |
66|-------------|---------|-------|
67| Node.js | ≥ 18.0 | `node --version` |
68| Git | ≥ 2.0 | `git --version` |
69| Gemini CLI | Latest | `gemini --version` |
70 
71### Installation (2 minutes)
72 
73```bash
74# 1. Clone repository
75git clone https://github.com/nth5693/gemini-kit.git ~/.gemini/extensions/gemini-kit
76 
77# 2. Install & build
78cd ~/.gemini/extensions/gemini-kit
79npm install && npm run build
80 
81# 3. Link extension
82gemini extensions link $(pwd)
83```
84 
85### First Run
86 
87```bash
88# Go to your project
89cd /path/to/your/project
90 
91# Start Gemini CLI
92gemini
93 
94# Try these commands:
95> /status # Check project status
96> /explore React # Research a topic
97> /plan Add auth # Create implementation plan
98```
99 
100### Update
101 
102```bash
103cd ~/.gemini/extensions/gemini-kit
104git pull && npm install && npm run build
105```
106 
107---
108 
109## 🤖 Agents
110 
111### 27 Specialized AI Agents
112 
113#### Core Development (5)
114 
115| Agent | Role | When to Use |
116|-------|------|-------------|
117| 📋 **Planner** | Create detailed plans | Starting new features |
118| 🔍 **Scout** | Explore codebase | New projects, onboarding |
119| 💻 **Coder** | Write clean code | Implementing features |
120| 🧪 **Tester** | Write & run tests | Quality assurance |
121| 👀 **Reviewer** | Code review | Before merging PRs |
122 
123#### Specialists (12) - NEW in v4.0
124 
125| Agent | Role | When to Use |
126|-------|------|-------------|
127| 🔐 **Security Auditor** | Security audit, OWASP | Security reviews |
128| ⚛️ **Frontend Specialist** | React, Next.js, UI/UX | Frontend developm

Preview

nth5693/gemini-kitnth5693/gemini-kit

# 🚀 Gemini-Kit

[![Version](https://img.shields.io/badge/version-4.0.0-blue.svg)](https://github.com/nth5693/gemini-kit/releases)

[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)

Reponth5693/gemini-kit
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedMar 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPai-agentscoding-assistant

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