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

@evolutese/agent-catalog

v0.2.6

Published

YAML agent registry and loader for Evolutese — includes 7 ready-to-use blueprints

Readme

@evolutese/agent-catalog

YAML agent registry and loader for the Evolutese platform. Ships with 7 ready-to-use blueprints that work out of the box with evolutese init.

Installation

npm install @evolutese/agent-catalog

Most projects don't need to install this directly — @evolutese/sdk loads the catalog automatically via client.init().


Included blueprints

| Agent | Description | |-------|-------------| | tasks | Create, list, and complete personal or work tasks | | invoice | Draft and finalize invoices with line items, tax, and email delivery | | customers | CRM — search and retrieve customer records | | users | User management — look up user information | | claim | Register and manage customer or internal claims | | reconciliation | Match bank statements to ledger entries, generate reconciliation reports | | workflow | Automate reporting and integrate siloed data |

Blueprints are copied into your project by evolutese init and are fully editable YAML — they are a starting point, not a locked dependency.


Agent YAML format

id: my-agent
name: My Agent
version: "1.0.0"
description: What this agent does
connectors: [mongo, mail]

actions:
  - id: compose
    connector: llm
    params:
      objective: Write a short email body.

intents:
  - name: send_email
    type: workflow
    input_schema:
      type: object
      required: [email, name]
      properties:
        email: { type: string }
        name:  { type: string }
    steps:
      - id: s1
        action: compose
        params: { input: { name: "{{name}}" } }

Intent types:

  • workflow — sequential steps executed by the runtime
  • llm — a single LLM prompt that returns structured output

Validate any agent file before deploying:

evolutese validate agents/my-agent/agent.yml

Direct usage

If you're using @evolutese/runtime directly without the SDK:

import { AgentRegistry } from '@evolutese/agent-catalog';
import { setAgentResolver, bootstrapRuntime, type AgentResolver } from '@evolutese/runtime';

AgentRegistry.configure({ agentsDir: './agents' });
await AgentRegistry.loadFromRegistry();

setAgentResolver(AgentRegistry as unknown as AgentResolver);
await bootstrapRuntime({ connectors: { /* ... */ } });

Programmatic registration (no YAML)

import { AgentRegistry } from '@evolutese/agent-catalog';
import type { AgentDefinition } from '@evolutese/runtime';

const definition: AgentDefinition = {
  id: 'greeter',
  name: 'Greeter',
  version: '1.0.0',
  actions: [{ id: 'send', connector: 'mail', params: { to: '{{email}}', subject: 'Hi!', body: '{{body}}' } }],
  intents: [{ name: 'greet', type: 'workflow', steps: [{ id: 's1', action: 'send' }] }],
};

AgentRegistry.registerAgent(definition);

Custom storage

Implement AgentStorage to load agents from a database or remote API instead of YAML files:

import { AgentStorage } from '@evolutese/agent-catalog';
import type { AgentDefinition } from '@evolutese/runtime';

class MyDbStorage implements AgentStorage {
  async load(id: string, tenantId?: string): Promise<AgentDefinition | null> { /* ... */ }
  async loadAll(tenantId?: string): Promise<AgentDefinition[]> { /* ... */ }
  async save(id: string, def: AgentDefinition, tenantId?: string): Promise<void> { /* ... */ }
}

AgentRegistry.setStorage(new MyDbStorage());

License

MIT