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

@cassiomc1/forgeloop

v1.6.0

Published

Portable, verifiable engineering protocol for AI coding environments and developer workflows

Readme

ForgeLoop — Verifiable Engineering Protocol

CodeQL Dependency review Docs quality ForgeLoop audit Publish npm package Package smoke Release notes

ForgeLoop is a portable, vendor-neutral protocol for AI-assisted development and developer workflows. It turns an outcome into a contract, deterministic routing, resumable state, evidence-backed verification, recovery, cross-harness continuity, and validator-backed completion. It is a protocol/support CLI, not an agent or LLM runtime, not an agent framework, and not a graph orchestrator.

The operational sources are indexed in DOCS_INDEX.md. LOOP_ENGINEERING.md is the canonical process; PROTOCOL_INTEGRATION.md defines capability levels and discovery; PROJECT_PROFILE.md stores durable project facts; and GUIDE_ROUTER.md selects only relevant guides.

Where should I start?

Catalog

| Topic | Guide | | --- | --- | | Premium websites | ENG/premium-sites-studio-eng.md | | Clean code | ENG/clean-code-eng.md | | Testing | ENG/test-code-eng.md | | Security | ENG/sec-code-eng.md | | Design and UX | ENG/design-code-eng.md | | Taste frontend | ENG/taste-frontend-eng.md | | Performance | ENG/perf-code-eng.md | | Accessibility | ENG/accessibility-eng.md | | Web games | ENG/games-code-design-web-eng.md | | Documentation quality | ENG/documentation-quality-eng.md |

Each guide declares its name, language, version, and review date in frontmatter. Repository validators keep the catalog and metadata synchronized.

Quickstart

Demonstração em 60 segundos

Em um diretório descartável, inicialize o kit e crie uma tarefa isolada. O resultado é determinístico e pode ser inspecionado por qualquer harness compatível:

npx @cassiomc1/forgeloop init
forgeloop task-create --task demo --claim src --json
forgeloop route --task demo --work clean-code --json
forgeloop preflight --task demo --json
forgeloop next --task demo --json

O último comando informa a ação segura seguinte; ele não executa código nem agenda agentes.

Ações externas duráveis

Para efeitos externos, registre a intenção com action-propose, aplique a política de capacidade e a aprovação vinculada ao fingerprint, e execute apenas com run-action usando argv exato. Um resultado COMMIT_UNKNOWN nunca é repetido automaticamente: observe o sistema externo e use action-reconcile. As métricas mantêm tokens/custos como desconhecidos quando o host não os fornece, e eficiência só existe quando um cenário de referência foi declarado.

Antes de um harness criar ou retomar uma tarefa, ele pode confirmar a compatibilidade pública sem depender de detalhes internos:

forgeloop protocol-info --json

Responsabilidades

| Responsabilidade | ForgeLoop | Harness ou desenvolvedor | | --- | --- | --- | | Validar contrato e rotas | Sim | Fornece intenção e sinais | | Implementar código | Não | Sim | | Registrar proveniência de comando | Sim, com run-check | Fornece comando e ambiente | | Validar conclusão | Sim | Fornece trabalho e evidência reais | | Agendar agentes ou inferência LLM | Não | Externo ao protocolo |

Para uma troca concreta entre ferramentas, veja a continuidade entre harnesses.

From a published package, initialize a target project with:

npx @cassiomc1/forgeloop init
npx @cassiomc1/forgeloop doctor

The CLI installs canonical documents under .forgeloop/kit/, keeps small native discovery shims at the project root, stores project-scoped configuration under .forgeloop/, and stores task-scoped protocol artifacts under .forgeloop/task-state/<taskKey>/. update preserves target-specific profile facts and locally modified files.

Before npm publication, the same source checkout can be exercised without a network or package lookup:

node src/cli.js init
node src/cli.js doctor
node src/cli.js update

Universal project loop

The lifecycle is:

