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

@tinyideas/conti-cli

v0.2.0

Published

CLI for Continuous Suite - manage test plans, docs, help articles, security reviews, and more

Downloads

10

Readme

@tinyideas/conti-cli

CLI tool for Continuous Suite - test plans, docs, help, security reviews, and AI agents

Installation

npm install -g @tinyideas/conti-cli

Or use with npx (no installation required):

npx @tinyideas/conti-cli scan
npx @tinyideas/conti-cli push

Usage

1. Initialize your project (optional)

conti init

This creates a .conti/config.json file with default settings.

2. Scan your project for test plan files

conti scan

This will:

  • Find all .test-plan.md files in your project
  • Validate IDs and detect duplicates
  • Generate a snapshot in .conti/data.json

3. Preview what would be pushed

conti scan --preview

4. Push the snapshot to the cloud

conti scan --push

This uploads your test plan snapshot to the Conti platform.

5. View on the dashboard

Visit the dashboard to see your test plan snapshots!

Configuration

Project Config (.conti/config.json)

{
  "organization": "acme-corp",
  "repository": "acme/qa-tests",
  "products": {
    "test": {
      "enabled": true,
      "sourceBranch": "main",
      "paths": ["**/*.test-plan.md"]
    }
  },
  "settings": {
    "requireExplicitId": false,
    "warnOnStale": true,
    "staleThreshold": 3
  }
}

Remote Config

The CLI can fetch configuration from a remote JSON file. This allows the CLI to stay up-to-date without requiring new releases.

  1. Remote Config (Default): The CLI fetches https://conti.tinyideas.dev/cli-config.json

  2. Priority Order: The CLI resolves the Convex URL in this order:

    • --url flag (explicit override)
    • .env.local file (VITE_CONVEX_URL or CONVEX_URL)
    • process.env (VITE_CONVEX_URL or CONVEX_URL)
    • Remote config (fetched from server)
  3. Caching: Config is cached for 5 minutes to reduce network requests.

Override for Local Testing

To test with a local config server:

export CONTI_CONFIG_URL=http://localhost:3000/cli-config.json
export CONTI_ALLOW_UNPINNED_CONFIG=1
export CONTI_ALLOW_INSECURE_HTTP=1
conti scan --verbose

See cli/LOCAL_TESTING.md for detailed local testing instructions.

Security notes

  • Remote config is fetched over HTTPS from the pinned host only when pushing data. To use a different host, set CONTI_ALLOW_UNPINNED_CONFIG=1 and CONTI_CONFIG_URL=https://your-host/cli-config.json and ensure you trust it.
  • Authentication tokens are stored at ~/.conti/auth.json with restrictive permissions (0700 dir / 0600 file). On shared machines, prefer OS keychain storage or rotate tokens frequently.
  • Provide Convex URLs over HTTPS; set --url or CONVEX_URL/VITE_CONVEX_URL. HTTP is blocked unless you opt into CONTI_ALLOW_INSECURE_HTTP=1 for local testing.

Commands

init

conti init [options]

Options:
  -d, --dir <directory>    Directory to initialize (default: ".")

scan

conti scan [options]

Options:
  -d, --dir <directory>    Directory to scan (default: ".")
  --push                   Automatically push after scanning
  --preview                Show what would be pushed without pushing
  --ci                     CI mode: non-interactive, fails on warnings
  --force                  Force push even from non-source branch
  -u, --url <url>          Convex deployment URL (used with --push)
  --repo <repo>            Repository identifier (overrides auto-detection)
  --branch <branch>        Branch name (overrides auto-detection)
  --verbose                Show detailed parsing information
  --strict                 Fail on validation warnings

push

conti push [options]

Options:
  -u, --url <url>        Convex deployment URL (overrides .env.local)

Product-Specific Commands

conti docs scan       # Scan documentation files
conti help-docs scan  # Scan help center articles
conti secure scan     # Scan security reviews
conti agent push      # Push agent knowledge base

Example Workflows

Basic Workflow

# In your project directory
conti scan
conti push

# Or scan and push in one command
conti scan --push

CI/CD Workflow

# In GitHub Actions or similar
conti scan --push --ci

Preview Before Pushing

# See what would be pushed
conti scan --preview

# Then push if it looks good
conti scan --push

License

MIT