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

@epicdm/flowstate-agents-core

v1.0.0

Published

Core data models and business logic for Epic Flow AI Agents

Readme

@epic-flow/agents-core

Core data models and business logic for Epic Flow AI Agents system.

Description

@epic-flow/agents-core provides the foundational data models, schemas, and business logic for the Epic Flow AI Agents system. This package defines RxDB collections for agents, sessions, and messages, along with validation schemas and utility functions for managing AI agent workflows.

Purpose

This package serves as the data layer for the Epic Flow AI Agents system, providing:

  • Type-safe data models for agents, sessions, and messages
  • RxDB collection schemas for reactive data management
  • Validation logic using Zod schemas
  • Utility functions for common operations
  • Shared types and interfaces for agent-related functionality

Key Features

  • RxDB Collections: Reactive database collections for agents, sessions, and messages
  • Type Safety: Comprehensive TypeScript type definitions with strict typing
  • Schema Validation: Zod-based validation schemas for all data models
  • Reactive Data: Built on RxDB and RxJS for reactive data management
  • Modular Design: Clean separation of concerns with dedicated modules for collections, schemas, and utilities

Dependencies

  • rxdb (^15.0.0): Reactive database for JavaScript applications
  • rxjs (^7.8.1): Reactive extensions for JavaScript
  • zod (^3.22.4): TypeScript-first schema validation library

Installation

# Install from npm (when published)
npm install @epic-flow/agents-core

# Or with yarn
yarn add @epic-flow/agents-core

# Or with pnpm
pnpm add @epic-flow/agents-core

For local development within the monorepo:

# From the monorepo root
yarn install

# Build the package
yarn workspace @epic-flow/agents-core build

Usage Example

import {
  agentCollectionSchema,
  sessionCollectionSchema,
  messageCollectionSchema,
  type Agent,
  type Session,
  type Message
} from '@epic-flow/agents-core';

// Use the schemas to create RxDB collections
const myDatabase = await createRxDatabase({
  name: 'my-agents-db',
  storage: getRxStorageDexie()
});

// Add collections
await myDatabase.addCollections({
  agents: {
    schema: agentCollectionSchema
  },
  sessions: {
    schema: sessionCollectionSchema
  },
  messages: {
    schema: messageCollectionSchema
  }
});

// Create a new agent
const agent: Agent = {
  id: 'agent-123',
  name: 'My AI Agent',
  description: 'An intelligent agent for task automation',
  status: 'active',
  createdAt: Date.now(),
  updatedAt: Date.now()
};

await myDatabase.agents.insert(agent);

// Query agents
const activeAgents = await myDatabase.agents
  .find({
    selector: {
      status: 'active'
    }
  })
  .exec();

Development

# Build the package
yarn build

# Run in development mode with watch
yarn dev

# Run tests
yarn test

# Run tests in watch mode
yarn test:watch

# Type checking
yarn typecheck

# Linting
yarn lint

Package Structure

packages/agents-core/
├── src/
│   ├── collections/     # RxDB collection schemas
│   ├── schemas/         # Zod validation schemas
│   ├── utils/          # Utility functions
│   ├── __tests__/      # Test files
│   └── index.ts        # Main export file
├── dist/               # Built output
├── package.json
├── tsconfig.json
├── jest.config.js
└── README.md

License

MIT

Author

Epic Flow