request → discovery → contract → routing → plan → execution
        → verification → review → completion validation
              ↑                         │
              └──── evidence-only rejection / next cycle

The harness writes a schema-valid task contract under .forgeloop/task-state/<taskKey>/contract.json, required gate artifacts, and routing. preflight must return PREFLIGHT_READY before implementation. ForgeLoop then records an append-only event ledger and protects the lifecycle with contract, route, repository, and artifact fingerprints.

Typical local commands are:

forgeloop task-create --task example-task --claim src --claim tests --json
forgeloop route --task example-task --work complete-website --surface ui --risk untrusted-input
forgeloop activate
forgeloop preflight --task example-task --json
forgeloop next --task example-task --json
forgeloop advance --task example-task --to PLANNED
forgeloop advance --task example-task --to EXECUTING
forgeloop advance --task example-task --to VERIFYING
forgeloop prepare-completion --task example-task --json
forgeloop run-check --task example-task --json --id tests --requirement tests -- npm test
forgeloop advance --task example-task --to REVIEWING
forgeloop audit --task example-task --json
forgeloop complete --task example-task --json

advance changes protocol phase only; it never runs target commands. run-check classifies the exact argv before launch and records ForgeLoop-owned execution provenance. record-check stores an observation and never executes the text supplied to --command. record-diagnosis appends an authoritative root-cause hypothesis to the event ledger. progress evaluates task progression and detects stalls deterministically. complete validates the contract, route, gates, ledger, evidence, coverage, receipt, and freshness. audit is read-only. report exposes independent completion, publication, and production-readiness dimensions.

The status precedence is INVALID > INCONSISTENT > STALE > INCOMPLETE > VALID. A READY preflight is a resumable checkpoint: if its work state is missing, forgeloop next returns RESOLVE_BLOCKER rather than silently falling back to discovery. Delegation artifacts are required only when delegation is present in the execution history; ForgeLoop does not provide a graph runtime, agent runtime, or hidden prompt store.

Cross-harness continuity

ForgeLoop preserves task state when switching between AI coding tools, IDEs, or terminals:

forgeloop status --task example-task --json
forgeloop continuity --task example-task --json
forgeloop reconcile-continuity --task example-task --json
forgeloop next --task example-task --json

See docs/CROSS_HARNESS_CONTINUITY.md for full handoff and recovery procedures.

Multi-task concurrent project state

ForgeLoop supports isolated, concurrent tasks within the same repository via deterministic SHA-256 namespacing, per-task mutex locking, and write-claim conflict detection:

# Create an isolated task claiming specific directories
forgeloop task-create --task auth-feature --claim src/auth --claim tests/auth --json

# List active and completed tasks
forgeloop task-list --json

# Ask for deterministic conflict/recovery guidance
forgeloop next --task auth-feature --json

# Only for a task classified STALE or ABANDONED: release effective claims
forgeloop task-recover --task auth-feature --acknowledge-recovery --json

# Reacquire conflict-free claims before mutating a recovered task again
forgeloop task-resume --task auth-feature --json

# Run standard lifecycle commands targeting the task
forgeloop route --task auth-feature --work clean-code --surface backend
forgeloop preflight --task auth-feature --json
forgeloop advance --task auth-feature --to EXECUTING
forgeloop complete --task auth-feature --json

# Migrate legacy 1.0 single-task layout
forgeloop task-migrate --json

Recovery is not completion. Effective claims become empty only when the canonical claim-state resolver validates the relationship between task.json, work-state.json, recovery.json, and the complete hash-chained recovery history. Fake, missing, corrupt, deleted, or mismatched recovery evidence is INCONSISTENT: historical claims remain reserved and mutation remains disabled. The standalone acknowledgement flag is not host-attested authority. task-resume removes recovery state only after validated ownership, stale-lock settlement, normal claim-overlap, and clean-checkout checks succeed. Never create, edit, or delete recovery.json manually.

Executable policy verification & brownfield baselines

