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

@kynetic-ai/spec

v0.12.0

Published

Kynetic Spec - Structured specification format for human-AI collaboration

Readme

kspec

kspec is spec-first task management for AI-assisted development.

It gives you a durable spec tree, linked implementation tasks, and a shadow-branch workflow that keeps project planning state out of your main git history. The result is a tighter loop between "what should exist", "what is being worked on", and "what shipped".

Early-stage software: expect rough edges and command/API changes while the workflow stabilizes.

Why teams use it

  • Define features and requirements before implementation.
  • Derive tasks directly from specs instead of duplicating intent in tickets.
  • Keep spec and task state in a separate kspec-meta branch via the .kspec/ worktree.
  • Give human and AI contributors the same project context through kspec session start and generated agent instructions.

Quick start

Install kspec:

npm install -g @kynetic-ai/spec

Or run it without a global install:

npx @kynetic-ai/spec --help

Initialize a project:

kspec init
kspec setup
kspec session start

That three-command sequence is the common starting point across real kspec projects:

  1. kspec init creates the project manifest plus the .kspec/ shadow worktree.
  2. kspec setup configures agent authoring and local runtime integration.
  3. kspec session start shows active work, ready tasks, and pending project context.

For install details, cloning existing kspec projects, and troubleshooting, see INSTALL.md.

The spec-first loop

The core workflow is short:

# 1. Define what should exist
kspec item add --under @main --title "Contributing guide" --type feature --slug contributing-guide
kspec item ac add @contributing-guide \
  --given "a new contributor opens the repository" \
  --when "they look for project workflow guidance" \
  --then "they can follow a documented path to set up, make changes, and submit work"

# 2. Derive implementation work from the spec
kspec derive @contributing-guide

# 3. Start and track execution
kspec task start @task-contributing-guide
kspec task note @task-contributing-guide "Drafting CONTRIBUTING.md and linking it from README."

# 4. Submit after code/docs + PR are ready
kspec task submit @task-contributing-guide

# 5. Complete after merge
kspec task complete @task-contributing-guide --reason "Merged in PR #123."

For the full walkthrough from install to first completed task, see docs/getting-started.md.

How it works

Specs stay separate from product code

By default, kspec stores specs, tasks, plans, and workflow state inside .kspec/, which is a git worktree backed by an orphan kspec-meta branch. Your source branch stays focused on code. Your planning state remains versioned and auditable.

Tasks stay linked to intent

When you run kspec derive @spec-ref, the resulting task keeps a spec_ref back to the originating item. Reviews can validate the implementation against acceptance criteria instead of relying on a loosely-related ticket title.

Agents get the same context humans do

kspec setup and kspec agents generate produce project-scoped instructions and skills so agents can follow the same conventions, workflows, and task lifecycle you use manually.

Where to go next

Developing kspec itself

This repository is the source for the @kynetic-ai/spec npm package. If you want to work on kspec rather than adopt it in another repo, use the contributor/development setup in INSTALL.md and the project workflow in AGENTS.md.