@100xbot/agent-input
v0.3.14
Published
Reusable AI agent chat input bar with mentions, speech, file upload, and workflow review
Maintainers
Readme
@100xbot/agent-input
A reusable AI agent chat input bar for React applications. Features rich text input with @mentions, speech recognition, file uploads, model selection, and workflow integration.
Installation
npm install @100xbot/agent-inputImport the styles — no Tailwind CSS, no extra dependencies:
import '@100xbot/agent-input/styles.css';The library ships a pre-compiled CSS bundle (~8KB gzipped) that includes all needed styles, design tokens, and dark mode support.
Quick Start
Wrap your component tree with AgentInputProvider and pass a config object that bridges your app's data sources:
import '@100xbot/agent-input/styles.css';
import { AgentInputProvider, AgentStatusBar } from '@100xbot/agent-input';
import type { AgentInputConfig } from '@100xbot/agent-input';
function App() {
const config: AgentInputConfig = {
sendMessage: async (msg) => { /* your messaging layer */ },
extractReferences: (text) => { /* parse @references from text */ return []; },
parseReferences: (text) => ({ references: [], segments: [{ type: 'text', content: text }] }),
mentions: {
getSuggestions: (params) => [],
getAllItems: (sections) => [],
filteredHistory: () => [],
getFilteredLoadedHistory: () => [],
getFilteredWorkflows: () => [],
},
};
return (
<AgentInputProvider config={config}>
<AgentStatusBar
status={{ state: 'idle', operation: '' }}
sessionId="session-1"
initialValue=""
onSendMessage={(message, references) => {
console.log('Send:', message, references);
}}
/>
</AgentInputProvider>
);
}Theming
The library uses CSS custom properties (--ai-*) for all colors, shadows, and borders. Dark mode activates when a parent element has the dark class:
<html class="dark">
<!-- components automatically use dark theme -->
</html>To customize colors, override the CSS custom properties:
:root {
--ai-status-working: #3870FF;
--ai-surface-primary: #ffffff;
/* see dist/styles.css for all available tokens */
}Exports
Main (@100xbot/agent-input)
| Export | Description |
|--------|-------------|
| AgentInputProvider | React context provider — wrap your tree with this |
| useAgentInput | Hook to access the config from any child component |
| AgentStatusBar | Main chat input bar component |
| RichInput | ContentEditable input with reference chip rendering |
| ListeningNotification | Speech recognition status overlay |
| ModelSelectorDropdown | LLM model picker dropdown |
| ChatModeSwitcher | Chat/Build mode toggle |
| MentionsDropdown | @mention suggestion dropdown |
| AddButtonDropdown | Plus button menu (files, tabs, workflows) |
| InputToolbar | Bottom toolbar with all action buttons |
| AgentHeader | Status header with agent state display |
| AgentStatusIndicator | Compact status indicator |
| ModeSwitcher | Builder/Normal mode toggle |
| ExpandableHistory | Message history list |
| ExpandableWorkflows | Workflow list |
| RecordingButton | Recording button component |
| useDropdownNavigation | Keyboard navigation hook for dropdowns |
| useInputHistory | Bash-style arrow key history navigation |
Recording (@100xbot/agent-input/recording)
| Export | Description |
|--------|-------------|
| RecordingExplainerDialog | Multi-state recording dialog with processing animation |
| RecordingAnimation | Recording state animation |
| RecordingIllustration | Recording illustration graphic |
| ProcessingAnimation | Processing state animation |
Workflow (@100xbot/agent-input/workflow)
| Export | Description |
|--------|-------------|
| WorkflowReview | Workflow review and approval component |
Styles (@100xbot/agent-input/styles.css)
Pre-compiled CSS bundle containing all utility classes, design tokens, and dark mode support. Import once at app level.
AgentInputConfig
The provider config bridges your application's data layer with the component library:
interface AgentInputConfig {
// Required
sendMessage: (message: any) => Promise<any>;
extractReferences: (text: string, metadata?) => Reference[];
parseReferences: (text: string, metadata?) => { references: Reference[]; segments: ContentSegment[] };
mentions: {
getSuggestions: (params: MentionSuggestionsParams) => MentionSection[];
getAllItems: (sections: MentionSection[]) => FlatMentionItem[];
filteredHistory: (params) => string[];
getFilteredLoadedHistory: (params) => string[];
getFilteredWorkflows: (params) => WorkflowData[];
};
// Optional
speech?: { recognition: SpeechRecognitionState; synthesis: { cancel: () => void } };
files?: { list: () => FileData[]; search: (q: string) => FileData[]; triggerPicker: () => void; ... };
tabs?: { items: TabData[]; search: (q: string) => TabData[] };
workflows?: { items: WorkflowData[]; isLoading: boolean; isSearching: boolean; fetch: (...) => Promise<void> };
history?: { items: string[]; save: (msg: string) => void };
model?: { selectedId: string; showDialog: boolean; setShowDialog: ...; loadSelectedModel: ...; setSelectedId: ... };
conversation?: { addMessage: (message: any) => void };
viewMode?: { displayMode: 'chat' | 'log'; setDisplayMode: (mode) => void };
auth?: { authState: any };
theme?: { currentTheme: { name: string } };
port?: { onMessage: { addListener: (h) => void; removeListener: (h) => void } };
}See src/context/AgentInputProvider.tsx for the full type definition.
Accessibility
- WCAG AA compliant contrast ratios
- Full keyboard navigation for all dropdowns and dialogs
- ARIA roles, labels, and live regions
prefers-reduced-motionsupport — animations are disabled for users who prefer reduced motion- Semantic HTML with proper heading hierarchy
Types
All types are exported from the main entry point:
import type {
AgentStatus,
Reference,
DOMElementData,
TabData,
FileData,
WorkflowData,
MentionSection,
FlatMentionItem,
DisplayMode,
LLMModel,
ModelSelectionConfig,
ContentSegment,
} from '@100xbot/agent-input';License
MIT
