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

@semanticintent/strata-runtime

v0.1.0

Published

Strata Database Archaeology Runtime — orchestrate the 5-agent database excavation pipeline. Manages .sil artifact state, enforces human gates, and produces agent prompts ready to run in any AI interface.

Readme

strata-runtime

npm License: MIT

Strata Database Archaeology Runtime — orchestrate the 5-agent database excavation pipeline.

Manages .sil artifact state, enforces a human review gate before classification, and produces agent prompts ready to run in Claude Code or any AI interface.

strata init billing-db
strata run s-00
strata status
strata gate artifacts-reviewed --approve --notes "all schemas and routines look complete"
strata run s-04

How It Works

The runtime does not call an AI API. It produces prompts. You paste them into Claude Code, Claude CLI, or any interface. This keeps the runtime lightweight, model-agnostic, and free of API key management.

State lives in .strata/state.json at your project root — human readable, git diffable, travels with the project.

The Pipeline

| Agent | Name | Produces | |-------|------|----------| | S-00 | Schema Signal | One .sil per table, view, entity cluster | | S-01 | Logic Extractor | One .sil per stored procedure, function, trigger | | S-02 | Job Mapper | One .sil per SQL Agent job, SSIS package, linked server | | S-03 | Dependency Tracer | FK chains, cross-schema refs, job-routine chains | | S-04 | Classifier | transform / preserve / retire decision for every object |

Human review required after S-03 and before S-04 can run (artifacts-reviewed gate).

Classification

Strata introduces three decisions for every database object:

  • transform — reimplement in the target system (belongs in application layer)
  • preserve — keep running in SQL Server (non-transformative: jobs, linked servers, maintenance)
  • retire — decommission (unused, superseded, or safe to remove)

Commands

strata init [name]               Initialize a new engagement
strata run <s-00..s-04>          Prepare and output the agent prompt
strata status                    Show pipeline state, gate status, artifact counts
strata complete <agent-id>       Mark an agent complete after an out-of-band run
strata gate <gate-id> --approve  Approve a human gate
strata gate <gate-id> --return   Return a gate for revision
strata validate <agent-id>       Check expected artifacts are present

Artifact Language

All artifacts are .sil files — EMBER Semantic Intent Language. Requires @semanticintent/ember (included as a dependency).

CONSTRUCT  decision
ID         billing.dbo.sp_generate_invoice
VERSION    1
─────────────────────────────────────────
object:    dbo.sp_generate_invoice
type:      stored-procedure
decision:  transform
rationale: core billing logic — move to application service layer
risk:      high
depends-on: dbo.fn_calculate_tax, dbo.invoice, dbo.invoice_line

Relationship to Phoenix

| | Phoenix | Strata | |--|---------|--------| | Target | Application codebases | SQL Server databases | | Pipeline | 7 agents, greenfield rebuild | 5 agents, non-transformative archaeology | | Gate | 7 human gates (A-05 passes) | 1 human gate (pre-classification review) | | Output | Production codebase | transform/preserve/retire classification | | State | .phoenix/state.json | .strata/state.json |

Both use EMBER .sil artifacts and the same prompt-based, model-agnostic pattern.

Installation

npm install -g @semanticintent/strata-runtime

Or run without installing:

npx @semanticintent/strata-runtime init billing-db

License

MIT — Michael Shatny