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

@syntesseraai/opencode-feature-factory

v0.6.14

Published

OpenCode plugin for Feature Factory agents - provides sub-agents and skills for validation, review, security, and architecture assessment

Downloads

2,943

Readme

@syntesseraai/opencode-feature-factory

OpenCode plugin that provides Feature Factory agents, skills, and pipeline commands.

Installation

1) Add plugin to your project config

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["@syntesseraai/opencode-feature-factory"]
}

2) Install global assets

npx @syntesseraai/opencode-feature-factory install

This installer deploys to ~/.config/opencode/:

  • agents/
  • skills/
  • command/

It also updates ~/.config/opencode/opencode.json non-destructively by merging missing Feature Factory MCP entries and plugins without deleting existing user configuration.

Install Behavior

  • Always overwrites packaged assets: installer unconditionally overwrites Feature Factory agents, skills, and command files on every install.
  • opencode.json is non-destructive: existing keys/values are preserved; only missing required plugin/MCP entries are added.
  • Global scope: assets are installed to ~/.config/opencode/ and shared across projects.

Pipeline Entrypoint

  • Use @pipeline as the start experience.
  • The @pipeline agent handles intake and launches /pipeline/start.
  • Orchestration is implemented by the command tree under command/pipeline/ using subtask2 primitives (return, parallel, loop).
  • Coordinator and synthesis model defaults to ChatGPT 5.4 and can be overridden at runtime via /pipeline/start input.

Command Tree

  • /pipeline/start
  • /pipeline/planning/run, /pipeline/planning/plan, /pipeline/planning/synthesize, /pipeline/planning/gate, /pipeline/planning/confirm
  • /pipeline/building/run, /pipeline/building/breakdown, /pipeline/building/validate-batch, /pipeline/building/implement-batch
  • /pipeline/reviewing/run, /pipeline/reviewing/triage, /pipeline/reviewing/review, /pipeline/reviewing/synthesize, /pipeline/reviewing/gate
  • /pipeline/documentation/run, /pipeline/documentation/document, /pipeline/documentation/review, /pipeline/documentation/gate
  • /pipeline/complete
  • /mini-loop/start
  • /mini-loop/implementation/run, /mini-loop/implementation/build, /mini-loop/implementation/review, /mini-loop/implementation/gate
  • /mini-loop/documentation/run, /mini-loop/documentation/document, /mini-loop/documentation/review, /mini-loop/documentation/gate

Model Routing

  • Coordinator and synthesis model is ChatGPT 5.4.
  • Planning/reviewing fan-out uses explicit inline model overrides.
  • DEVELOPER_MODEL: openai/gpt-5.3-codex
  • ARCHITECT_MODEL: opencode/gemini-3.1-pro
  • REVIEWER_MODEL: anthropic/claude-opus-4-6
  • COORDINATOR_MODEL: openai/gpt-5.4
  • DOCUMENTATION_REVIEWER_MODEL: opencode/gemini-3.1-pro
  • Pipeline stages pass intermediate artifacts with {as:name} and $RESULT[name] (minimal file persistence)
  • Planning (with architecture validation): reviewer, architect, and developer role models
  • Implementation: developer role model
  • Review (with architecture validation): reviewer, architect, and developer role models
  • Rework path: /pipeline/reviewing/run re-enters implementation via /pipeline/building/implement-batch when gate status is REWORK
  • Documentation stage: developer role updates documentation, documentation reviewer role reviews docs, and coordinator role supervises a bounded loop until approved
  • Documentation stage skill usage: developer role loads ff-todo-management, ff-mini-plan; documentation reviewer role loads ff-report-templates and ff-severity-classification

Quality Gates

  • Planning approval: >=75% consensus.
  • Review approval: >=95% confidence and zero unresolved issues.
  • Documentation approval: documentation reviewer verdict APPROVED with zero unresolved documentation issues.
  • Planning loop confirmation: after 5 unsuccessful planning iterations, pipeline asks user whether to continue.

Related Docs

  • docs/PIPELINE_ORCHESTRATION.md
  • docs/PLUGIN_PUBLISH.md

License

MIT