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

@ariaflowagents/starters

v0.4.1

Published

Production-ready AriaFlow starter packs - sales, support, banking, and more

Readme

@ariaflowagents/starters

Production-ready AriaFlow starter packs for common use cases.

Install

npm install @ariaflowagents/starters @ariaflowagents/config @ai-sdk/openai

Available Starters

| Starter | Description | Tags | |---------|-------------|------| | basic | Simple LLM agent with echo tool and skill loader | starter, beginner, template | | sales | Multi-agent sales system with product catalog | sales, ecommerce, lead-qualification | | support | Customer support with ticket creation | support, ticketing, helpdesk | | bank-hybrid | Banking triage with balance/dispute flows | banking, finance, hybrid-flow |

Usage

Install the starter package and extend it:

npm install @ariaflowagents/starters

Create your ariaflow.jsonc:

{
  "$schema": "https://ariaflow.ai/config.json",
  "extends": "./node_modules/@ariaflowagents/starters/sales/ariaflow.jsonc"
}

Run it:

import dotenv from 'dotenv';
import { openai } from '@ai-sdk/openai';
import { loadAriaflowConfig, createRuntimeFromConfig } from '@ariaflowagents/config';

dotenv.config();

const loaded = await loadAriaflowConfig({
  configPath: './ariaflow.jsonc',
  modelRegistry: {
    default: openai('gpt-4o-mini') as any,
  },
});

const runtime = createRuntimeFromConfig(loaded);

for await (const part of runtime.stream({ input: 'Hello!' })) {
  if (part.type === 'text-delta') {
    process.stdout.write(part.text);
  }
}

Extend a Starter

Create your own config that extends the starter:

{
  "$schema": "https://ariaflow.ai/config.json",
  "extends": "./node_modules/@ariaflowagents/starters/sales/ariaflow.jsonc",
  "runtime": {
    "defaultAgent": "sales-triage"
  },
  "agents": {
    "sales-triage": {
      "prompt": "You are an ENTERPRISE sales agent for Fortune 500 companies. Ask about team size and budget immediately."
    }
  }
}

Add Custom Tools

{
  "extends": "./node_modules/@ariaflowagents/starters/sales/ariaflow.jsonc",
  "tools": {
    "my_custom_tool": {
      "type": "module",
      "entry": "./tools/my-custom-tool/index.ts"
    }
  },
  "agents": {
    "sales-agent": {
      "tools": ["product_catalog", "my_custom_tool"]
    }
  }
}

Publish Your Own Starter

Create a starter package:

my-starter/
├── package.json
├── ariaflow.jsonc
├── .ariaflow/
│   ├── prompts/
│   ├── tools/
│   └── flows/
└── README.md
{
  "name": "@myorg/ariaflow-my-starter",
  "version": "1.0.0",
  "main": "ariaflow.jsonc"
}
npm publish
 Structure

Each starter contains```

## Directory:

starter-name/ ├── ariaflow.jsonc # Main config file ├── .ariaflow/ │ ├── prompts/ # System prompts (.md) │ ├── tools/ # Tool implementations │ │ └── tool-name/ │ │ ├── index.ts │ │ └── tool.json │ └── flows/ # Flow definitions (.json) └── README.md


## CLI Testing

Use the config package to test starters:

```bash
cd packages/ariaflow-config
npx tsx examples/run-pack.ts sales
npx tsx examples/run-pack.ts support
npx tsx examples/run-pack.ts bank-hybrid

License

MIT