skills/iblai/vibe/iblai-component

iblai-component

SKILL.md

/iblai-component

Overview of all ibl.ai components and how to create a new app.

AI Assistant: Before adding a component or creating a new app, check for a .env.local (or .env) in the project root. Look for PLATFORM, DOMAIN, and TOKEN variables. If the file does not exist or is missing these variables, tell the user: "You need a .env.local with your platform configuration. Download the template and fill in your values: curl -o .env.local https://raw.githubusercontent.com/iblai/vibe/refs/heads/main/.env.example"

Creating a New App

Vanilla Next.js + ibl.ai Features

Start with a standard Next.js app and add features as needed:

npx create-next-app@latest my-app --yes
cd my-app
iblai add auth --platform your-platform
iblai add chat
npm run dev

Full ibl.ai Agent App

Scaffold a complete app with auth, chat, and everything pre-configured:

iblai startapp agent --platform your-platform
cd <app-name> && pnpm install
cp .env.example .env.local && pnpm dev

Non-Interactive (CI/CD)

iblai startapp agent --yes --platform acme --agent my-id --app-name my-app

AI-Enhanced Scaffolding

Set your API key as an environment variable (never pass secrets as CLI arguments):

export ANTHROPIC_API_KEY=<your-key>
iblai startapp agent --platform acme \
  --prompt "kids learning assistant with bright colors"

Available Components

Command What It Adds Skill
iblai add mcp MCP servers + skills (run first)
iblai add auth SSO authentication /iblai-auth
iblai add chat AI chat widget (requires agent ID) /iblai-chat
iblai add profile User profile dropdown /iblai-profile
iblai add account Account/organization settings /iblai-account
iblai add analytics Analytics dashboard /iblai-analytics
iblai add notifications Notification bell /iblai-notification
User invitation dialogs /iblai-invite
Workflow builder components /iblai-workflow
iblai add builds Tauri v2 desktop/mobile shell

Component Gallery

All components below are from @iblai/iblai-js/web-containers (v1.1.28). Use MCP tools (get_component_info, get_hook_info) for full props and usage examples.

Auto-generated from @iblai/web-containers@1.1.28 type declarations. Re-generate with: iblai update-gallery <path>

Authentication & SSO

Export Import Description
DEFAULT_SSO_STORAGE_KEYS sso Default localStorage key constants for SSO
LoginButton root Auth login button -- redirects to authUrl with redirect options
SignupButton root Signup button -- opens signup flow, optionally in new tab
SsoLogin next SSO callback handler -- stores tokens from URL into localStorage and redirects
import { DEFAULT_SSO_STORAGE_KEYS } from "@iblai/iblai-js/web-containers/sso";
import { LoginButton, SignupButton } from "@iblai/iblai-js/web-containers";
import { SsoLogin } from "@iblai/iblai-js/web-containers/next";

User Profile & Account

Export Import Description
Account next Account/org settings with tabs (Organization, Management, Integrations, Advanced, Billing)
CompanyDialog root Company selection dialog
EducationDialog root Dialog for adding/editing education
EducationTab root Education background management
ExperienceDialog root Dialog for adding/editing experience
ExperienceTab root Professional experience management
InstitutionDialog root Institution selection dialog
InviteUserDialog root Dialog to invite users to a tenant
InvitedUsersDialog root Dialog showing pending invitations
LocalLLMTab root Local LLM model management (Tauri desktop)
OrganizationTab next Organization settings tab
Profile root Full profile management component
ResumeTab root Resume upload and display
UserProfileDropdown next Avatar dropdown with profile link, tenant switcher, logout
UserProfileModal next Profile editing modal with tabs (Basic, Social, Education, Experience, Resume, Security)
import { Account, OrganizationTab, UserProfileDropdown, UserProfileModal } from "@iblai/iblai-js/web-containers/next";
import { CompanyDialog, EducationDialog, EducationTab, ExperienceDialog, ExperienceTab, InstitutionDialog, ... } from "@iblai/iblai-js/web-containers";

Tenant & Organization

Export Import Description
TenantSwitcher root Switch between tenants/organizations with RBAC support
import { TenantSwitcher } from "@iblai/iblai-js/web-containers";

Analytics

Export Import Description
AccessTimeHeatmap root Access time heatmap visualization
AnalyticsCourseDetail root Single course detail view
AnalyticsCourses root Course analytics listing
AnalyticsFinancialStats root Financial/billing statistics
AnalyticsLayout root Layout wrapper for analytics pages
AnalyticsOverview root Overview dashboard with key metrics
AnalyticsProgramDetail root Single program detail view
AnalyticsPrograms root Program analytics listing
AnalyticsReportDownload root Download analytics reports
AnalyticsReports root Report listing and management
AnalyticsSettingsProvider root Context provider for analytics settings
AnalyticsTopicsStats root Topic/conversation statistics
AnalyticsTranscriptsStats root Transcript browsing and search
AnalyticsUsersStats root User activity statistics
ChartCardWrapper root Wrapper for chart visualizations
ChartFiltersProvider root Context provider for chart filter state
CustomDateRangePicker root Custom date range selector
EmptyStats root Empty state placeholder for stats
GroupsFilterDropdown root Filter analytics by user groups
StatCard root Single statistic card
TimeFilter root Time range filter dropdown
import { AccessTimeHeatmap, AnalyticsCourseDetail, AnalyticsCourses, AnalyticsFinancialStats, AnalyticsLayout, AnalyticsOverview, ... } from "@iblai/iblai-js/web-containers";

