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

agneto

v0.6.2

Published

AI-powered autonomous coding agent with human-in-the-loop planning

Readme

Agneto

npm version Node.js Version License: Source-Available

An AI-powered development system that actually writes code for you - with human oversight where it matters.

Table of Contents

What to Expect

Agneto is like having a junior developer who:

  • Plans before coding - Shows you the implementation plan for approval
  • Works in small steps - Makes focused changes that are easy to review
  • Asks when uncertain - Requests human input for critical decisions
  • Never touches main - All work happens in isolated git worktrees
  • Provides full audit trail - Every action is logged for debugging and compliance
  • Offers real-time monitoring - Web dashboard shows progress as it happens

Perfect for: bug fixes, new features, refactoring, test writing, and routine development tasks.

Quick Start

Prerequisites

Before using Agneto, ensure you have:

  • Node.js >= 18.0.0
  • Git repository (initialized in your project)
  • Claude CLI configured:
    npm install -g @anthropic-ai/claude-code
    # Follow setup instructions to authenticate

No Installation Needed

Just use npx to get started immediately:

npx agneto "describe your task"

You'll be prompted to review the plan, then Agneto handles the implementation.

Alternative: Global Installation

If you prefer to install globally:

npm install -g agneto
agneto "your task description"

Real Examples

# Fix a bug
npx agneto "fix authentication bug in login flow"
# → Agneto analyzes code, creates fix plan, implements, and tests

# Add a feature
npx agneto "add dark mode toggle to settings page"
# → Agneto plans UI changes, state management, and styling

# Write tests
npx agneto "add unit tests for payment processing"
# → Agneto analyzes code and writes comprehensive tests

# Refactor code
npx agneto "refactor database module to use connection pooling"
# → Agneto identifies changes needed and refactors safely

Advanced Usage

# Skip interactive planning (CI/automation)
npx agneto "update dependencies" --non-interactive

# Auto-merge to main when complete
npx agneto "fix typo in README" --auto-merge

# Use custom task ID for tracking
npx agneto auth-fix-1 "fix authentication bug"

# Run with debugging output
DEBUG=true npx agneto "complex task"

System Requirements

  • Node.js: Version 18.0.0 or higher
  • Git: Initialized repository (any version)
  • Claude CLI: Configured and authenticated
  • Terminal: Any modern terminal with UTF-8 support
  • Operating System: macOS, Linux, or Windows

Features

Core Capabilities

  • Interactive planning with human feedback
  • Safe sandbox execution in git worktrees
  • Automatic work breakdown into small chunks
  • Built-in code review process
  • Test execution and verification
  • Non-interactive mode for automation

Advanced Features

  • Comprehensive audit system - Full logging and checkpoint recovery
  • Real-time web dashboard - Live monitoring and visualization
  • Terminal bell notifications - Audio feedback for task completion
  • Environment variable controls - Flexible configuration options
  • NPX package distribution - No installation required
  • State machine architecture - Clear task and execution lifecycle
  • Natural language protocol - Robust agent communication

How It Works

AI Agent Team Architecture

Think of Agneto as a self-organizing AI development team with specialized roles:

┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐
│   Planner   │ →  │ Curmudgeon  │ →  │Bean Counter │ →  │    Coder    │
│ (Strategy)  │    │(Simplifies) │    │(Coordinates)│    │(Implements) │
└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘
                                                                   ↓
┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐
│SuperReviewer│ ←  │ Task Refiner│ ←  │  Reviewer   │ ←  │   Scribe    │
│(Final Check)│    │(Clarifies)  │    │ (Validates) │    │(Commits)    │
└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘

Execution Flow

  1. You describe what needs to be done
  2. Task Refiner clarifies vague descriptions (interactive mode)
  3. Planner creates the approach and shows you
  4. Curmudgeon reviews for over-engineering and simplifies
  5. You approve (or request changes to the plan)
  6. Bean Counter breaks work into small, manageable chunks
  7. Coder implements each chunk with built-in tools
  8. Reviewer validates each implementation
  9. SuperReviewer performs final quality check
  10. You merge when satisfied with the result

All work happens in isolated git worktrees (.worktrees/<task-id>/), so your main branch is always safe.

After Task Completion

When Agneto finishes, you'll get clear instructions for merging:

# Review changes
cd .worktrees/<task-id>
git diff master

# If satisfied, merge to master
git checkout master
git merge sandbox/<task-id> --squash
git commit -m "Your commit message"

# Clean up
git worktree remove .worktrees/<task-id>
git branch -D sandbox/<task-id>

Monitoring & Debugging

Web Dashboard

Launch the real-time dashboard to monitor task execution:

# Start dashboard (opens on http://localhost:3000)
npm run dashboard

# Or if using Agneto globally
agneto-dashboard

The dashboard provides:

  • Live task monitoring with agent communications
  • Performance metrics including cost and duration tracking
  • Event history with search and filtering
  • WebSocket updates for real-time progress

Audit System

Every task creates a comprehensive audit trail:

.agneto/task-{id}/
├── events/               # Individual JSON event files
├── metadata.json         # Task metadata and summary
└── summary.md           # Human-readable execution summary

