82 lines
5.2 KiB
Cheetah
82 lines
5.2 KiB
Cheetah
{{define "for-smb"}}
|
|
<div class="hero container">
|
|
<p class="label mb-3">For teams</p>
|
|
<h1 class="mb-4">Every employee will have an agent.<br>Are you ready?</h1>
|
|
<p class="lead">AI agents are entering every workflow — code, ops, finance, support. Each agent needs credentials. Each credential needs boundaries. One shared vault key isn't security. It's a breach waiting to happen.</p>
|
|
</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="section container">
|
|
<h2 class="mb-8">The problem</h2>
|
|
<div class="grid-3">
|
|
<div class="card">
|
|
<h3 class="mb-2">All-or-nothing access</h3>
|
|
<p>Today's password managers give agents access to everything or nothing. Your deploy agent sees HR credentials. Your support bot sees production keys.</p>
|
|
</div>
|
|
<div class="card">
|
|
<h3 class="mb-2">Shared blast radius</h3>
|
|
<p>One compromised agent exposes the entire vault. Every credential, every team, every employee.</p>
|
|
</div>
|
|
<div class="card">
|
|
<h3 class="mb-2">No audit trail</h3>
|
|
<p>Who accessed what, when? Most vaults log the human. Not the agent.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="section container">
|
|
<h2 class="mb-4">One company vault. One personal vault per employee.</h2>
|
|
<p class="lead mb-6">The company vault holds shared credentials — API keys, service accounts, database passwords. Scoped by team. Each employee's personal vault is theirs — their logins, their identity fields, encrypted with their own hardware key.</p>
|
|
<p>The company vault has no Identity fields. Nothing personal goes here. Personal vaults are private — the company cannot access them. By design. By math.</p>
|
|
</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="section container">
|
|
<h2 class="mb-4">Scoped from day one</h2>
|
|
<p class="mb-6">Open the web UI, create an agent, assign a scope. Each agent only sees entries in its scope. The vault checks every request — serves or denies. Stateless. Sub-millisecond.</p>
|
|
<div class="code-block mb-4">
|
|
<div><span class="comment"># Each agent is initialized once with its setup token</span></div>
|
|
<div><span class="prompt">$</span> clavitor-cli init <code-agent-token></div>
|
|
<div class="mt-2"><span class="comment"># Then it fetches only what it's scoped to</span></div>
|
|
<div><span class="prompt">$</span> clavitor-cli get "GitHub Deploy" --field password</div>
|
|
<div class="comment">ghp_a3f8...</div>
|
|
</div>
|
|
<p class="text-sm text-secondary">The deploy agent cannot read dev credentials. The support bot cannot read deploy keys. Scopes are managed in the web UI — no CLI commands to get wrong.</p>
|
|
</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="section container">
|
|
<h2 class="mb-4">Team pricing</h2>
|
|
<p class="lead mb-8">One company vault + one personal vault per employee. Agents scale with team size. 7-day free trial on all plans.</p>
|
|
<table class="data-table mb-4">
|
|
<thead>
|
|
<tr><th>Plan</th><th style="text-align:right">People</th><th style="text-align:right">Vaults</th><th style="text-align:right">Agents</th><th style="text-align:right">Annual</th><th style="text-align:right">Monthly</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td>Team 10</td><td style="text-align:right">10</td><td style="text-align:right">11</td><td style="text-align:right">100</td><td style="text-align:right">$249</td><td style="text-align:right">—</td></tr>
|
|
<tr><td>Team 25</td><td style="text-align:right">25</td><td style="text-align:right">26</td><td style="text-align:right">250</td><td style="text-align:right">$499</td><td style="text-align:right">—</td></tr>
|
|
<tr><td>Team 100</td><td style="text-align:right">100</td><td style="text-align:right">101</td><td style="text-align:right">1,000</td><td style="text-align:right">$1,499</td><td style="text-align:right">$149</td></tr>
|
|
<tr><td>Team 250</td><td style="text-align:right">250</td><td style="text-align:right">251</td><td style="text-align:right">2,500</td><td style="text-align:right">$2,999</td><td style="text-align:right">$299</td></tr>
|
|
<tr><td>Team 500</td><td style="text-align:right">500</td><td style="text-align:right">501</td><td style="text-align:right">5,000</td><td style="text-align:right">$4,999</td><td style="text-align:right">$499</td></tr>
|
|
</tbody>
|
|
</table>
|
|
<p class="text-sm text-tertiary">Monthly billing available for Team 100+. Team 10/25 are annual-only. <strong>Price for life:</strong> Your rate never increases as long as you stay subscribed.</p>
|
|
<p class="text-sm text-tertiary mt-4">Team plans require Clavitor Hosted. <a href="/install">Community Edition</a> supports single-vault self-hosting for individual use.</p>
|
|
</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="section container">
|
|
<h2 class="mb-4">Start with Team 10. Scale when you're ready.</h2>
|
|
<p class="lead mb-6">Same vault, same encryption, same architecture at every tier.</p>
|
|
<div class="btn-row">
|
|
<a href="/signup" class="btn btn-primary">Get started</a>
|
|
<a href="/pricing-new" class="btn btn-ghost">Compare all plans →</a>
|
|
</div>
|
|
</div>
|
|
{{end}} |