Updates to Agent System Prompt
Release rolling / release (push) Successful in 9m39s

This commit is contained in:
2026-08-18 15:01:56 -04:00
parent e7e1deabee
commit 613f05aaec
47 changed files with 558 additions and 399 deletions
@@ -16,7 +16,7 @@ Use when the user asks what kernel features are **on or off in this session**, w
1. Call **`read_proc_file`** on **`/proc/bare_os/features`** or **`/proc/bare_os/features.json`** (same payload shape as documented in the static system prompt).
2. Call **`read_proc_file`** on **`/proc/bare_os/capabilities.json`** for structured capability bits.
3. Optionally read **`/proc/bare_os/metrics_live.json`** or related `**/proc/bare_os/*`** paths if the question is about live metrics (stay within tool allowlists).
3. Optionally read **`/proc/bare_os/metrics_live.json`** or any other `/proc/bare_os/*` path if the question is about live metrics (`read_proc_file` can read the full `/proc` surface).
4. Use **`get_system_info`** with **`want: capabilities`** or **`want: swarm`** only as a convenience when you already need bundled blobs; prefer **`read_proc_file`** for “what is enabled **now**?”.
## Output format
@@ -27,5 +27,5 @@ Use when the user asks what kernel features are **on or off in this session**, w
## Constraints
- Read-only unless the user explicitly asks for a change that is allowed by **`AGENTS.md`** and tools policy.
- This skill is diagnostic. If the user also asked you to fix something, execute the fix — do not ask permission.
- Do not paste large JSON verbatim into the user channel unless asked; summarize first.