Note: This toolkit runs against the hosted
iblai.appenvironment. If you'd like a license to the full platform codebase to run locally or self-host, reach out to our team at ibl.ai/contact.
Add ibl.ai skills to any project with one command:
npx skills add iblai/vibeFor marketing skills — conversion, copywriting, SEO, paid ads, lifecycle, growth (43 skills + 62 platform CLIs + 80 integration guides) — install the companion repo side-by-side:
npx skills add iblai/vibe-marketingSee iblai/vibe-marketing for the full catalogue.
Ask Claude to add ibl.ai Chat, Profile, Account, Notification or Analytics component to your Next.js project.
Ask Claude to start an ibl.ai agent app.
A developer toolkit for vibe coding with the ibl.ai platform. Vibe gives you a production-ready scaffold powered by the @iblai/iblai-js SDK, pre-built components, Claude Code skills, and a full backend at iblai.app. You go from zero to a deployed AI app in minutes -- authentication, AI chat, profiles, notification, and analytics are already wired up. No API tokens to manage.
Why it matters:
- Start building in minutes, not days -- vibe-starter scaffolds a complete app with auth, AI chat, and a dashboard out of the box
- Backend included --
iblai.appprovides SSO auth, AI agent infrastructure, analytics, and tenant management (free tier available) - Client-side auth via SSO -- no API tokens to store, rotate, or leak
- Claude Code skills guide every step -- adding features is a conversation, not a scavenger hunt through docs
- shadcn/ui fills in UI gaps -- consistent design language without the overhead of a custom design system
- Ship everywhere -- web (Vercel), desktop (macOS/Windows/Linux), and mobile (iOS/Android) via Tauri v2
| Project | App | Repo | What it does |
|---|---|---|---|
| Agentic OS | os.ibl.ai | iblai/os | Agentic operating system for building and running AI agents |
| Agentic LMS | lms.ibl.ai | iblai/lms | Agentic learning management system |
- Scaffold -- run
npx create-next-app@latest myappto generate a full Next.js app. - Connect -- Use Claude Code skills to add auth, AI chat, profiles, and more components to your app to connect to
iblai.app(or your own instance) for authentication, AI agents, and data - Customize -- use the skills to add features, swap components, and adjust business logic
- Deploy -- push to Vercel or package with Tauri
Get a complete app with auth, AI chat, profiles, and more by cloning vibe-starter:
git clone -b spa https://github.com/iblai/vibe-starter.git vibe-starter-init
cp -a vibe-starter-init/. . && rm -rf vibe-starter-init
pnpm install
cp .env.example .env.local # then set NEXT_PUBLIC_MAIN_TENANT_KEY
pnpm devOpen http://localhost:3000. You will be redirected to login.iblai.app for login -- sign in or create a free account, and you are back in your app with a fully authenticated session.
Add ibl.ai skills to any project with one command:
npx skills add iblai/vibeThis installs our vibe skills that teach your AI agent how to build with the ibl.ai platform -- authentication, AI chat, profiles, analytics, workflows, and more. Works with Claude Code, Cursor, OpenCode, Copilot, and 15+ other agents.
After installing the skills, use them directly in your AI agent with / commands:
/iblai-auth
/iblai-agent-chat
/iblai-project
/iblai-profile
/iblai-account
/iblai-analytics
/iblai-notification
/iblai-invite
/iblai-workflow
/iblai-local-llm
/iblai-course-access
/iblai-course-create
/iblai-onboard
/iblai-build
/iblai-test
/iblai-ops-upgrade
/iblai-rbac
/iblai-agent-search
/iblai-agent-setting
/iblai-agent-access
/iblai-agent-api
/iblai-agent-dataset
/iblai-agent-disclaimer
/iblai-agent-embed
/iblai-agent-history
/iblai-agent-llm
/iblai-agent-memory
/iblai-agent-prompt
/iblai-agent-safety
/iblai-agent-tool
What each skill does:
/iblai-auth-- adds authentication and configures the app for ibl.ai login./iblai-agent-chat-- adds the full in-process agent chat surface./iblai-project-- adds the in-process Projects surface (project landing page with chat input, files, instructions, assigned agents)./iblai-profile-- adds profile UI and profile settings flows./iblai-account-- adds account and organization settings./iblai-analytics-- adds analytics dashboards and reporting views./iblai-notification-- adds notifications UI and notification center flows./iblai-invite-- adds user invitation dialogs for tenant admin./iblai-workflow-- adds workflow builder components (sidebar, modals, connectors)./iblai-local-llm-- defines the contract for adding on-device LLM inference (Ollama / Foundry) to a Tauri desktop build: Tauri command names, event names, and the React hook shape the SDK consumes vialocalLLMProps./iblai-course-access-- adds edX course-content pages with outline sidebar, tab strip, iframe, and access control./iblai-course-create-- drives the ibl.ai Course Creation API to programmatically generate, edit, and publish edX courses./iblai-onboard-- designs and builds a high-converting questionnaire-style onboarding flow./iblai-ops-build-- builds and runs the app on desktop and mobile (iOS, Android, macOS, Surface)./iblai-ops-test-- validates the app before it is presented to the user./iblai-ops-upgrade-- upgrades the@iblai/iblai-jsSDK and vibe skills to the latest versions./iblai-scaffold-- scaffolds a new app or adds features; holds the base + agent project templates and documents the assembly steps./iblai-iconography-- generates every app-icon size (Tauri desktop, iOS, Windows MSIX, macOS) from a single source image./iblai-windows-msix-- builds and distributes a Tauri app as a Windows MSIX package (sideloading or Microsoft Store)./iblai-deslop-- audits and hardens an existing codebase for production readiness (two-phase audit then safety-tiered fixes)./iblai-cli-maintenance-- documents the internals of the iblai CLI: commands, the Jinja2 template system, standalone-binary build, and release/publish flows./iblai-rbac-- reference for the default RBAC roles (student, tenant admin, mentor editor, analytics viewer, etc.), the platform's action-definitions endpoint, and the SDK components (<Admin>,<RolesTab>,<PoliciesTab>) that render the Roles + Policies management UI./iblai-agent-search-- adds the agent search/browse page (starred, featured, custom, and default agents)./iblai-agent-setting-- adds the agent Settings tab (name, description, visibility, copy, delete) built onAgentSettingsProvider./iblai-agent-access-- adds the agent Access tab (role-based access control for editor and chat roles)./iblai-agent-api-- adds the agent API tab (API key management)./iblai-agent-dataset-- adds the agent Datasets tab (searchable dataset table with upload)./iblai-agent-disclaimer-- adds the agent Disclaimers tab (user agreement and advisory)./iblai-agent-embed-- adds the agent Embed tab (embed code, custom styling, shareable links)./iblai-agent-history-- adds the agent History tab (conversation history with filters and export)./iblai-agent-llm-- adds the agent LLM tab (model provider selection)./iblai-agent-memory-- adds the agent Memory tab (enable/disable memory and manage memories)./iblai-agent-prompt-- adds the agent Prompts tab (system prompts and suggested prompts)./iblai-agent-safety-- adds the agent Safety tab (moderation prompts and flagged content)./iblai-agent-tool-- adds the agent Tools tab (enable/disable agent tools).
8 authorized-use security skills covering reconnaissance, source-code audits (OWASP Top 10), OSINT, disk forensics, incident triage, cloud configuration auditing, dependency vulnerabilities, and prompt-injection testing.
/iblai-security-recon /iblai-security-incident-triage
/iblai-security-owasp-audit /iblai-security-cloud-audit
/iblai-security-osint-recon /iblai-security-dependency-audit
/iblai-security-disk-forensics /iblai-security-prompt-injection
See CLAUDE.md for one-line descriptions.
The 43 marketing skills (CRO, copywriting, SEO, paid ads, lifecycle,
growth) plus the tools/ directory (62 platform CLIs + 80 integration
guides) now live in the companion
iblai/vibe-marketing repo.
Install side-by-side with vibe:
npx skills add iblai/vibe-marketing| Feature | Description |
|---|---|
| Authentication | SSO login via iblai.app -- no token management, session handling built in |
| AI Chat | Streaming chat with ibl.ai agents, markdown rendering, conversation history |
| User Profile | Editable profile page with avatar, bio, and preferences |
| Account Settings | Password changes, notification preferences, connected services |
| Analytics Dashboard | Usage metrics, conversation stats, and user activity |
| Notification | Real-time notification system with read/unread state |
| Desktop & Mobile | Tauri v2 integration for macOS, Windows, Linux, iOS, and Android |
| AI Development Skills | Claude Code skills that walk you through adding and customizing every feature |
Already have a project? Install the skills and let your AI agent add features:
npx skills add iblai/vibeThen add features with the /iblai-* skills -- each creates the files and wires them in:
/iblai-auth— SSO authentication/iblai-profile— user profile dropdown/iblai-account— account/organization settings/iblai-analytics— analytics dashboard/iblai-notification— notification bell
(Ensure the @iblai/mcp server + skills are configured in .mcp.json first.)
Cloning vibe-starter is already non-interactive -- inject the NEXT_PUBLIC_*
vars from CI secrets:
git clone -b spa https://github.com/iblai/vibe-starter.git app && cd app
rm -rf node_modules && pnpm install
cp .env.example .env.local # then set NEXT_PUBLIC_MAIN_TENANT_KEY from CI secretshttps://api.iblai.app is the production backend that powers every Vibe app. You do not need to build, host, or maintain any backend services.
What iblai.app provides:
- SSO Authentication -- OAuth-based login with session management, RBAC, and multi-tenant user isolation
- AI Agent Infrastructure -- create, configure, and serve AI agents with streaming responses, tool use, and RAG
- Analytics -- track user activity, conversation metrics, and engagement across your app
- Tenant Management -- each tenant gets its own users, agents, branding, and configuration
Vibe is designed to be built with AI. The @iblai/mcp server gives Claude Code deep knowledge of the ibl.ai platform, and the bundled skills guide you through every common task.
Add this to your .mcp.json at the project root:
{
"mcpServers": {
"iblai": {
"command": "npx",
"args": ["-y", "@iblai/mcp"]
}
}
}This gives your AI assistant access to:
get_component_info("ChatWidget") # Props, usage, examples for any component
get_hook_info("useAdvancedChat") # Hook parameters and return types
get_api_query_info("useGetUserMetadataQuery") # RTK Query endpoint details
get_provider_setup("auth") # Provider hierarchy and setup code
create_page_template("Dashboard", "mentor") # Generate a page following ibl.ai patterns
The scaffolded app ships with skills that teach Claude how to work with your codebase. Instead of reading docs, you tell Claude what you want and the skills provide the context:
| Skill | Description |
|---|---|
/iblai-auth |
Add SSO authentication (includes CLI installation guide) |
/iblai-agent-chat |
Add the full in-process agent chat surface |
/iblai-project |
Add the in-process Projects surface (project landing page — chat input + files + instructions + assigned agents) |
/iblai-profile |
Add profile dropdown + settings page |
/iblai-account |
Add account/org settings page |
/iblai-analytics |
Add analytics dashboard |
/iblai-notification |
Add notification bell + center page |
/iblai-invite |
Add user invitation dialogs |
/iblai-workflow |
Add workflow builder components |
/iblai-local-llm |
Contract for on-device LLM (Ollama / Foundry) in a Tauri desktop build — command names, event names, hook shape the SDK reads via localLLMProps |
/iblai-course-access |
Add course-content pages (edX learner UI) |
/iblai-course-create |
Generate, edit, and publish edX courses via the ibl.ai Course Creation API |
/iblai-component |
Overview of all components + app creation paths |
/iblai-onboard |
Design and build a high-converting onboarding questionnaire flow |
/iblai-landing |
Build a high-converting landing page using a 12-section conversion framework |
/iblai-ops-build |
Build and run on desktop and mobile (iOS, Android, macOS, Windows) |
/iblai-ops-test |
Test your app before showing work to the user |
/iblai-ops-upgrade |
Upgrade ibl.ai CLI, SDK, and vibe skills to the latest versions |
/iblai-scaffold |
Scaffold a new app or add features — the base/agent project templates + the assembly steps |
/iblai-iconography |
Generate every app-icon size (Tauri desktop, iOS, Windows MSIX, macOS) from one source image |
/iblai-windows-msix |
Build and distribute a Tauri app as a Windows MSIX (sideload / Microsoft Store) |
/iblai-deslop |
Audit and harden an existing codebase for production readiness (two-phase audit → safety-tiered fixes) |
/iblai-cli-maintenance |
Internals of the iblai CLI — commands, Jinja2 templates, binary build, release/publish |
/iblai-rbac |
Reference: default RBAC roles, action-definitions endpoint, and the SDK Roles + Policies components |
/iblai-agent-search |
Add the agent search/browse page (starred, featured, custom, default) |
/iblai-agent-setting |
Add the agent Settings tab (name, visibility, copy, delete) |
/iblai-agent-access |
Add the agent Access tab (RBAC for editor and chat roles) |
/iblai-agent-api |
Add the agent API tab (API key management) |
/iblai-agent-dataset |
Add the agent Datasets tab (searchable dataset table with upload) |
/iblai-agent-disclaimer |
Add the agent Disclaimers tab (user agreement and advisory) |
/iblai-agent-embed |
Add the agent Embed tab (embed code, custom styling, shareable links) |
/iblai-agent-history |
Add the agent History tab (conversation history with filters and export) |
/iblai-agent-llm |
Add the agent LLM tab (model provider selection) |
/iblai-agent-memory |
Add the agent Memory tab (enable/disable memory and manage memories) |
/iblai-agent-prompt |
Add the agent Prompts tab (system prompts and suggested prompts) |
/iblai-agent-safety |
Add the agent Safety tab (moderation prompts and flagged content) |
/iblai-agent-tool |
Add the agent Tools tab (enable/disable agent tools) |
Skills are in skills/ (symlinked to .claude/skills/). Read them, extend them, or write your own.
| Feature | Web | macOS | Windows/Surface | iOS | Android |
|---|---|---|---|---|---|
| SSO Authentication | Yes | Yes | Yes | No | No |
| AI Chat | Yes | Yes | Yes | Yes | Yes |
| User Profile | Yes | Yes | Yes | Yes | Yes |
| Account Settings | Yes | Yes | Yes | Yes | Yes |
| Analytics Dashboard | Yes | Yes | Yes | Yes | Yes |
| Notifications | Yes | Yes | Yes | Yes | Yes |
iOS & Android SSO limitation: Mobile WebViews use a non-standard user-agent that SSO providers reject. Completing the OAuth flow requires a system browser popup (ASWebAuthenticationSession on iOS, Chrome Custom Tabs on Android). This is not yet implemented -- mobile users must authenticate via another method for now.
One-click deploy. Connect your repo, set your environment variables, and push.
Or deploy with the vercel CLI -- see /iblai-ops-deploy:
npx vercel deploy --prod --token="$VERCEL_TOKEN" --yes --publicBuild native apps for macOS, Windows, Linux, iOS, and Android:
Add the Tauri shell (see /iblai-ops-build), then:
pnpm exec tauri build # Desktop build for current platform
pnpm exec tauri ios init # iOS project setup- Vibe Starter -- pre-wired Next.js + ibl.ai SSO template
- @iblai/iblai-js -- unified SDK for data, UI components, and auth utilities
- @iblai/iblai-api -- auto-generated API types
- @iblai/mcp -- MCP server for AI-assisted development
- skills.sh/iblai/vibe -- install skills with
npx skills add iblai/vibe - Skills Reference -- documentation for all bundled Claude Code skills
MIT -- ibl.ai