ForgeLoop enforces automated, non-interactive verification rules (rules.json) with zero interactive dependencies:

# Discover architecture conventions and candidate rules (read-only unless --write)
forgeloop policy-discover --json

# Inspect active policy verification status, baselines, and drift
forgeloop policy-status --json

# Record brownfield legacy debt into baseline to prevent blocking
forgeloop baseline --record --json

# Monotonically ratchet down resolved technical debt
forgeloop baseline --update --json

# Prove rule checker efficacy against synthetic mutation fixtures
forgeloop rule-verify --rule SECURITY.NO_HARDCODED_SECRET --json

A policy-bound task captures its effective rules and semantic baseline in .forgeloop/task-state/<taskKey>/policy-snapshot.json. The project lock at .forgeloop/policy/policy.lock protects the effective rules plus baseline and must contain matching algorithm, digest, rulesDigest, and baselineDigest values. capturedAt is informational metadata and does not change semantic identity. During an active task, baseline --update may remove resolved debt, but baseline --record is blocked unless an operator explicitly supplies --policy-reset-authorized. Use forgeloop next --task <id> --json to receive semantic recovery such as RESTORE_POLICY, REPAIR_CHECKER, or RESTORE_BASELINE when verification detects drift or corruption.

See docs/CLI_REFERENCE.md and LOOP_SYSTEM_DESIGN.md for architecture details.

Architecture flow

The canonical source is the typed Archify workflow docs/diagrams/forgeloop-engineering-flow.workflow.json. The committed animated interactive explorer is docs/assets/diagrams/forgeloop-engineering-flow.html, which opens in the dark presentation stage and traces the workflow. The animated, self-contained SVG fallback is docs/assets/diagrams/forgeloop-engineering-flow.svg, and the deterministic hash receipt is docs/assets/diagrams/forgeloop-engineering-flow.receipt.json. The governance source is docs/diagrams/manifest.json, and the source-bound visual approval is kept in docs/diagrams/reviews/forgeloop-engineering-flow.review.json. The broader architecture and boundaries are in LOOP_SYSTEM_DESIGN.md.

Open the animated ForgeLoop evidence-first engineering flow

ForgeLoop evidence-first engineering flow (animated SVG fallback)

Text-only fallback: discovery creates the contract and route; required gates and PREFLIGHT_READY authorize execution; verification creates structured evidence; failures enter diagnosis and correction; review precedes validator-backed completion. Drift reopens verification, and migration keeps modified or unmanaged files for review. The terminal result is one of VALID, INCOMPLETE, STALE, INCONSISTENT, or INVALID.

Protocol compatibility

The npm package version is independent of protocol version. The current serializable artifact contract is schemaVersion: 1 and protocolVersion: 1.

  • Patch releases preserve the v1 schemas, enums, transitions, and existing command contracts while correcting implementation defects.
  • Minor releases preserve existing v1 artifacts and commands; they may add documentation, commands, guides, or an explicitly named schema.
  • Major releases may change required fields, enums, transitions, or safety semantics and must document migration requirements with a protocol version change.

Consumers must reject unknown artifact fields rather than silently treating unrecognized protocol data as valid. The compatibility marker is tests/fixtures/compatibility/protocol-v1.json.

A project containing active task recovery state requires ForgeLoop 1.4.0 or newer. A reader that does not advertise features.taskClaimRecovery.validatedClaimProjection=true must fail closed; it must not infer current ownership from task.json or recovery.json alone.

Security and dependency boundary

The runtime uses Node built-ins only and does not install agents, providers, plugins, remote services, or telemetry. Target paths and symlinks are bounded; JSON is size/depth limited; manifests, schemas, receipts, and secret-like values are checked; and install-capable verification requires trusted host authority. See THREAT_MODEL.md for the full inventory.

