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

@spreadworks/senti

v0.1.0-alpha.1383

Published

Spec-Driven Development tooling for automated documentation generation

Readme

senti

日本語 | English

npm version license downloads

Alpha: APIs, command structure, and configuration formats may change without notice.

Spec-Driven Development — Design, implement, and document in a single flow

A spec-first development flow manager designed to work with AI coding agents.

The Spec-Driven Development Flow

Every feature goes through three phases, from spec to merge.

plan ──────── Specification
│  ├─ draft       Refine requirements through dialogue
│  ├─ spec        Create spec (feature branch + spec.md)
│  ├─ gate        Spec validation + guardrail check
│  └─ test        Write test code
│
implement ─── Coding
│  ├─ implement   Write code after gate PASS
│  └─ review      AI code review
│
finalize ──── Wrap-up
│  ├─ commit      Commit + retro + report
│  ├─ merge       Squash merge or PR
│  ├─ sync        Auto-update documentation
│  └─ cleanup     Remove branch / worktree

AI stays in its lane

Source code analysis, spec gate checks, and flow orchestration are all handled by deterministic commands. AI is not in charge of the flow — it assists with spec drafting, code review, and prose generation within well-defined boundaries.

  • Spec gate — Programmatic validation of unresolved items and missing approvals. No PASS, no implementation
  • Guardrails — Project-specific design principles checked against each spec
  • Compaction resilience — Flow state and requirements are persisted, so you can resume after context compression

Automatic Doc Sync

Source code is statically analyzed to extract file structure, classes, methods, configuration, and dependencies. The extracted data is injected into templates to produce structured documentation (docs/) and README.md.

Documentation is automatically refreshed during the merge phase, so docs and code never drift apart. With always-current docs, both humans and AI agents can understand the system without reading every source file.

Quick Start

Install

Setup

An interactive wizard configures your project type (preset) and AI agent.

Generate docs for an existing project

If you already have source code, generate documentation to get a complete picture of the system. Especially useful for onboarding onto legacy codebases.

Develop with the Spec-Driven Development flow

Claude Code — run each phase via skills:

| Skill | Phase | |---|---| | /senti.flow | full Spec-Driven Development flow (plan, implement, finalize) |

Codex CLI — invoke via $ prefix:

| Command | Phase | |---|---| | $senti.flow | full Spec-Driven Development flow (plan, implement, finalize) |

Commands

| Command | Description | |---|---| | setup | Register project and generate config | | docs build | Run the full documentation pipeline |

See senti help or the command reference for the full list.

Configuration

setup generates .senti/config.json:

{
  "type": "node-cli",          // project type (preset name)
  "lang": "en",                // operating language
  "agent": {
    "default": "claude",       // AI agent
    "providers": { ... }       // agent settings
  }
}

See the configuration reference for details.

Documentation

| Chapter | Summary | | --- | --- | | Tool Overview and Architecture | This chapter introduces senti, a CLI tool that automates documentation generation from source code analysis and e… | | Technology Stack and Operations | This chapter covers the technology stack, dependency management, deployment, and operations procedures for senti,… | | Project Structure | This chapter describes the overall directory organization of the senti project, which is structured around seven … | | CLI Command Reference | The CLI is organized as command groups that dispatch subcommands from registries, with docs, flow, metrics, spec, and… | | Configuration and Customization | senti is configured through a single project-level JSON file (.senti/config.json) and optionally extended by … | | Internal Design | This project is organized around three main areas: src/docs for documentation analysis and generation, src/flow for S… | | Preset Creation Guide | |

License

MIT