Help us improve
Share bugs, ideas, or general feedback.
From context-os
Show current context-os graph status, git state, and recent session signals for the active repository.
npx claudepluginhub sravan27/context-osHow this skill is triggered — by the user, by Claude, or both
Slash command
/context-os:statsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Prefer the CLI status command when available:
Validates Context OS setup, repo graph availability, and local hook health in a repository. Runs doctor CLI or fallback shell checks for graph and Python hooks.
CTO-level project status from git and codebase state. Use when asked "where are we", "project status", "what's done", or at the start of a work session.
Displays context summary: files status, token budget, tasks, recent activity. Use at session start or when unclear about project state.
Share bugs, ideas, or general feedback.
Prefer the CLI status command when available:
context-os status
If the binary is not installed, show the local graph and git snapshot:
python3 - <<'PY'
import json, os, subprocess
root = os.getcwd()
graph = os.path.join(root, ".context-os", "repo-graph.json")
print("repo:", root)
print("graph:", "present" if os.path.exists(graph) else "missing")
if os.path.exists(graph):
data = json.load(open(graph))
print("files:", len(data.get("files", {})))
print("hot:", ", ".join(h.get("path", "") for h in data.get("hot_files", [])[:3]))
try:
print(subprocess.check_output(["git", "status", "--short", "--branch"], text=True).strip())
except Exception as exc:
print("git:", exc)
PY
Keep the answer short and focused on whether auto-context is ready.