Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit 1bb9d6b

Browse files
jpleva91claude
andcommitted
docs: site shows all governed drivers (Crush, Claude, Copilot, Codex, Gemini)
Replace "Built-in Agents" section with "Governed Drivers" table showing all 6 drivers with commands, model source, and status (governed/coming soon). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 58829cd commit 1bb9d6b

File tree

2 files changed

+37
-19
lines changed

2 files changed

+37
-19
lines changed

cmd/shellforge/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/AgentGuardHQ/shellforge/internal/scheduler"
2020
)
2121

22-
var version = "0.3.5"
22+
var version = "0.3.6"
2323

2424
func main() {
2525
if len(os.Args) < 2 {

docs/index.html

Lines changed: 36 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -562,38 +562,56 @@ <h2 class="section-title">Where AgentGuard Lives</h2>
562562
</div>
563563
</section>
564564

565-
<!-- ─── Agents ─── -->
565+
<!-- ─── Drivers ─── -->
566566
<section class="agents-section" id="agents">
567567
<div class="container">
568-
<h2 class="section-title">Built-in Agents</h2>
569-
<p class="section-sub">Simple, deterministic, bounded. Each one does one thing well.</p>
568+
<h2 class="section-title">Governed Drivers</h2>
569+
<p class="section-sub">One governance policy. Any CLI agent. Every tool call checked.</p>
570570
<table>
571571
<thead>
572572
<tr>
573-
<th>Agent</th>
573+
<th>Driver</th>
574574
<th>Command</th>
575-
<th>Output</th>
576-
<th>Type</th>
575+
<th>Model</th>
576+
<th>Status</th>
577577
</tr>
578578
</thead>
579579
<tbody>
580580
<tr>
581-
<td><strong>qa</strong></td>
582-
<td><code>./shellforge qa</code></td>
583-
<td>Test suggestions + findings</td>
584-
<td><span class="tag tag-green">analysis</span></td>
581+
<td><strong>Crush</strong></td>
582+
<td><code>shellforge run crush</code></td>
583+
<td>Local (Ollama)</td>
584+
<td><span class="tag tag-green">governed</span></td>
585585
</tr>
586586
<tr>
587-
<td><strong>report</strong></td>
588-
<td><code>./shellforge report</code></td>
589-
<td>Markdown status report</td>
590-
<td><span class="tag tag-blue">reporting</span></td>
587+
<td><strong>Claude Code</strong></td>
588+
<td><code>shellforge run claude</code></td>
589+
<td>Claude API</td>
590+
<td><span class="tag tag-green">governed</span></td>
591591
</tr>
592592
<tr>
593-
<td><strong>agent</strong></td>
594-
<td><code>./shellforge agent</code></td>
595-
<td>Code generation + task execution</td>
596-
<td><span class="tag tag-purple">generation</span></td>
593+
<td><strong>Copilot CLI</strong></td>
594+
<td><code>shellforge run copilot</code></td>
595+
<td>GitHub Copilot</td>
596+
<td><span class="tag tag-green">governed</span></td>
597+
</tr>
598+
<tr>
599+
<td><strong>Codex CLI</strong></td>
600+
<td><code>shellforge run codex</code></td>
601+
<td>OpenAI</td>
602+
<td><span class="tag tag-blue">coming soon</span></td>
603+
</tr>
604+
<tr>
605+
<td><strong>Gemini CLI</strong></td>
606+
<td><code>shellforge run gemini</code></td>
607+
<td>Google</td>
608+
<td><span class="tag tag-blue">coming soon</span></td>
609+
</tr>
610+
<tr>
611+
<td><strong>Built-in</strong></td>
612+
<td><code>shellforge agent</code></td>
613+
<td>Local (Ollama)</td>
614+
<td><span class="tag tag-green">works now</span></td>
597615
</tr>
598616
</tbody>
599617
</table>

0 commit comments

Comments
 (0)