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

solveos-cli

v0.1.0

Published

Install the solveOS problem-solving framework as slash commands, agents, and hooks into AI coding assistants

Downloads

107

Readme

solveos-cli

Install the solveOS problem-solving framework as slash commands, agents, and hooks into your AI coding assistant.

solveOS teaches you how to think about AI-assisted work. solveos-cli makes sure you actually do it.

What it does

solveos-cli adds a structured Plan -> Build -> Ship cycle to your AI coding assistant with:

  • 14 slash commands for every step of the cycle
  • 7 specialized agents (planner, researcher, executor, validators, reviewer, debugger)
  • Optional quality gates (research, plan validation, build validation, review)
  • Wave-based parallel execution for complex builds
  • Markdown-based state -- all artifacts live in .solveos/, no databases or cloud accounts

It does not replace your coding assistant. It adds structure on top of it.

Supported runtimes

| Runtime | Priority | Command prefix | |---------|----------|----------------| | OpenCode | P0 | /solveos-new | | Claude Code | P1 | /solveos-new | | Cursor | P2 | /solveos-new | | Gemini CLI | P3 | /solveos:new |

Quick start

1. Install

npx solveos-cli@latest

The installer auto-detects your runtime and copies commands, agents, and templates into the correct directories. Pass --runtime <name> to override detection (e.g., --runtime claude-code).

2. Start a cycle

/solveos-new

This initializes the .solveos/ directory with a config file, state tracker, and empty brief.

3. Plan

/solveos-plan

The planner agent walks you through the 8 Plan Brief questions: Problem, Audience, Goal, Appetite, Constraints, Success Criteria, Core Assumption, and Rabbit Holes.

4. Build

/solveos-build

The executor agent works through the plan using wave-based parallel execution, checking off success criteria as it goes.

5. Ship

/solveos-ship

Final confirmation, archival to .solveos/history/, and cycle completion.

Command reference

| Command | Description | |---------|-------------| | /solveos-new | Start a new project or cycle | | /solveos-research | Conduct bounded research on a specific question | | /solveos-plan | Create a Plan Brief via the planner agent | | /solveos-validate-plan | Validate the Plan Brief (catches ambiguity early) | | /solveos-build | Execute the Build phase against the Plan Brief | | /solveos-validate-build | Validate build output against success criteria | | /solveos-review | Pre-ship or post-ship review | | /solveos-ship | Ship the current cycle | | /solveos-status | Show current cycle status | | /solveos-next | Suggest or execute the next step | | /solveos-new-cycle | Start a new cycle with feed-forward from review | | /solveos-quick | Lightweight workflow: minimal plan + immediate build | | /solveos-fast | Zero-overhead inline execution, no artifacts | | /solveos-archive | Manually archive/abandon the current cycle |

Agents

| Agent | Role | |-------|------| | solveos-planner | Guides Plan Brief creation through interactive questioning | | solveos-researcher | Conducts bounded research to inform planning | | solveos-executor | Executes work using wave-based parallel execution | | solveos-plan-validator | Validates Plan Brief against 3 core questions | | solveos-build-validator | Validates build output against success criteria | | solveos-reviewer | Runs pre-ship judgment or post-ship outcome measurement | | solveos-debugger | Diagnoses issues found during validation gates |

The cycle

         [Research]          [Validate Plan]     [Validate Build]    [Review]
            |                     |                    |                |
INIT -> RESEARCHING -> PLANNING -> VALIDATING_PLAN -> BUILDING -> VALIDATING_BUILD
                                                        |
                                                   REVIEWING_PRE -> READY_TO_SHIP -> SHIPPED
                                                                                       |
                                                                               REVIEWING_POST -> CYCLE_COMPLETE

Gates in [brackets] are optional. Skip any gate to move faster; enable all for maximum rigor.

Rigor scaling

| Mode | Commands | Gates | Artifacts | Use when | |------|----------|-------|-----------|----------| | Full | All 14 | All enabled | Full .solveos/ | Multi-day features, high-stakes changes | | Quick | /solveos-quick | None | Minimal brief | Small features, well-understood problems | | Fast | /solveos-fast | None | None | Bug fixes, one-liners, trivial changes |

Configuration

Configuration lives in .solveos/config.json. Key options:

{
  "mode": "interactive",
  "gates": {
    "research": true,
    "plan_validation": true,
    "build_validation": true,
    "review_pre_ship": true,
    "review_post_ship": true
  },
  "plan_validation_max_passes": 3,
  "granularity": "standard",
  "domain": "software",
  "runtime": "auto",
  "hooks": {
    "context_monitor": true,
    "context_monitor_threshold": 60,
    "brief_anchor": true,
    "brief_anchor_interval": 10
  }
}

| Option | Values | Default | Description | |--------|--------|---------|-------------| | mode | interactive, auto | interactive | Whether gates require human confirmation | | gates.* | true, false | true | Enable/disable individual quality gates | | plan_validation_max_passes | 1-10 | 3 | Max validation loops before escalation | | granularity | coarse, standard, fine | standard | Wave execution unit size | | domain | software, content, research, strategy, general | software | Domain-specific agent prompt variants | | runtime | opencode, claude-code, cursor, gemini, auto | auto | Target runtime (auto-detected if auto) |

Project structure

After installation, your project gains:

.solveos/
  config.json          # Configuration
  STATE.md             # Current cycle state (human-readable)
  BRIEF.md             # Plan Brief for current cycle
  research/            # Research summaries
  validations/         # Plan and build validation logs
  reviews/             # Pre-ship and post-ship reviews
  history/             # Archived cycles
  notes/               # Freeform notes

Domain modes

solveos-cli is domain-agnostic. The domain setting adjusts agent prompts:

  • software -- Code-focused: PRs, tests, CI, APIs, deployment
  • content -- Writing-focused: drafts, outlines, editorial review
  • research -- Investigation-focused: hypotheses, evidence, synthesis
  • strategy -- Decision-focused: options analysis, stakeholder alignment
  • general -- No domain-specific adjustments

Links

License

MIT