MD Formatting fixes

This commit is contained in:
Raven Scott
2026-04-25 23:02:07 -04:00
parent 51b3b97bc0
commit b07bc38708
154 changed files with 2459 additions and 2457 deletions
@@ -10,14 +10,14 @@ requires: [read_proc_file, vfs]
## When to use
Use when the user asks what kernel features are **on or off in this session**, what capabilities exist, or whether something (SSH, replication, metrics) is actually enabled. Do **not** infer live kernel state from **`read_man_page`** / **`apropos_man`** alone — those search documentation text.
Use when the user asks what kernel features are **on or off in this session**, what capabilities exist, or whether something (SSH, replication, metrics) is actually enabled. Do **not** infer live kernel state from **`read_man_page**` / `**apropos_man`** alone — those search documentation text.
## Execution steps
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).
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**?”.
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).
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