Skip to content

Commit 18b0ecd

Browse files
barckcodeclaude
andcommitted
docs(agents): add resource limits section
Show CPU, RAM and storage limits per agent component in a table so users know what resources their agents have available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 47fd3c7 commit 18b0ecd

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

src/pages/docs/agents.astro

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,59 @@ import Docs from '../../layouts/Docs.astro';
207207
<div class="my-6 rounded-xl border border-neutral-800/60 overflow-hidden">
208208
<img src="/docs/agents/http-result.png" alt="Sitio web generado por Hermes visible desde la URL pública" class="w-full" loading="lazy" />
209209
</div>
210+
211+
<!-- ════════════════════════════════════════════ -->
212+
<!-- LIMITS -->
213+
<!-- ════════════════════════════════════════════ -->
214+
<h2 id="limites">Límites de recursos</h2>
215+
216+
<p>Cada agente tiene los siguientes recursos asignados:</p>
217+
218+
<div class="overflow-x-auto my-6">
219+
<table class="w-full text-left font-mono text-sm">
220+
<thead>
221+
<tr class="border-b border-neutral-800/60">
222+
<th class="py-3 pr-4 text-[10px] uppercase tracking-widest text-neutral-500">Componente</th>
223+
<th class="py-3 pr-4 text-[10px] uppercase tracking-widest text-neutral-500">CPU</th>
224+
<th class="py-3 pr-4 text-[10px] uppercase tracking-widest text-neutral-500">RAM</th>
225+
<th class="py-3 text-[10px] uppercase tracking-widest text-neutral-500">Disco</th>
226+
</tr>
227+
</thead>
228+
<tbody class="text-neutral-300">
229+
<tr class="border-b border-neutral-800/30">
230+
<td class="py-3 pr-4 text-white">Hermes</td>
231+
<td class="py-3 pr-4">500m</td>
232+
<td class="py-3 pr-4">512 Mi</td>
233+
<td class="py-3">—</td>
234+
</tr>
235+
<tr class="border-b border-neutral-800/30">
236+
<td class="py-3 pr-4 text-white">LiveSync Bridge</td>
237+
<td class="py-3 pr-4">250m</td>
238+
<td class="py-3 pr-4">256 Mi</td>
239+
<td class="py-3">—</td>
240+
</tr>
241+
<tr class="border-b border-neutral-800/30">
242+
<td class="py-3 pr-4 text-white">CouchDB</td>
243+
<td class="py-3 pr-4">500m</td>
244+
<td class="py-3 pr-4">512 Mi</td>
245+
<td class="py-3">5 Gi</td>
246+
</tr>
247+
<tr class="border-b border-neutral-800/30">
248+
<td class="py-3 pr-4 text-white">Vault (notas)</td>
249+
<td class="py-3 pr-4">—</td>
250+
<td class="py-3 pr-4">—</td>
251+
<td class="py-3">5 Gi</td>
252+
</tr>
253+
<tr class="border-t border-neutral-700/60">
254+
<td class="py-3 pr-4 text-violet-400 font-medium">Total por agente</td>
255+
<td class="py-3 pr-4 text-violet-400">1.25 vCPU</td>
256+
<td class="py-3 pr-4 text-violet-400">1.25 Gi</td>
257+
<td class="py-3 text-violet-400">10 Gi</td>
258+
</tr>
259+
</tbody>
260+
</table>
261+
</div>
262+
263+
<p class="text-sm text-neutral-500">Los valores de CPU y RAM representan
264+
los límites máximos. El consumo real suele ser inferior durante uso normal.</p>
210265
</Docs>

0 commit comments

Comments
 (0)