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

@softpractice/softpractice-cli

v0.1.5

Published

CLI for SoftPractice, an online platform for project-based programming practice

Downloads

890

Readme

SoftPractice CLI

English | Русский

The command-line companion for SoftPractice — an online platform for project-based programming practice with an AI mentor.

SoftPractice lets you work on realistic programming tasks in local Git projects, submit committed solutions for review, receive feedback, and continue through a practicum lesson by lesson. The CLI connects your local development workflow to your SoftPractice workspace.

Install

npm install -g @softpractice/softpractice-cli

Verify the installation:

softpractice --help

Getting started

Sign in to SoftPractice:

softpractice login

Download the starter project for your current practicum:

softpractice starter

Open the created directory and check the current lesson:

cd <project-directory>
softpractice status

Work on the project and commit your changes with Git. When the solution is ready, submit the current commit:

softpractice submit

Check the submission and open its result:

softpractice submission show
softpractice open

After an accepted solution, apply the transition to the next available lesson:

softpractice update

Common commands

| Command | Description | | --- | --- | | softpractice login | Sign in through the browser | | softpractice starter | Download the first lesson project | | softpractice status | Show the current lesson and local project state | | softpractice check | Run public checks against the current working tree | | softpractice submit | Submit the current committed Git revision | | softpractice submission show | Show the latest submission and review result | | softpractice update | Apply the transition to the next lesson | | softpractice open | Open the workspace or latest result in the browser | | softpractice project restore | Restore a project from the latest usable revision |

Run softpractice help <command> for detailed help.

Local checks

Run the public checks while working, including against uncommitted changes:

softpractice check

The command uses the current working tree and does not submit anything. If the project uses a Python virtual environment, activate it first so the configured python3 command resolves to that environment.

To run the checks automatically against the exact committed revision before each submission:

softpractice set auto-checks true

softpractice submit --checks enables the same pre-submission check for one run. Unlike softpractice check, submission checks require a clean working tree and run in an isolated snapshot of HEAD.

Language

SoftPractice CLI supports English and Russian and selects a language from the system locale when possible.

Choose a language explicitly:

softpractice set lang en
softpractice set lang ru

You can also override it for a single command:

softpractice --lang ru status

Project recovery

If the original project directory is unavailable, restore the latest usable revision into a new directory:

softpractice project restore \
  --practicum <practicum-id> \
  --directory ./restored-project

The CLI never overwrites an existing project directory.

Links

License

MIT