Enterprise AI Packages

Shared infrastructure and domain-specific components for Enterprise AI vertical applications.

Packages

Infrastructure

@enterpriseaigroup/core

Config system, providers, hooks, Zustand stores, and a full Shadcn/ui component library. The foundation every vertical depends on.

View docs →
Template

@enterpriseaigroup/demo

Skeleton template package for creating new verticals. Includes example components, hooks, providers, and a config registry.

View docs →

Quick Install

Public Registry (No Auth Required)

1 Configure your npm registry

Create or update .npmrc in your project root:

@enterpriseaigroup:registry=https://enterpriseaigroup.github.io/enterpriseai-packages/registry

2 Install packages

npm install @enterpriseaigroup/core
npm install @enterpriseaigroup/demo

3 Import and use

import { EAIProvider, Button, useConfig } from '@enterpriseaigroup/core';
import '@enterpriseaigroup/core/styles.css';

Monorepo Structure

enterpriseai-packages/
  packages/
    core/       # @enterpriseaigroup/core — infrastructure, UI, config
    daisy/      # @enterpriseaigroup/daisy — domain-specific package (internal)
    demo/       # @enterpriseaigroup/demo — vertical template
  docs/         # This documentation site

All packages are built with tsup and published via GitHub Actions workflow dispatch. See the repository for build and publish details.