status

A command-line status check for the Codex Compressor setup.

In plain words
What is it for?
It helps check configuration status and distinguish passed, warning, failed, blocked, and not-run checks.
Why use it?
It shows whether the configuration is ready to use and identifies warnings or failures without changing settings.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hehee9/codex-compressor/status
Any agent
npx skills add hehee9/codex-compressor --skill status
Clone the repo
git clone --depth 1 https://github.com/hehee9/codex-compressor

Made for: Claude Code, Codex.

Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 241 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00022 $0.00241
Opus 5 $0.00011 $0.00120
Sonnet 5 $0.00004 $0.00048
Haiku 4.5 $0.00002 $0.00024

Measured 2d ago against content hash ef08b0e27878, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/codex-compressor/skills/status/SKILL.md · 26 lines

What it actually says

상태 확인

# macOS/Linux
PYTHONPATH="${PLUGIN_ROOT}/runtime" python3 -m codex_compressor status

# Windows PowerShell
$env:PYTHONPATH = Join-Path $env:PLUGIN_ROOT "runtime"
py -3 -m codex_compressor status

상태 출력은 다음 단계를 구분합니다.

  • PASS: 해당 검사가 통과했습니다.
  • WARN: 계속 사용할 수 있지만 버전, 인식하지 못한 버퍼 값 또는 후크 승인 확인이 필요합니다.
  • FAIL: 현재 구성으로는 안전하게 사용할 수 없으며 수정 또는 복원이 필요합니다.
  • BLOCKED: 필요한 Codex 기능이나 권한을 확인할 수 없어 다음 단계로 진행하지 않았습니다.
  • NOT_RUN: 앞 단계의 실패 때문에 실행하지 않았습니다.

상태 확인은 설정을 변경하지 않습니다. 원본 파일의 내용과 사용자가 편집한 설정 보존 여부는 doctor에서 별도로 확인합니다.

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 26 lines · 22 tokens per session scan A ef08b0e27878

Subscribe to this mod's changes

status is a skill published in the GitHub repository hehee9/codex-compressor (10 stars, last pushed 7d ago), licensed Apache-2.0. It adds 22 tokens to every session and 241 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

writing-skills

Use this whenever the user asks to write, author, or scaffold a new SecureContext skill (Anthropic-style filesystem skill at /.claude/skills/ / or /.claude/skills/ /). The skill walks the agent through the four-invariant checklist, generates a SKILL.md from a template, and runs the bundled linter + admission preview…

iampantherr/SecureContext · 102 tokens

publish-github-release

Use this whenever the user asks to ship, publish, release, tag, or cut a new version of the project — OR when CHANGELOG.md has an "Unreleased" / in-progress section ready to be shipped. The skill bumps the version across all version-bearing files, regenerates the CHANGELOG entry from git log since the last tag…

iampantherr/SecureContext · 99 tokens

ctxwise

Audit and optimize OpenAI Codex context locally, compile model and subagent profiles, detect capability drift, create redacted lockfiles, inspect model-visible prompt structure, and render honest token, credit, quota, or API-cost receipts. Use when the user explicitly invokes CtxWise or asks to run its installed CLI…

FramY2/ctxwise · 84 tokens

pf-handoff

Чекпоинт или закрытие сессии — зафиксировать состояние, ничего не потеряв. Checkpoint or close a session — reconcile what is proven, rewrite the live HANDOFF state file (§13), statuses and journal. NOT for handing work to another agent or worktree (that is orca-cli/orchestration). Use when the context window is…

turvodnik/pf-handoff · 116 tokens

pf-resume

Подхватить работу прошлой сессии — продолжить как в том же чате. Picking up work from the live HANDOFF file (§13) — continue in a new chat or after /clear as if it were the same chat. Use when «/pf-resume», «продолжи с прошлой сессии», «подхвати работу», «восстанови состояние», resume previous session state.

turvodnik/pf-handoff · 92 tokens

minimize-token-usage

Reduce Codex context and token use while preserving evidence and correctness. Use for long coding, research, debugging, repository exploration, noisy logs, large command or MCP outputs, repeated file reads, cost-sensitive work, or when the user asks for concise, cheap, low-token, or context-efficient execution. Also…

Kolikkii/token-razor · 82 tokens