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

codethon-cli

v1.1.0

Published

AI-native execution orchestration for developers and hackathon builders — plan, build, debug, and ship from your terminal.

Readme

CodeThon CLI

Provider-agnostic AI coding agent for the terminal. CodeThon helps you configure a model, understand a repo, plan the work, execute concrete tasks, recover from failures, and ship from one CLI.

npm install -g codethon-cli
ct

Current package: [email protected]

First Run

Run ct.

If no working provider is configured, CodeThon starts guided setup:

  1. Choose OpenAI, Anthropic, NVIDIA, Groq, DeepSeek, Together, Ollama, or LM Studio.
  2. Enter an API key when the provider requires one.
  3. Validate the key.
  4. Select a model.
  5. Run a test request.
  6. Save config and show next actions.

CodeThon stores configuration in the user's home directory, not inside the npm package folder and not inside your source tree.

Terminal UI

CodeThon uses solid terminal icons instead of emoji. The symbols are designed to stay aligned in PowerShell, Windows Terminal, macOS Terminal, Linux terminals, and CI logs.

| Icon | Meaning | |---|---| | | Completed successfully | | | Warning or user attention needed | | | Failed or blocked | | | Active work | | | Queued, checkpoint, or captured state | | | Running or starting an action |

Interactive Mode

CodeThon >

Use ct once to open the workspace, then use slash commands inside CodeThon. Standalone commands such as ct doctor still work for scripts, but the primary builder workflow is /init, /plan, /execute, /analyze, and /profile.

| Input | Result | |---|---| | / | Open the slash-command palette | | /p | Filter commands such as /plan and /profile | | /help | Show categorized command help | | plain English | Ask the configured AI provider |

Common Workflow

/auth add
/init
/plan build a Next.js dashboard with Supabase auth
/execute implement the dashboard shell and auth flow
/profile
/doctor

Execute Workspace Controls

/execute <goal> opens the OLED autonomous workspace. It keeps the mission, live trace, context, diffs, agents, and final receipt inside one terminal screen.

| Key | Action | |---|---| | Ctrl+M | Open Mission Control | | Ctrl+T | Open the live activity trace | | Ctrl+I | Open Context Inspector | | Ctrl+D | Open Diff Inspector | | Ctrl+A | Open the agent matrix | | Esc | Close the active drawer; if no drawer is open, cancel the active run | | Ctrl+C | Gracefully cancel the active run; press again only if it is stuck |

Commands

Setup

| Command | Purpose | |---|---| | /onboard | Run guided setup again | | /auth add | Add and validate a provider credential | | /auth list | Show configured providers and active model | | /auth test [provider] | Test provider authentication | | /auth switch | Switch provider and model | | /auth remove [provider] | Remove a provider credential | | /auth logout | Remove credentials and reset auth state | | /model | Browse and switch models | | /doctor | Diagnose Node, Git, config, auth, network, and project health |

Plan And Understand

| Command | Purpose | |---|---| | /init | Create or register a project workspace | | /plan [goal] | Stream roadmap and architecture generation | | /roadmap | Generate phases and milestones | | /architect | Generate architecture and stack guidance | | /analyze [dir] | Scan project structure and stream an AI summary | | /explain <file> | Explain a file and its risks | | /summarize | Summarize project health, blockers, and priorities |

Build And Repair

| Command | Purpose | |---|---| | /execute <goal> | Run the autonomous agent loop on a concrete task | | /build [goal] | Generate and apply code with build repair | | /autofix | Run build/type checks and apply targeted fixes | | /debug | Analyze errors and stream fix guidance | | /run <cmd> | Run a shell command through policy gates | | /scaffold [dir] | Generate a starter project |

Inspect, Recover, Ship

| Command | Purpose | |---|---| | /profile | Find performance issues and code smells | | /review | Inspect current git changes | | /diff | Show the full git diff | | /checkpoint | Save, list, and restore recovery points | | /recover | Rebuild project context from local files | | /deploy | Generate deployment guidance | | /readme | Generate or refresh README.md | | /launch | Generate demo script and submission copy | | /startup | Analyze product and go-to-market potential | | /learn | Ask a concept question and get a guided tutorial |

Providers

| Provider | Credential | |---|---| | NVIDIA | NVIDIA_API_KEY | | OpenAI | OPENAI_API_KEY | | Anthropic | ANTHROPIC_API_KEY | | Groq | GROQ_API_KEY | | DeepSeek | DEEPSEEK_API_KEY | | Together AI | TOGETHER_API_KEY | | Ollama | none | | LM Studio / local server | none |

Safety

  • --ask gates writes and command execution.
  • --dry-run previews operations.
  • shell execution uses allowlisted binaries and blocked dangerous patterns.
  • child-process environments are filtered for common secret patterns.
  • provider credentials are stored outside project files.
  • .env placeholder writes are rejected.
/execute add password reset
/debug
/autofix

Development

git clone https://github.com/zubershk/CodeThon-CLI
cd CodeThon-CLI
npm install
npm run build
npm test
npm run typecheck

Run the local build:

node apps/cli/dist/index.js

Inspect the npm package:

cd apps/cli
npm pack --dry-run

License

MIT