New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@lov3kaizen/aigency-react

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@lov3kaizen/aigency-react

React components for rendering Aigency agent responses with formatting support

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

@aigency/react

React components for rendering Aigency agent responses with formatting support.

npm version License: MIT TypeScript

Features

  • Markdown rendering with GitHub Flavored Markdown support
  • Code syntax highlighting
  • Streaming response support
  • Customizable styling

Installation

npm install @aigency/react @aigency/core react react-dom
# or
pnpm add @aigency/react @aigency/core react react-dom
# or
yarn add @aigency/react @aigency/core react react-dom

Quick Start

import { AgentResponse } from '@aigency/react';

function ChatMessage({ content }: { content: string }) {
  return <AgentResponse content={content} />;
}

Components

AgentResponse

Renders agent response content with markdown formatting:

import { AgentResponse } from '@aigency/react';

<AgentResponse
  content="# Hello World\n\nThis is **markdown** content."
  className="my-response"
/>

StreamingResponse

For streaming responses:

import { StreamingResponse } from '@aigency/react';

<StreamingResponse
  content={streamingContent}
  isStreaming={true}
/>

Styling

Components can be styled using CSS classes or inline styles:

<AgentResponse
  content={content}
  className="custom-response"
  style={{ maxWidth: '600px' }}
/>

Documentation

Full documentation available at aigency.dev

License

MIT License - see LICENSE for details

Keywords

aigency

FAQs

Package last updated on 02 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts