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

@techwavedev/agi-agent-kit

v1.1.5

Published

Enterprise-Grade Agentic Framework - Modular skill-based AI assistant toolkit with deterministic execution and semantic memory.

Readme

AGI Agent Kit

Enterprise-Grade Agentic Framework & Scaffolding Tool

npm version License: Apache-2.0

@techwavedev/agi-agent-kit is a modular, deterministic framework designed to bridge the gap between LLM reasoning and reliable production execution. It scaffolds a "3-Layer Architecture" (Intent → Orchestration → Execution) that forces agents to use tested scripts rather than hallucinating code.


🚀 Quick Start

Scaffold a new agent workspace in seconds:

npx @techwavedev/agi-agent-kit init

You'll be prompted to choose a pack:

  • core - Essential skills (webcrawler, pdf-reader, qdrant-memory, documentation)
  • knowledge - Core + 36 specialized skills (API, Security, Design, Architecture)
  • full - Complete suite with .agent/ structure (agents, workflows, rules)

✨ Key Features

| Feature | Description | | --------------------------- | -------------------------------------------------------------------------- | | Deterministic Execution | Separates business logic (Python scripts) from AI reasoning (Directives) | | Modular Skill System | Plug-and-play capabilities that can be added or removed instantly | | Semantic Memory | Built-in Qdrant-powered memory with 95% token savings via caching | | Universal Compatibility | Works with Claude, Gemini, and OpenAI via standardized context files | | Self-Healing Workflows | Agents read error logs, patch scripts, and update directives automatically | | Self-Update | Update to the latest version with a single command |


📦 What You Get

your-project/
├── AGENTS.md              # Master instruction file (symlinked to GEMINI.md, CLAUDE.md)
├── skills/                # Pre-built tools
│   ├── webcrawler/        # Documentation harvesting
│   ├── pdf-reader/        # PDF text extraction
│   ├── qdrant-memory/     # Semantic caching & memory
│   ├── documentation/     # Auto-documentation maintenance
│   └── self-update/       # Framework self-update capability
├── directives/            # SOPs in Markdown
├── execution/             # Deterministic Python scripts
├── skill-creator/         # Tools to create new skills
└── .agent/                # (full pack) Agents, workflows, rules

📖 Architecture

The system operates on three layers:

┌─────────────────────────────────────────────────────────┐
│  Layer 1: DIRECTIVES (Intent)                           │
│  └─ SOPs written in Markdown (directives/)              │
├─────────────────────────────────────────────────────────┤
│  Layer 2: ORCHESTRATION (Agent)                         │
│  └─ LLM reads directive, decides which tool to call     │
├─────────────────────────────────────────────────────────┤
│  Layer 3: EXECUTION (Code)                              │
│  └─ Pure Python scripts (execution/) do the actual work │
└─────────────────────────────────────────────────────────┘

Why? LLMs are probabilistic. 90% accuracy per step = 59% success over 5 steps. By pushing complexity into deterministic scripts, we achieve reliable execution.


⚡ Prerequisites

pip install requests beautifulsoup4 html2text lxml qdrant-client

Optional (for semantic memory with local embeddings):

pip install ollama sentence-transformers

🔧 Commands

Initialize a new project

npx @techwavedev/agi-agent-kit init --pack=full

Update to latest version

npx @techwavedev/agi-agent-kit@latest init --pack=full
# or use the built-in skill:
python3 skills/self-update/scripts/update_kit.py

System health check

python3 execution/system_checkup.py --verbose

Create a new skill

python3 skill-creator/scripts/init_skill.py my-skill --path skills/

Update skills catalog

python3 skill-creator/scripts/update_catalog.py --skills-dir skills/

📚 Documentation


🛡️ Security

This package includes a pre-flight security scanner (verify_public_release.py) that checks for private terms before publishing. All templates are sanitized for public use.


📄 License

Apache-2.0 © Elton Machado@TechWaveDev