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

evoltagent

v1.1.3

Published

Evolt is an AI Agent framework with autonomous evolution capability.

Readme

Evoltjs

English | 中文

Today’s AI coding tools solve one-shot code generation. But the real cost of software lies in long-term evolution: changing requirements, architectural drift, and endless maintenance — turning top engineers into permanent system caretakers.

EVOLT exists to end this.

EVOLT is a framework for self-evolving agents that enables AI to own the full software lifecycle — from initial construction, to long-term maintenance, to continuous evolution.

We are not building another code assistant. We are solving the core problem of long-horizon software engineering.


🏗️ Core Architecture (Vision)

EVOLT is built around a self-evolving improvement engine with three layers:

  • 🛠️ Tool-using agents — Agents that can read, write, test, and refactor real codebases like software engineers.
  • 💾 Persistent experience — Successful actions and patterns are encoded as reusable, composable knowledge assets. (Planned)
  • 🧠 Self-evolution — Agent strategies and workflows continuously improve through experience. (Planned)

✅ Current Status

EVOLT has already open-sourced and stabilized its core foundation: tool-using agents. You can today build AI agents that understand and operate on real code repositories.

We are actively designing and developing self-evolution and persistent experience. The full roadmap is public — contributions and discussion are welcome.


🚀 Why Start with Tools?

We believe that powerful, programmable tool-use is the foundation of long-term autonomy. Before an agent can learn how to improve itself, it must first be able to act reliably in the real world — just like a human engineer working on a live codebase.

Installation

Local Development

For local development, you can use npm link to test the package, especially after making code changes and wanting to test the modified effects locally:

# In the project root directory  
npm run build  
npm link  

# In the project where you want to use evoltagent  
npm link evoltagent  

Install from npm (After Release)

npm install evoltagent  

Usage

Basic Example

⚠️ Note: The configuration file config.yaml uses camelCase naming (e.g., apiKey, baseUrl), which differs from the snake_case used in the Python version. For details, refer to LLM_CONFIG.md.

import { Agent, ModelResponse, ModelConfig } from "evoltagent";  

// Configure the model using ModelConfig  
const modelConfig: ModelConfig = {  
  provider: "deepseek",  
  model: "deepseek-chat",  
  apiKey: process.env.DEEPSEEK_API_KEY,  
  baseUrl: process.env.DEEPSEEK_BASE_URL || "https://api.deepseek.com/v1",  
  contextWindowTokens: 128000,  
  maxOutputTokens: 8092,  
  temperature: 0.2,  
  topP: 0.9,  
  stream: true,  
};  

async function main() {  
  const agent = new Agent({  
    name: "posy",  
    profile: "You are a helpful assistant.",  
    tools: ["ThinkTool.execute", "Reply2HumanTool.reply"],  
    modelConfig: modelConfig,  
  });  

  const result = await agent.run("Please introduce yourself");  
  console.log("Agent response:", result);  
}  

main().catch(console.error);  

Using MCP Tools

First, you need to set up the configuration file. For the configuration method of the MCP Server, refer to LLM_CONFIG.md for details. If you have configured model parameters, you can use the model name from the configuration file to replace the ModelConfig above.

import { Agent, ModelResponse } from "evoltagent";  

async function runAgent(userInput: string): Promise<ModelResponse[]> {  
  const agent = new Agent({  
    name: "posy",  
    profile: "You are an assistant capable of operating a browser.",  
    mcpServerNames: ["playwright"],  
    modelConfig: "deepseek",  
    verbose: 2,  
  });  

  return await agent.run(userInput);  
}  

Development

Build the Project

npm run build  

Run Examples

⚠️ Note: Files in examples/agent/ require BOYUE_API_KEY and BOYUE_API_URL to be set in the .env file.

⚠️ Note: To use another provider, simply adjust the configuration in examples/agent/modelConfig.ts.

# Basic examples  
npx tsx examples/agent/agentDemoWithModelConfig.ts  
npx tsx examples/agent/agentDemo.ts  

# MCP tools example  
npx tsx examples/agent/agentWithMCPTools.ts  

Exported Modules

Core Modules

  • Agent - Main Agent class
  • Model - Model class
  • Message, MessageHistory - Message and message history management

Tools

  • SystemToolStore, FunctionCallingStore - Tool storage
  • ThinkTool - Thinking tool
  • CommandLineTool - Command line tool
  • FileEditor - File editor
  • Reply2HumanTool - Reply-to-human tool
  • TodoListTool - Todo list tool
  • GitTool - Git tool

Tool Registration

  • tools - Register tools
  • registerAgentAsTool - Register Agent as a tool

Environments

  • BaseEnvironment - Base environment
  • CodingEnvironment - Coding environment

Configuration

  • loadModelConfig - Load model configuration
  • Other configuration constants and paths

🙏 Acknowledgments

Sincere thanks to the open-source project claude-quickstarts, which provided significant assistance during the development of this project.