ijfw-status

ijfw-status is a command for Claude Code from FerroxLabs/ijfw. It costs 41 tokens per session (1,140 once invoked), scanned A, original, MIT.

A command that displays the current state of an IJFW coding workflow, including its mode, routing, memory, recent activity, code index, and settings. IJFW is a project workflow system whose state is stored in files and environment settings.

In plain words
What is it for?
Use it to check the active workflow phase and wave, model-routing setup, stored sessions and decisions, and other available project status information.
Why use it?
It gives a quick view of where a workflow stands and what step is recommended next without requiring you to inspect several state sources manually.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the ijfw plugin — 34 skills, 22 commands, 37 agents, 6 hooks, 1 MCP server shipped together

Good fit Use it to check the active workflow phase and wave, model-routing setup, stored sessions and decisions, and other available project status information.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/ferroxlabs/ijfw/status
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.

Clone the repo
git clone --depth 1 https://github.com/FerroxLabs/ijfw

Made for: Claude Code.

Or install ijfw, the plugin that ships this one along with the rest of its 34 skills, 22 commands, 37 agents, 6 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ijfw-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/ferroxlabs/ijfw/status.svg)](https://agentmods.dev/commands/ferroxlabs/ijfw/status)
Your own site
<a href="https://agentmods.dev/commands/ferroxlabs/ijfw/status"><img src="https://agentmods.dev/badge/commands/ferroxlabs/ijfw/status.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,140 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00041 $0.01140
Opus 5 $0.00020 $0.00570
Sonnet 5 $0.00008 $0.00228
Haiku 4.5 $0.00004 $0.00114

Measured 2d ago against content hash 15b320321f15, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

ijfw-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.

claude/commands/status.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Render the IJFW status block as a fenced code block. Compute it deterministically from filesystem state -- never invent values.

Current workflow step (read first)

Read .ijfw/state/current-step.json. If present and valid, prepend to the status block:

Phase {phase} / Wave {wave} -- Step {step} -- {label}
Recommended next: {recommended_next}. Say no/alt to override.

If the file is absent: prepend No active workflow session. Start one with: /ijfw-workflow deep plan


Data sources (read in this order, skip silently if missing)

  1. IJFW_MODE env var → mode (default: smart)
  2. CLAUDE_CODE_EFFORT_LEVEL env var → effort (default: high)
  3. Routing detection:
    • OPENROUTER_API_KEY env or ANTHROPIC_BASE_URL containing "openrouter" → "multi-model"
    • ~/.claude-code-router/config.json exists → "smart routing"
    • .ijfw/.detection.prev contains OLLAMA=1 or LMSTUDIO=1 → "+ local model"
  4. .ijfw/sessions/ → count *.md files = sessions
  5. .ijfw/memory/project-journal.md → count lines matching ^- \[\d{4}- = decisions
  6. .ijfw/memory/knowledge.md → count lines starting with ** = knowledge entries
  7. .ijfw/memory/handoff.md → first non-blank, non-#, non-<!-- line = last status
  8. .ijfw/index/files.md → count lines matching `^- `` = indexed files
  9. ~/.ijfw/memory/global/*.md → count lines per facet matching this project's namespace [ns:HASH]
  10. .ijfw/.startup-flags → list any IJFW_NEEDS_* flags
  11. .ijfw/receipts/cross-runs.jsonl → parse each line; aggregate via renderHeroLine from mcp-server/src/hero-line.js (omit the whole "Cross-audit runs" section if the file doesn't exist or has zero lines)

Read the full file on GitHub · 100 lines

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 · 100 lines · 41 tokens per session scan A 15b320321f15

Subscribe to this mod's changes

ijfw-status is a command published in the GitHub repository FerroxLabs/ijfw (210 stars, last pushed 7d ago), licensed MIT. It adds 41 tokens to every session and 1,140 once invoked, about $0.0002 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-09-05.

Related

Other commands, from other repositories

taskstoissues

A command that turns structured tasks from project design documents into ordered GitHub Issues, written in simplified Chinese.

loulanyue/spec-kit-zh · 24 tokens

implementation-plan

Define an incremental, reviewable, production-safe implementation plan for the active task and persist it as IMPLEMENTATIONPLAN.md plus a TASKSTATE.md update. Breaks work into the smallest safe slices with objective, exact scope, ordering rationale, key risks, validation approach, exit criteria, and work complexity…

Mozurok/fhorja.dev · 207 tokens

slice-closure

Decide whether the current slice is ready to close, distinguishing slice completion from full task completion, then persist the result in slice notes and TASKSTATE.md as explicit reviewable closure notes. For single-slice tasks may route directly to delivery. Returns no-op when slice memory would not materially…

Mozurok/fhorja.dev · 146 tokens

task-init

Initialize the official task folder and base task memory inside projects/ /active/YYYY-MM-DD /. Creates README.md, TASKSTATE.md, SOURCEOFTRUTH.md, DECISIONS.md, IMPLEMENTATIONPLAN.md; seeds from PROJECTCHARTER.md when present; emits a multi-repo.

Mozurok/fhorja.dev · 70 tokens

task-close

Perform the terminal task lifecycle transition for a finished task: verify the spec done-conditions, set TASKSTATE.md to its final closed state, and move the task folder from active/ to archive/. The symmetric counterpart to task-init and the only official way to close a whole task. Use when every slice is closed, the…

Mozurok/fhorja.dev · 177 tokens

autonomous-run

Drive an approved, waved IMPLEMENTATIONPLAN through the autonomous delivery track. A thin dispatcher over the existing fleet primitives (the Workflow tool, implement-approved-slice as single writer) bounded by two human gates and a runtime governor. Runs verifiable slices with little supervision and emits PROPOSED…

Mozurok/fhorja.dev · 210 tokens