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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ai_licia-aitum

v1.1.2

Published

Aitum Custom Code integration for ai_licia

Downloads

209

Readme

ai_licia - Aitum Integration

This package provides custom actions for Aitum that integrate with ai_licia, allowing you to trigger and interact with your ai_licia instance directly from Aitum.

Installation

npm install ai_licia-aitum

Configuration

You'll need to create a .env file with your ai_licia configuration:

AI_LICIA_API_URL=http://your-ailicia-api-url.com
AI_LICIA_API_KEY=your-api-key
AI_LICIA_CHANNEL=your-channel-name

Alternatively, you can run the setup script:

npx ai_licia-aitum-setup

Available Actions

Send ai_licia Context Event

Sends contextual information to ai_licia that will be stored in her memory. This helps provide context for future interactions.

Inputs:

  • Event Type: The type of event to send
  • Event Data (JSON): JSON data to send with the event

Trigger ai_licia Direct Generation

Triggers ai_licia to generate a direct response based on the provided prompt.

Inputs:

  • Prompt Override: The prompt to send to ai_licia
  • Use Chat Memory: Whether to use the chat memory for context
  • Additional Context: Additional context to provide
  • Voice Only: Whether to generate only voice without text response

Usage with Aitum Custom Code

This package is designed to work with Aitum's Custom Code feature. To use it:

  1. Install the package in your Aitum Custom Code project
  2. Import and register the actions
// Import the actions
import { AiliciaActions } from 'ai_licia-aitum';

// Register with Aitum Custom Code
const aitumCC = AitumCC.get();

// Register individual actions
aitumCC.registerAction(AiliciaActions.SendContextEvent);
aitumCC.registerAction(AiliciaActions.TriggerDirectGeneration);

Example

Here's a complete example of how to set up ai_licia with Aitum Custom Code:

import { AitumCC } from 'aitum.js';
import { AiliciaActions } from 'ai_licia-aitum';
import dotenv from 'dotenv';

// Load environment variables
dotenv.config();

// Initialize Aitum Custom Code
const aitumCC = AitumCC.get();

// Set up the environment
aitumCC.setEnv(
  process.env.AITUM_CC_ID as string,
  process.env.AITUM_CC_HOST as string,
  process.env.API_KEY as string
);

// Register ai_licia actions
aitumCC.registerAction(AiliciaActions.SendContextEvent);
aitumCC.registerAction(AiliciaActions.TriggerDirectGeneration);

// Connect to Aitum
aitumCC.connect();

Need Help?

If you need help or have questions, please check the ai_licia documentation or visit our Discord community.