|
4 | 4 | <meta charset="utf-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
6 | 6 | <title>GitPilot — The first open-source multi-agent AI coding assistant.</title> |
7 | | - <meta name="description" content="GitPilot deploys four specialized AI agents (Explorer, Planner, Coder, Reviewer) that collaborate on every coding task. They read your repo, plan safe changes, write code, run tests, and wait for your approval. Open source, any LLM, free with Ollama." /> |
| 7 | + <meta name="description" content="GitPilot orchestrates specialized AI agents in configurable topologies (routing, ReAct + subagents, task pipelines). They read your repo, plan safe changes, write code, run tests, and wait for your approval. Open source, any LLM, free with Ollama." /> |
8 | 8 | <meta name="theme-color" content="#1C1C1F" /> |
9 | 9 |
|
10 | 10 | <!-- Open Graph --> |
11 | 11 | <meta property="og:title" content="GitPilot — Multi-Agent AI Coding Assistant" /> |
12 | | - <meta property="og:description" content="Four specialized AI agents collaborate on every task. Not a chatbot — a team. Open source, any LLM, you approve every change." /> |
| 12 | + <meta property="og:description" content="Specialized AI agents collaborate on every task in configurable topologies. Not a chatbot — a team. Open source, any LLM, you approve every change." /> |
13 | 13 | <meta property="og:type" content="website" /> |
14 | 14 | <meta property="og:url" content="https://ruslanmv.github.io/gitpilot/" /> |
15 | 15 | <meta property="og:image" content="./logo.svg" /> |
@@ -58,8 +58,8 @@ <h1 class="hero__title"> |
58 | 58 |
|
59 | 59 | <p class="hero__sub"> |
60 | 60 | Most AI coding tools are a single model guessing at your codebase. |
61 | | - GitPilot deploys <strong>four specialized agents</strong> — Explorer, Planner, Coder, Reviewer — |
62 | | - that collaborate on every task. They read your repo, draft a plan, write the code, run your tests, and |
| 61 | + GitPilot orchestrates <strong>specialized agents</strong> — Explorer, Planner, Coder, Reviewer and more — |
| 62 | + in configurable topologies that collaborate on every task. They read your repo, draft a plan, write the code, run your tests, and |
63 | 63 | <strong>wait for your approval</strong> before touching a single file. |
64 | 64 | Any LLM. Free and local with Ollama. Enterprise-ready. |
65 | 65 | </p> |
@@ -112,7 +112,7 @@ <h1 class="hero__title"> |
112 | 112 | <header class="section__head"> |
113 | 113 | <span class="eyebrow">Why multi-agent matters</span> |
114 | 114 | <h2>A single chatbot guesses. A team of agents delivers.</h2> |
115 | | - <p class="section__sub">Four specialized AI agents share context, divide work, and check each other — the same pattern elite engineering teams use, automated at machine speed.</p> |
| 115 | + <p class="section__sub">Specialized AI agents share context, divide work, and check each other — the same pattern elite engineering teams use, automated at machine speed.</p> |
116 | 116 | </header> |
117 | 117 |
|
118 | 118 | <ul class="features"> |
@@ -172,7 +172,7 @@ <h3>Local-first & private</h3> |
172 | 172 | <div class="container"> |
173 | 173 | <header class="section__head"> |
174 | 174 | <span class="eyebrow">The multi-agent pipeline</span> |
175 | | - <h2>Four agents. One mission. You stay in command.</h2> |
| 175 | + <h2>A team of agents. One mission. You stay in command.</h2> |
176 | 176 | <p class="section__sub">Each agent is a specialist. Together they do what no single model can: understand your repo deeply, plan safely, execute precisely, and catch their own mistakes.</p> |
177 | 177 | </header> |
178 | 178 |
|
@@ -212,15 +212,22 @@ <h2>Up and running in under a minute.</h2> |
212 | 212 |
|
213 | 213 | <div class="tabs" data-tabs> |
214 | 214 | <div class="tabs__list" role="tablist" aria-label="Install options"> |
215 | | - <button class="tabs__tab is-active" role="tab" aria-selected="true" data-tab="pypi">Python / CLI</button> |
| 215 | + <button class="tabs__tab is-active" role="tab" aria-selected="true" data-tab="web">Web</button> |
| 216 | + <button class="tabs__tab" role="tab" aria-selected="false" data-tab="pypi">Python / CLI</button> |
216 | 217 | <button class="tabs__tab" role="tab" aria-selected="false" data-tab="vscode">VS Code</button> |
217 | 218 | <button class="tabs__tab" role="tab" aria-selected="false" data-tab="docker">Docker</button> |
218 | 219 | <button class="tabs__tab" role="tab" aria-selected="false" data-tab="source">From source</button> |
219 | 220 | </div> |
220 | 221 |
|
221 | 222 | <div class="tabs__panels"> |
222 | | - <div class="tabs__panel is-active" role="tabpanel" data-panel="pypi"> |
223 | | - <p class="tabs__note">Fastest path. Python 3.11 or 3.12.</p> |
| 223 | + <div class="tabs__panel is-active" role="tabpanel" data-panel="web"> |
| 224 | + <p class="tabs__note">Zero install — nothing to set up. Just open the hosted app.</p> |
| 225 | + <p><a class="btn btn--primary" href="https://gitpilot.ruslanmv.com" rel="noopener">Open the web app →</a></p> |
| 226 | + <p class="tabs__hint">Runs in your browser at <a href="https://gitpilot.ruslanmv.com" rel="noopener">gitpilot.ruslanmv.com</a> — same sessions, settings and approvals as the CLI and VS Code. Nothing to install.</p> |
| 227 | + </div> |
| 228 | + |
| 229 | + <div class="tabs__panel" role="tabpanel" data-panel="pypi" hidden> |
| 230 | + <p class="tabs__note">Fastest local path. Python 3.11 or 3.12.</p> |
224 | 231 | <div class="code" data-copy> |
225 | 232 | <pre><code>pip install gitcopilot |
226 | 233 | gitpilot serve</code></pre> |
@@ -291,7 +298,7 @@ <h2>Bring your own model.</h2> |
291 | 298 | <div class="container cta__inner"> |
292 | 299 | <div> |
293 | 300 | <h2>Stop chatting with a chatbot. Start working with a team of agents.</h2> |
294 | | - <p>Open source. Apache 2.0. Four agents, any LLM, you approve every change. Your repo, your rules.</p> |
| 301 | + <p>Open source. Apache 2.0. A team of agents, any LLM, you approve every change. Your repo, your rules.</p> |
295 | 302 | </div> |
296 | 303 | <div class="cta__actions"> |
297 | 304 | <a class="btn btn--primary" href="#quickstart">Install GitPilot</a> |
|
0 commit comments