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

graphify-openspec-bridge

v1.0.1

Published

Bridge between OpenSpec and Graphify - codebase-aware OpenSpec workflow with knowledge graph integration

Readme

graphify-openspec-bridge

OpenSpec + Graphify = codebase-aware AI workflow.

Bridge your OpenSpec change proposals with your codebase's knowledge graph. Every artifact—proposal, specs, design, tasks—is grounded in real code structure instead of guesswork.

flowchart LR
    A[OpenSpec Change] --> B[graphify-augmented Schema]
    B --> C[Graphify Query]
    C --> D[Knowledge Graph]
    D --> E[Code-aware Artifacts]
    E --> F[Better AI Output]

Features

  • Graphify-first workflow — 5-artifact pipeline: proposal → explore → specs → design → tasks
  • Exploration step — dedicated artifact for graphify query results before design
  • CLI diagnostics — check runtime, dependency, and project health
  • Zero-config install — single command copies schema + configures OpenSpec

Install

One-liner

npx graphify-openspec-bridge install ./my-project --with-config

Global install

npm install -g graphify-openspec-bridge

# Alias: gob
gob install ./my-project --with-config

Prerequisites

| Tool | Install | |------|---------| | OpenSpec CLI | npm install -g @fission-ai/openspec | | Graphify | pipx install graphifyy | | Node.js 16+ | node --version |

Quick Start

# 1. Check your project is ready
gob check

# 2. Install the graphify-augmented schema
gob install --with-config

# 3. Validate
gob validate

# 4. Start a codebase-aware change
openspec new change my-feature --schema graphify-augmented

# 5. Before writing the proposal, explore your codebase
openspec new artifact explore  # runs graphify query/path/explain

CLI Reference

check [path]

Check runtime (Node.js), dependencies (OpenSpec, Graphify), and project state (config, schema, graph).

gob check ~/my-project

Output:

  Runtime
    ✓ Node.js v24.12.0

  Dependencies
    ✓ openspec 1.3.1
    ✓ graphify 0.8.19

  Project
    ✓ openspec/config.yaml
    ✓ openspec/schemas/graphify-augmented/  (schema.yaml + 5 templates)
    ✓ graphify-out/graph.json  (2304 nodes, 2408 edges)

Status: Ready

install [path] [--with-config]

Copy the graphify-augmented schema to a project's openspec/schemas/ directory.

| Flag | Effect | |------|--------| | --with-config | Also update openspec/config.yaml with graphify context + rules |

validate

Run openspec schema validate graphify-augmented to verify the schema is correctly installed.

version

Print package version.

help

Show usage information.

Schema: graphify-augmented

The schema follows this workflow:

proposal (why) → explore (graph) → specs (what) → design (how) → tasks (do)

| Artifact | Description | Graphify Usage | |----------|-------------|----------------| | proposal | Business motivation, capabilities | graphify query <domain> for codebase context | | explore | Knowledge graph deep-dive | query + path + explain — maps affected areas | | specs | Detailed requirements | References exploration findings | | design | Technical architecture | graphify path to verify connections | | tasks | Implementation checklist | Tasks annotated with graph node references | | apply | Execute tasks | Auto-runs graphify update . on completion |

Development

git clone https://github.com/klc/graphify-openspec-bridge
cd graphify-openspec-bridge
npm link
gob check

Related

  • OpenSpec — AI-native spec-driven development
  • Graphify — turn any folder into a queryable knowledge graph

License

MIT