Useful audit commands:

# View task summary
cat .agneto/task-abc123/summary.md

# Find specific agent events
grep -r "agent.*coder" .agneto/task-abc123/events/

# Check for errors
grep -r "error\|failed" .agneto/task-abc123/events/

Debug Mode

Enable verbose debugging to see exactly what's happening:

DEBUG=true npx agneto "your task"

This shows:

  • Exact prompts sent to Claude
  • Raw agent responses
  • Command construction details
  • File system operations

Configuration

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | DEBUG | false | Enable verbose debugging output | | LOG_LEVEL | info | Logging verbosity (debug, info, warn, error) | | DISABLE_AUDIT | false | Disable audit logging completely | | DISABLE_CHECKPOINTS | false | Disable checkpoint creation | | MAX_CHECKPOINTS | 10 | Maximum checkpoints to retain | | AGNETO_DASHBOARD_ENDPOINT | http://localhost:3000 | Dashboard server URL |

Common Configurations

Development setup:

# Full monitoring with debugging
DEBUG=true npm run dashboard &
AGNETO_DASHBOARD_ENDPOINT=http://localhost:3000 npx agneto "development task"

CI/CD setup:

# Minimal, non-interactive mode
DISABLE_AUDIT=true npx agneto "ci task" --non-interactive

Production deployment:

# Optimized with checkpoints
LOG_LEVEL=warn MAX_CHECKPOINTS=5 npx agneto "production task" --non-interactive

What Makes Agneto Different

  • Not a copilot - Agneto handles entire tasks, not just line completions
  • Safe by default - Never touches your main branch directly
  • Human-in-the-loop - You stay in control of important decisions
  • Real code review - Built-in review process catches issues early
  • Learns your codebase - Understands your patterns and conventions
  • Comprehensive monitoring - Full audit trail and real-time dashboard
  • Checkpoint recovery - Resume from any point if something goes wrong

Release Process

For Maintainers

Agneto uses an automated CI/CD pipeline for publishing releases to NPM and creating GitHub releases. The process is triggered by semantic version tags.

Quick Release Commands

Use these NPM scripts to bump versions and trigger automated publishing:

# Patch release (bug fixes): 0.1.0 → 0.1.1
npm run version:patch

# Minor release (new features): 0.1.0 → 0.2.0
npm run version:minor

# Major release (breaking changes): 0.1.0 → 1.0.0
npm run version:major

Each command will:

  1. Bump the version in package.json
  2. Create a git tag (e.g., v0.1.1)
  3. Push the tag to GitHub
  4. Trigger the automated release workflow

Automated Release Workflow

When a version tag is pushed, GitHub Actions automatically:

  1. Validates Environment - Checks for required secrets
  2. Runs Tests - Ensures code quality before publishing
  3. Builds Project - Compiles TypeScript and prepares distribution
  4. Generates Changelog - Creates release notes from git commits
  5. Publishes to NPM - Uploads package to npmjs.org (with retry logic)
  6. Creates GitHub Release - Publishes release with changelog

Repository Setup Requirements

Before using the automated release system, ensure these GitHub repository secrets are configured:

# Required secrets in GitHub repository settings:
NPM_TOKEN=npm_xxxxxxxxxxxxxxxxxxxxxxxxxxxx    # NPM automation token
GITHUB_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxx # GitHub PAT (usually auto-provided)

Setting up NPM_TOKEN:

  1. Log into npmjs.com
  2. Go to Account SettingsAccess Tokens
  3. Create new token with Automation permissions
  4. Copy token to GitHub repository SettingsSecrets and variablesActions
  5. Add as NPM_TOKEN secret

Troubleshooting Common Issues

Empty changelog generated:

  • Ensure commits follow conventional format: feat:, fix:, docs:, etc.
  • Check that there are commits between the previous tag and current tag

NPM publish fails:

  • Verify NPM_TOKEN secret is correctly configured
  • Check that the version doesn't already exist on NPM
  • Ensure package name is available (if first publish)

GitHub release creation fails:

  • Verify GITHUB_TOKEN has sufficient permissions
  • Check that the tag was pushed successfully
  • Ensure repository settings allow release creation

Tests fail during workflow:

  • All tests must pass before publishing
  • Fix failing tests and re-run version command

Tag format rejected:

  • Tags must follow semantic versioning: v1.2.3
  • Avoid additional suffixes like v1.2.3-beta

Contributing

Thanks for your interest in Agneto!

Current Status: This project is not accepting code contributions or pull requests at this time.

What you can do:

  • Report bugs by opening issues
  • Request features via GitHub issues
  • Ask questions in discussions
  • 🚫 Pull requests will not be merged

Commercial Use: If you're interested in commercial licensing, please contact [email protected].

For more details, see CONTRIBUTING.md.

Documentation

For detailed documentation, troubleshooting, and configuration options:

License

This software is source-available under a custom license.

Permitted: Personal, educational, and research use Prohibited: Commercial use without separate license

Copyright (c) 2025 Dražen Urch

See LICENCE.md for complete terms.


Repository: https://github.com/durch/agneto NPM Package: https://www.npmjs.com/package/agneto