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

vector-cadence-skills

v0.1.3

Published

Integrated Vector Cadence skill suite for agentic software engineering workflows.

Downloads

275

Readme

Vector Cadence Skills

Vector Cadence Skills is a production-ready skill suite for agentic software engineering workflows. It integrates the useful disciplines from Matt Pocock’s skills and Compound Engineering without making runtime skills depend on upstream command names or block-by-block composition.

Core idea

Each skill owns one lifecycle responsibility:

setup → orient → align → plan → review → slice → triage → execute → review → learn

Use only the amount of process the task needs. See references/minimal-mode.md for lightweight usage.

Skill catalog

| Skill | Purpose | |---|---| | vc-setup | Bootstrap repo instructions, docs, labels, validation commands, and optional budget guard. | | vc-orient | Map a codebase area before planning, debugging, or editing. | | vc-align | Clarify product/domain intent, risks, terminology, and rejected alternatives. | | vc-plan | Write implementation-ready technical plans with units, files, tests, and verification. | | vc-slice | Convert plans into vertical issues or agent briefs. | | vc-triage | Route issues to agent, human, needs-info, or wontfix states. | | vc-prototype | Build a throwaway artifact to answer one design question. | | vc-execute | Implement clear work with workspace safety, TDD, and tiered validation. | | vc-debug | Diagnose bugs with a feedback-loop-first and causal-chain process. | | vc-review | Review code/docs against Standards and Spec with severity/confidence routing. | | vc-architecture | Improve application module boundaries, seams, and testability. | | vc-learn | Capture reusable lessons after verified non-trivial work. | | vc-handoff | Compact state for another agent or future session. | | vc-harness-architect | Design Vector Cadence/pi harness, extensions, subagents, providers, search, and permissions. | | vc-skill-author | Create or improve Vc-compatible skills. |

Naming convention

Skill folders are named vc-*. Slash-command harnesses may expose them as /vc-*, but the canonical skill names are the folder/frontmatter names, such as vc-align.

Recommended workflows

Normal feature

vc-align → vc-plan → vc-review → vc-slice → vc-triage → vc-execute → vc-review → vc-learn

Use vc-review before slicing only for important plans. Use vc-learn only when there is a reusable lesson.

Small known change

vc-execute → optional vc-review

Unfamiliar code

vc-orient → vc-execute

Bug

vc-debug → vc-review → optional vc-learn

Use vc-execute if the diagnosis produces a plan but the fix has not been applied.

Harness work

vc-harness-architect → vc-plan → vc-slice → vc-execute → vc-review

Artifact model

| Artifact | Question answered | |---|---| | AGENTS.md | How should agents operate in this repo? | | CONTEXT.md | What are domain things called? | | STRATEGY.md | What product outcome matters? | | docs/align-notes/ | What did alignment reject, fear, or assume? | | docs/brainstorms/ | What should be built from a product/user view? | | docs/plans/ | How should it be implemented? | | issue tracker or docs/issues/ | What can an agent/human pick up? | | docs/solutions/ | What solved problem should future agents reuse? | | docs/knowledge/ | What was planned, what shipped, and what changed? | | docs/adr/ | Which durable trade-off should future agents respect? | | .out-of-scope/ | Which rejected idea should not be rediscovered? | | docs/handoffs/ | What state should a future agent resume from? |

Included support files

templates/AGENTS.md
templates/CONTEXT.md
templates/vc-budget.yml
scripts/validate-skills.mjs
skills.json
examples/
references/

Validation

From this directory, run:

node scripts/validate-skills.mjs

The validator checks frontmatter, name/path consistency, description length, broken markdown links, banned legacy runtime command names, and line-count warnings.

When not to use full Vector Cadence

Do not run the full lifecycle for:

  • typos,
  • formatting-only changes,
  • obvious one-file fixes,
  • mechanical renames,
  • throwaway experiments,
  • changes with exact user instructions and clear validation.

Use minimal mode instead.

Harness boundary

These markdown skills can guide workflows. They do not by themselves provide tools such as subagents, DeepSeek telemetry, Taste integration, code search indexing, or permission gates. Those belong in future Vector Cadence extensions or the Vector Cadence CLI.

Recommended package split:

@your-scope/vc-core
@your-scope/vc-skills
@your-scope/vc-extensions
@your-scope/vc-cli

Documentation

  • DOCUMENTATION.md — comprehensive architecture documentation.
  • references/architecture-overview.md — shorter architecture overview.
  • references/source-integration-map.md — why each skill chose its source disciplines.
  • references/minimal-mode.md — how to use Vector Cadence without excess process.
  • references/final-skill-quality-bar.md — publishing checklist.