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

@memberjunction/ng-skip-chat

v4.4.0

Published

DEPRECATED: Use @memberjunction/ng-conversations instead. MemberJunction: Simple Skip Chat components usable in any Angular project

Downloads

224

Readme

@memberjunction/ng-skip-chat

Note: For conversational AI functionality, consider using the @memberjunction/ng-conversations package, which provides the latest conversational interface patterns.

An Angular component package for integrating the Skip AI assistant into MemberJunction applications. Provides a full chat interface with conversation management, dynamic report rendering, inline artifact viewing, and data visualization.

Installation

npm install @memberjunction/ng-skip-chat

Overview

Skip Chat provides a complete conversational AI experience within MemberJunction applications. It manages conversation persistence, renders AI-generated dynamic reports and charts, supports inline artifact viewing with a split-panel layout, and integrates with the MJ data context system for contextual understanding.

flowchart TD
    subgraph Chat["SkipChatComponent"]
        A["Conversation List"] --> B["Message Thread"]
        B --> C["User Input"]
        C --> D["Skip AI API"]
        D --> E["AI Response"]
        E --> F["Dynamic Reports"]
        E --> G["Inline Artifacts"]
    end
    subgraph Reports["Dynamic Report Components"]
        H["Charts (Plotly)"]
        I["Data Grids (Kendo)"]
        J["HTML Reports"]
        K["Linear Reports"]
    end
    subgraph Artifacts["Artifact System"]
        L["Split Panel View"]
        M["Artifact Indicator"]
        N["Artifact Viewer"]
    end

    F --> Reports
    G --> Artifacts

    style Chat fill:#2d6a9f,stroke:#1a4971,color:#fff
    style Reports fill:#7c5295,stroke:#563a6b,color:#fff
    style Artifacts fill:#2d8659,stroke:#1a5c3a,color:#fff

Usage

Module Import

import { SkipChatModule } from '@memberjunction/ng-skip-chat';

@NgModule({
  imports: [SkipChatModule]
})
export class YourModule {}

Basic Usage

<skip-chat
  [Title]="'Ask Skip'"
  [ShowConversationList]="true"
  [SkipLogoURL]="'assets/Skip-Logo.png'"
  (NavigateToMatchingReport)="handleReportNavigation($event)"
  (NewReportCreated)="handleNewReport($event)">
</skip-chat>

Embedded in Entity Record

<skip-chat
  [LinkedEntity]="'Products'"
  [LinkedEntityCompositeKey]="productKey"
  [ShowConversationList]="false"
  [UpdateAppRoute]="false">
</skip-chat>

Key Inputs

| Property | Type | Default | Description | |----------|------|---------|-------------| | Title | string | 'Ask Skip' | Chat interface title | | ShowConversationList | boolean | true | Show the conversation sidebar | | AllowNewConversations | boolean | true | Allow creating conversations | | SkipLogoURL | string | -- | URL for the Skip logo image | | LinkedEntity | string | -- | Entity name for embedded context | | LinkedEntityCompositeKey | CompositeKey | -- | Record key for embedded context | | ShowDataContextButton | boolean | true | Show data context button | | ShowSharingButton | boolean | true | Show conversation sharing button | | EnableArtifactSplitView | boolean | true | Enable split-panel artifact viewing | | WelcomeQuestions | ChatWelcomeQuestion[] | -- | Custom welcome screen prompts | | UpdateAppRoute | boolean | true | Update browser URL on navigation | | AutoLoad | boolean | true | Auto-load data on initialization |

Key Outputs

| Event | Type | Description | |-------|------|-------------| | NavigateToMatchingReport | EventEmitter<string> | Report navigation requested | | ConversationSelected | EventEmitter<string> | Conversation selected from list | | NewReportCreated | EventEmitter<string> | A report was created by Skip | | ArtifactSelected | EventEmitter<SkipAPIArtifact> | Artifact indicator clicked |

Components

| Component | Purpose | |-----------|---------| | SkipChatComponent | Main chat interface | | SkipSingleMessageComponent | Individual message renderer | | SkipSplitPanelComponent | Resizable split panel for artifacts | | SkipDynamicReportWrapperComponent | Report container | | SkipDynamicChartComponent | Plotly chart rendering | | SkipDynamicGridComponent | Kendo grid for data display | | SkipDynamicHTMLReportComponent | HTML report rendering | | SkipArtifactsCounterComponent | Artifact count badge |

Utility Classes

  • DrillDownInfo -- Manages drill-down operations within reports
  • SkipConversationReportCache -- Singleton cache for conversation reports

Dependencies