Notifications

Export Import Description
AlertsTab root Alert management tab
EditAlertDialog root Dialog to create/edit alerts
NotificationDisplay root Full notification center with Inbox and Alerts tabs
NotificationDropdown root Bell icon with unread badge -- compact navbar widget
SendNotificationDialog root Dialog to compose and send notifications (admin)
import { AlertsTab, EditAlertDialog, NotificationDisplay, NotificationDropdown, SendNotificationDialog } from "@iblai/iblai-js/web-containers";

Mentor UI (App Shell)

Export Import Description
AppSidebar next Collapsible sidebar with menu items, projects, pinned/recent messages
ConversationStarters next Guided prompt cards for starting conversations
NavBar next Top navigation bar with user menu, mentor dropdown, new chat action
import { AppSidebar, ConversationStarters, NavBar } from "@iblai/iblai-js/web-containers/next";

Workflows

Export Import Description
ConnectorManagementDialog root Connector setup and management
CreateWorkflowModal root Create new workflow modal
DeleteWorkflowModal root Delete workflow confirmation
ToolDialogs root Tool configuration dialogs
WorkflowSidebar root Workflow node type browser sidebar
import { ConnectorManagementDialog, CreateWorkflowModal, DeleteWorkflowModal, ToolDialogs, WorkflowSidebar } from "@iblai/iblai-js/web-containers";

Content & Display

Export Import Description
CopyButtonIcon root Copy-to-clipboard button icon
Loader root Loading overlay component
Markdown root Markdown renderer with syntax highlighting and copy buttons
RichTextEditor root Tiptap-based rich text editor (HTML or Markdown output)
SearchableMultiSelect root Multi-select dropdown with search filtering
Spinner root Loading spinner (sm, md, lg)
TimeTrackingProvider root Provider for automatic time tracking
TopBanner root Dismissible top banner notification bar
Version root App version display footer
import { CopyButtonIcon, Loader, Markdown, RichTextEditor, SearchableMultiSelect, Spinner, ... } from "@iblai/iblai-js/web-containers";

Error Handling

Export Import Description
ClientErrorPage next Client-side error boundary page
ErrorPage next Error page with code, message, support link, home button
import { ClientErrorPage, ErrorPage } from "@iblai/iblai-js/web-containers/next";

Hooks & Utilities

Export Import Description
TAURI_COMMANDS root Tauri IPC command name constants
TAURI_EVENTS root Tauri event name constants
import { TAURI_COMMANDS, TAURI_EVENTS } from "@iblai/iblai-js/web-containers";

UI Primitives (Shadcn/Radix)

These are bundled with the SDK and share the ibl.ai Tailwind theme. Available when you need lower-level building blocks inside SDK component customizations:

AlertDialog, Avatar, Badge, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Chart, Checkbox, Dialog, DropdownMenu, Input, Label, Pagination, Popover, Progress, RadioGroup, Select, Separator, Sheet, Sidebar, Skeleton, Sonner, Switch, Table, Tabs, Textarea, Toast, Toaster, Toggle, Tooltip

Note: For your own UI, install shadcn/ui directly (npx shadcn@latest add ...) rather than importing these from the SDK. The SDK exports are for internal use and SDK component customization.

Component Priority

  1. ibl.ai components first -- always use the native component when one exists
  2. shadcn/ui for everything else -- forms, tables, modals, date pickers, etc.:
    npx shadcn@latest add button dialog table form
    
  3. shadcnspace blocks -- pre-built page sections:
    npx shadcn@latest add @shadcn-space/hero-01
    

ibl.ai and shadcn components share the same Tailwind theme and are visually seamless.

CLI Updates

AI Assistant: Before running any iblai command, ensure the CLI is up to date. Run iblai --version to check the current version, then upgrade directly:

  • pip: pip install --upgrade iblai-app-cli
  • npm: npm install -g @iblai/cli@latest

This is safe to run even if already at the latest version.

Requirements

  • Next.js App Router project (app/ directory)
  • Node.js 18+
  • iblai CLI available (iblai --version). See /iblai-auth prerequisites for installation.
  • Run iblai add mcp first to set up MCP servers and skills
  • If you started with npx create-next-app@latest, run iblai add auth first -- other components depend on the auth providers
  • If you used iblai startapp agent, auth is already set up
  • Brand guidelines: BRAND.md
Weekly Installs
5
Repository
iblai/vibe
GitHub Stars
12
First Seen
3 days ago
Installed on
amp5
cline5
opencode5
cursor5
kimi-cli5
warp5