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

koneck

v2.25.39

Published

Kinetically Orchestrated Neural Execution Engine for Code

Readme

KONECK

Kinetically Orchestrated Neural Execution Engine for Code

A CLI AI coding agent that works like Claude Code or Codex CLI — drop into a chat, give it a task, and it reads, writes, and runs code autonomously using any LLM provider.

Install

npm install -g koneck

Then run koneck — the first-run wizard sets up your API key and provider.

Quick Start

koneck                              # interactive chat (first run → setup wizard)
koneck "add validation to auth.ts"  # one-shot task
koneck --pr "fix the flaky tests"   # task + open a PR when done

Providers

| Provider | Env Var | Default Model | |---|---|---| | omni (OmniRoute) | OMNI_ROUTE_API_KEY | auto/best-coding | | openai | OPENAI_API_KEY | gpt-4o | | anthropic | ANTHROPIC_API_KEY | claude-opus-4-5 | | google | GOOGLE_API_KEY | gemini-2.0-flash | | groq | GROQ_API_KEY | llama-3.3-70b-versatile | | deepseek | DEEPSEEK_API_KEY | deepseek-coder | | mistral | MISTRAL_API_KEY | mistral-large-latest | | together | TOGETHER_API_KEY | meta-llama/Llama-3-70b-chat-hf | | xai | XAI_API_KEY | grok-beta | | perplexity | PERPLEXITY_API_KEY | llama-3.1-sonar-large-128k-online | | moonshot | MOONSHOT_API_KEY | moonshot-v1-8k | | cohere | COHERE_API_KEY | command-r-plus | | ollama (local) | (none) | llama3.2 |

CLI Reference

Flags

| Flag | Description | |---|---| | -p, --provider | LLM provider to use (e.g. openai, anthropic, omni) | | --base-url | Override the provider base URL | | -m, --model | Model name to use | | -t, --max-turns | Maximum agentic turns before stopping | | -a, --approve | Auto-approve all tool calls | | -w, --worktree | Run in an isolated git worktree | | -C, --cwd | Set working directory | | -v, --verbose | Print full tool call input/output | | --ci | Non-interactive CI mode | | --json | Output structured JSON | | --budget | Token/cost budget limit | | --pr | Open a pull request when the task completes | | -V, --version | Print version | | -h, --help | Show help |

Subcommands

| Subcommand | Description | |---|---| | chat | Start an interactive chat session (default) | | doctor | Check provider connectivity and configuration | | stats | Show usage statistics | | watch [pattern] | Watch files matching pattern and re-run on changes | | setup | Interactive first-run configuration wizard | | init | Generate a KONECK.md for the current project | | completion [shell] | Print shell completion script (bash/zsh/fish) | | --sessions | List recent sessions | | --resume <id> | Resume a previous session by ID |

Quality and governance

KONECK verifies changed projects after a coding task by running the detected lint and test commands. In chat, run /quality at any time to repeat that check.

Every top-level tool operation is also appended to .koneck/audit/ as a structured JSONL event with its timestamp, duration, outcome, and a redacted action summary. File contents are never stored in the audit trail. Use /audit or /audit 50 in chat to inspect recent activity.

Repository policy

Run /policy init in chat to create .koneck/policy.json. The policy is enforced before built-in file and command tools execute. It can protect secret paths, block dangerous command patterns, require approval for selected tools, and limit writes to specified paths.

Workspace trust and updates

When KONECK is opened in an interactive folder, it asks whether it may access that workspace for the current session, always, or not at all. Persistent workspace approvals are stored locally in the user's KONECK configuration.

KONECK also checks the npm registry at most once per day and shows an upgrade notice when a newer published version is available. It never installs or publishes updates automatically.

KONECK.md

Place a KONECK.md in your project root to give KONECK project-specific context — architecture notes, conventions, commands to run before editing, files to avoid, and anything else the agent should know up front.

Run koneck init to auto-generate one from your existing codebase, or koneck setup to walk through it interactively.

MCP Servers

KONECK supports Model Context Protocol servers declared in .koneck/mcp.json:

// .koneck/mcp.json
{
  "servers": {
    "github": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"] }
  }
}

Servers are started automatically when KONECK launches and their tools become available to the agent.

Configuration

Global config lives in ~/.koneckrc:

{ "provider": "anthropic", "model": "claude-opus-4-5", "baseURL": "https://..." }

Project-level config can be placed in .koneck/config.json and takes precedence over the global config.

License

MIT