
from zylos-core1,169
Report current context/window and token usage across supported runtimes so agents can decide when to rotate or trim conversation history.
Check Context reports the agent's current context window and token consumption for the active runtime (Claude, Codex, etc.). It parses local status files or recent session logs to produce a concise summary: percent of context used, input/output token counts, model/window size, and estimated session cost.
Inferable for on-prem and developer agent runtimes that expose local status files (Claude runtime/statusLine, Codex session files). Works with agent tooling that can run shell/node commands and read local files.
Check-context lets agents monitor context window and token usage across Claude and Codex runtimes. The SKILL.md provides clear, specific inline bash/node commands for reading local status files. No scripts were present to execute. Code is functional but uses dense one-liners with silent error catching. Architecture is monolithic with no script/references separation.
Simple, read-only monitoring skill. No security concerns — only reads local files. The main weakness is architecture: everything is inline with no scripts directory, and the Codex runtime script is a single compressed node expression. Useful for the specific Zylos/Claude/Codex runtime audience but niche.
Zylos Shell Channel
Channel skill that connects a CLI REPL to a Claude-like backend via a Unix socket, routing user input to the agent and delivering responses back to the REPL.
Task Scheduler
Schedule and dispatch one-time, recurring and interval tasks to an agent runtime via the C4 comm-bridge for autonomous execution.
System Health Check
Run a periodic system health check: verify PM2 services, disk and memory thresholds, and produce logs/alerts for operators when issues are detected.