Development tooling is intentionally separate from runtime dependencies. The repository policy allows only ESLint and c8 as development dependencies; npm run dependency:policy fails if runtime or unapproved dependencies appear. The documentation renderer is vendored and pinned under vendor/archify/v2.15.0/ rather than installed as a package dependency.

Para reportar vulnerabilidades ou contribuir com alterações, consulte SECURITY.md e CONTRIBUTING.md.

Autonomous blind-run isolation

The repository does not claim a live blind conformance result for an external harness. The isolated scenario is TEST_NOT_STARTED; do not reinterpret it as a pass or failure. The compatible autonomous boundary is explicit:

mandatory-approval workflows enabled: NO
external brainstorming hard gate enabled: NO
external design approval gate enabled: NO
subagents enabled: NO
delegation enabled: NO

An environment that requires those gates is INCOMPATIBLE WITH AUTONOMOUS MODE. This constraint concerns the harness boundary and does not turn reversible local product choices into blocking questions.

Optional multimodal capabilities

Qwen-MM-Plugins is an optional, task-scoped capability extension. The agent checks native/callable support first, installs only the smallest missing capability when authorized, and verifies it before use. No API key is used by default for native image, video, or document reading.

| Capability | Configuration | | --- | --- | | Vision, OCR, grounding, transcription, generation, and video memory | DASHSCOPE_API_KEY | | Web and image search | SERPER_API_KEY | | Segmentation through a SAM3 service | SAM3_SERVER_URL | | Blender, FreeCAD, Office, browser-backed visualization, and edu-agent | System dependencies and upstream configuration; edu-agent TTS also needs DASHSCOPE_API_KEY |

Credentials belong in the process environment or the official Qwen configuration file, never in Git, .forgeloop/kit/PROJECT_PROFILE.md, or copied instruction files. ForgeLoop does not vendor Qwen code or install it through init, update, or doctor.

Release and maintenance

The release workflow uses npm trusted publishing through GitHub Actions OIDC. A vX.Y.Z tag must match package.json; after publishing, verify the immutable release identity:

RELEASE_COMMIT="$(git rev-list -n1 vX.Y.Z)"
npm run release:identity -- --version X.Y.Z --release-commit "$RELEASE_COMMIT"

Only RELEASE_IDENTITY_VALID is sufficient. Publication, pull requests, merges, releases, and deployments are external actions and are never inferred from local test success.

When updating a target, preserve .forgeloop/kit/PROJECT_PROFILE.md, compare adapters before replacement, and run the repository checks. Python validators remain frozen CI-only compatibility tools; their scope and invocation are documented in scripts/CI_VALIDATORS.md.

npm ci
npm test
npm run lint
npm run coverage
npm run pack:check
npm run dependency:policy
npm run docs:diagrams
npm run docs:check

Repository structure

src/                    npm CLI and protocol implementation
schemas/                versioned artifact schemas
ENG/                    package-source engineering guides
docs/diagrams/          typed Archify diagram source and inventory
docs/assets/diagrams/   committed HTML, SVG, and generation receipt
scripts/                checks, renderer, release identity, CI notes
tests/                  Node and Python regression coverage
.forgeloop/             project-scoped ForgeLoop configuration
.forgeloop/task-state/  isolated live task protocol state
DOCS_INDEX.md           documentation map and ownership boundaries

Project-scoped configuration remains under .forgeloop/. Task-scoped mutable protocol state is stored under .forgeloop/task-state/<taskKey>/.

For document ownership, guide routing, capability degradation, and integration details, start at DOCS_INDEX.md.

Programmatic integration and MCP

ForgeLoop exposes a stable programmatic surface:

import { executeForgeLoopCommand } from "@cassiomc1/forgeloop/integration";

The local MCP server (@cassiomc1/forgeloop-mcp, stdio) is an adapter over this exact API — it never reimplements ForgeLoop. See docs/UNIVERSAL_INTEGRATION.md and docs/MCP.md. MCP is optional; the CLI and instruction-only hosts remain fully supported without it.