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

okran-code

v1.8.0

Published

Okran Code 1.3 — Terminal AI Coding Agent that auto-routes tasks across GPT, Gemini, Grok, and DeepSeek

Downloads

609

Readme

✦ Okran Code 1.3

Terminal AI Coding Agent by Okran Ai

Okran Code 1.3 is a powerful terminal-based AI coding agent that reads, writes, and builds code directly in your filesystem. It auto-routes every task to the best AI engine — GPT-5.3 Codex, Gemini, Grok, or DeepSeek — with no configuration needed.


Install

npm install -g okran-code

Then run from any directory:

okran-code
# or shorthand:
okran

Setup

Create a .env file in your project or ~/.okran-code/.env with your API keys:

# Required — OpenAI (GPT-5.3 Codex)
OKRANCODE_OPENAI_API_KEY=sk-...

# Optional — enables additional engines
GOOGLE_API_KEY=...        # Gemini
GROK_API_KEY=...          # Grok
DEEPSEEK_API_KEY=...      # DeepSeek

# Optional — save sessions & builds to Okran DB
NEXT_PUBLIC_SUPABASE_URL=...
NEXT_PUBLIC_SUPABASE_ANON_KEY=...
SUPABASE_SERVICE_ROLE_KEY=...

Auto-Routing

Okran Code 1.3 analyses your prompt and picks the right engine automatically:

| Task type | Engine | |---|---| | Algorithms, math, Rust / Go / C++ | DeepSeek | | Bash scripts, quick one-liners, trending | Grok | | Docs, README, large file analysis | Gemini | | Everything else — React, TS, full apps, refactors | GPT-5.3 Codex (default) |

If one engine fails, Okran Code automatically falls back to the next available one.


Commands

| Command | Description | |---|---| | /help | Show all commands | | /cd <path> | Change working directory | | /ls [path] | List directory | | /open <file> | Open a file in your editor or default app | | /run <file> | Run a script directly (.js .ts .py .sh .rb) | | /builds | Show your saved builds from Okran DB | | /history | Show conversation history | | /clear | Clear the screen | | /exit or q | Exit |

Or just type anything and Okran Code will handle it.


Examples

✦ ~/projects › build me a Next.js todo app with Tailwind and Supabase
✦ ~/projects › read package.json and tell me what's outdated
✦ ~/projects › add dark mode to my app
✦ ~/projects › write a binary search in Go
✦ ~/projects › /builds

Database (optional)

Okran Code can log every session, message, and build to your Supabase database.
Run schema.sql in your Supabase SQL Editor to create the required tables.

Tables created:

  • spark_agent_sessions — every terminal session
  • spark_agent_messages — full conversation logs
  • spark_agent_builds — every file the agent created or modified

Made by Okran Ai