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

@cortiqa/cordenex

v0.1.23

Published

Cordenex — AI-Powered Autonomous Coding Assistant with Parallel Execution

Readme

🤖 Cordenex v2 — Autonomous AI Software Engineer

Version License Built by Cortiqa

Cordenex is a high-performance, autonomous AI coding assistant designed for the terminal. Inspired by the logic of Claude Code and the power of specialized agentic workflows, Cordenex brings Anthropic-level engineering capabilities to your local environment.

"Stop chatting with code. Start engineering with it."


🔥 Key Pillars of Cordenex v2

1. 🧠 Project Intelligence & Memory

  • CORDENEX.md (Project Memory): Define project-specific rules, conventions, and tech-stack details that persist across every AI turn.
  • Auto-Context Detection: Cordenex automatically analyzes your project (languages, frameworks, dependencies) to provide hyper-relevant suggestions without you explaining anything.
  • Session Journaling: Maintains a rolling "Journal" of what was accomplished, providing continuity even if you restart the terminal.

2. ⚡ Autonomous Execution Engine

  • Parallel Tool Execution: Executes multiple file operations, shell commands, and searches concurrently to save time.
  • Self-Healing Workflows: If a tool fails (e.g., missing directory, syntax error), Cordenex automatically diagnoses the issue, fixes its own mistakes, and retries.
  • Smarter Mode Switching: Automatically switches between Chat Mode (for explanations) and Agent Mode (for complex migrations) based on the task complexity.

3. 🛡️ Safety & Permission Tiers

  • Tiered Permissions:
    • Read-only: Always allowed (safe).
    • Write: Needs approval by default.
    • Dangerous: Shell access and deletions always ask for confirmation.
  • Smart Approvals: Approve a batch of parallel actions once, not one by one.

4. 🛠️ Developer First Experience

  • Rich Interactive UI: Features a streaming interface with real-time Thinking Steps (Reasoning blocks).
  • Universal Provider Support: Anthropic (Claude 3.5), OpenAI (GPT-4o), Google (Gemini 2.0), Groq (Llama 3.3 for speed), and Ollama for full offline privacy.
  • Undo System: Accidentally broke something? Use /undo to revert file changes instantly.

🚀 Installation & Setup

1. Install via NPM (Recommended)

npm install -g @cortiqa/cordenex

2. Setup your Provider

Cordenex supports all major AI backends. We recommend Claude 3.5 Sonnet (via Anthropic) or Llama 3.3 (via Groq) for the best results.

# Set your API Key
cordenex config set providers.anthropic.api_key your_key_here

# Set default model
cordenex switch claude-3-5-sonnet

💻 Commands Reference

| Command | Description | | :--- | :--- | | cordenex chat | Start the main interactive engineering session. | | cordenex ask "prompt" | Run a one-shot task and exit. | | cordenex init | Initialize CORDENEX.md and project rules. | | cordenex auth login | Authenticate with Cortiqa Cloud. | | cordenex config set <key> <val> | Configure settings (UI, AI, Logging). | | cordenex models | List all supported and configured models. |

⚡ Slash Commands (Within Chat)

  • /undo: Revert the last set of file changes.
  • /memory: View or edit your project-specific CORDENEX.md.
  • /permissions: Change safety level (allow-write, allow-all, default).
  • /changes: Show a summary of files modified in this session.
  • /clear: Reset the conversation history.
  • /model <id>: Switch models on the fly.

🏗️ Architecture

Cordenex v2 is built in Go for maximum speed and zero-dependency binaries.

  • internal/core: The brain. Contains the Engine (LLM logic), Orchestrator (mode switching), and Journal (memory).
  • internal/tools: The hands. Filesystem operations, Shell execution, and Context retrieval.
  • internal/providers: The interface. Unified API for OpenAI, Anthropic, Gemini, etc.

For deeper technical details, see ARCHITECTURE.md.


🤝 Contributing

We welcome contributions!

  1. Fork the repo.
  2. Run go build ./cmd/cordenex to test changes.
  3. Submit a PR.

Built with ❤️ by Cortiqa Website | GitHub