npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

5-phase-workflow

v2.0.1

Published

A dev-workflow for Claude Code and Codex

Downloads

1,073

Readme

foifi

foifi is an opinionated AI development workflow layer that sits on top of Claude Code and Codex. It handles project setup, structured feature implementation, and code review — so you spend less time managing the AI and more time shipping.

What it does

Project setup — The /5:configure command detects your stack, generates a CLAUDE.md / AGENTS.md tailored to your project, writes a .5/index/ knowledge base, and installs project-specific skills and rules. This gives every AI session the right context from the start rather than letting the model guess.

Status line — foifi installs an informative Claude Code status line that surfaces the active feature, current workflow phase, and relevant state directly in the terminal footer. No more digging through files to remember where you left off.

Structured implementation workflow — Instead of asking Claude or Codex to "just implement this," foifi enforces a three-phase loop:

  1. Plan (/5:plan) — writes a single human-reviewed plan.md with scope, acceptance criteria, component checklist, and decisions.
  2. Implement (/5:implement) — an orchestrator agent turns the plan into a typed execution graph (state.json), then delegates each component to a focused executor agent. A verification agent checks completeness, correctness, and test coverage at the end of every run.
  3. Review (/5:review) — triages changed files, produces structured findings, and feeds them into /5:address-review-findings for interactive fix decisions and PR replies.

This separation keeps planning readable, implementation mechanical, and review structured.

Code review and findings/5:review triages changed files and produces structured review-findings-*.md. /5:address-review-findings presents each finding interactively, records fix/wont_fix/wait decisions, applies approved local fixes, handles PR comment replies, and keeps a decision log — all without losing context between sessions.

Plan management helpers/5:discuss-feature refines an existing plan in conversation. /5:split breaks a large plan into smaller linked child plans. /5:unlock clears a stale planning lock. /5:reconfigure refreshes docs and skills when the project evolves.

Codex support — Every command has a $5-* Codex equivalent. Codex runs are token-budgeted: simple steps use a lighter model and low reasoning, complex or security-sensitive steps escalate automatically.

The name

"foifi" is Swiss German for five. The name comes from the project's original 5-phase workflow. That workflow has since been streamlined into the current 3-phase plan → implement → review loop, but the name stuck — and all commands still carry the /5: prefix.

Install

npx foifi
npx foifi --codex

Global installs are also supported:

npx foifi --global
npx foifi --codex --global

Claude Code installs commands under .claude/. Codex installs converted skills under .codex/skills/.

Configure

Run configuration once per project:

/5:configure
# or in Codex
$5-configure

Configuration writes .5/config.json and .5/features/CONFIGURE/plan.md. Then run:

/5:implement CONFIGURE
# or
$5-implement CONFIGURE

That generates project documentation, a rebuildable .5/index/, AGENTS.md, a CLAUDE.md shim, and selected project-specific skills/rules.

Workflow

/5:plan
/5:split {feature-name}
/5:implement {feature-name}
/5:review
/5:address-review-findings {feature-name}

Codex equivalents:

$5-plan
$5-split {feature-name}
$5-implement {feature-name}
$5-review
$5-address-review-findings {feature-name}

Verification runs at the end of /5:implement and records concise results in state.json.

Commands

| Command | Purpose | |---------|---------| | /5:configure / $5-configure | Detect project settings and write the CONFIGURE plan | | /5:plan / $5-plan | Create one unified plan.md from requirements, codebase exploration, and user decisions | | /5:discuss-feature / $5-discuss-feature | Refine an existing plan.md | | /5:split / $5-split | Split an existing plan into smaller linked plans for separate implementation | | /5:implement / $5-implement | Derive state.json, execute steps with agents, and verify inline | | /5:review / $5-review | Review code changes and save findings | | /5:address-review-findings / $5-address-review-findings | Decide on review findings interactively, then apply approved fixes and PR comments | | /5:reconfigure / $5-reconfigure | Refresh docs, index, skills, and rules | | /5:update / $5-update | Upgrade installed workflow files | | /5:eject / $5-eject | Stop workflow-managed updates | | /5:unlock / $5-unlock | Remove a stale planning guard lock | | /5:synchronize-agents / $5-synchronize-agents | Sync user content between Claude Code and Codex |

Artifacts

Each feature lives under .5/features/{feature-name}/:

  • plan.md - single human-reviewed planning artifact
  • codebase-scan.md - cached discovery used to reduce repeated scanning
  • state.json - enriched execution state derived by step-orchestrator-agent
  • state-events.jsonl - detailed execution history for retries, commands, commits, and verification
  • split-manifest-*.json - parent feature record for child plans created by /5:split
  • review-findings-*.md - review output for /5:address-review-findings
  • review-decisions-*.json - interactive fix/wont-fix/wait decisions for local findings
  • pr-comment-decisions.json - PR review comment decisions when PR handling is used

Design

Planning stays human-readable. plan.md contains scope, acceptance criteria, decisions, module impact, and a clean component checklist. Small low-risk changes can use the compact plan template. Plans intentionally do not ask the planner to fill model choices, verify commands, step grouping, or pattern-file wiring.

Implementation is mechanical. step-orchestrator-agent reads plan.md and codebase-scan.md, derives the execution graph into compact state.json, then /5:implement delegates each component to step-executor-agent with an inline executor contract. Pattern context is passed as targeted references instead of broad file lists so executors can read only the relevant ranges. Detailed history is appended to state-events.jsonl. This reduces planning token cost and avoids brittle prompt-table metadata.

Verification uses a dedicated agent. /5:implement runs verification-agent at the end and records a concise final status in state.json without generating an extra report.

Review is risk-based. Native review triages changed files first and reads full files only for risky changes or when diff context is insufficient. /5:address-review-findings presents each finding one by one with a recommendation, records fix/wont_fix/wait decisions, then coordinates narrower helpers for approved local fixes, PR comment triage, and PR replies so the common path stays compact.

Reconfiguration uses a compact .5/reconfigure-manifest.json to pass refresh decisions to documentation and skill generation helpers without duplicating long detection summaries in prompts.

For Codex installs, the workflow is token-budgeted: exploration, orchestration, and simple executors default to gpt-5.4-mini with low reasoning. Complex logic, security-sensitive work, data migrations, public API changes, final verification that needs deeper review, and failed retries escalate to gpt-5.4 with medium reasoning.

Updating

npx foifi --upgrade
npx foifi --codex --upgrade

v2.0.0 is a hard migration. Finish in-progress v1.9.5 features before upgrading; v1 feature.md and old state.json formats are not supported.