AE Registry

602 items across 45 namespaces

npx shadcn add https://registry.agyemanenterprises.com /r/[name]

admin

@ae/admin-access-managementexperimental

View, grant, and revoke user roles in user_roles table.

v1.0.00 installs
@ae/admin-audit-log-viewerexperimental

Filterable, searchable, CSV-exportable audit log viewer using auth-audit-events API.

v1.0.00 installs
@ae/admin-billing-managerexperimental

Subscription overview and cancel via Stripe API. Reads billing_subscriptions table.

v1.0.00 installs
@ae/admin-content-managerexperimental

CMS content CRUD: create, publish, delete. content_items table via migration.

v1.0.00 installs
@ae/admin-coreexperimental

Admin shell layout with sidebar nav and server-side role guard. All admin/* items mount here.

v1.0.00 installs
@ae/admin-data-export-panelexperimental

GDPR/HIPAA compliant JSON export of all users or a single user.

v1.0.00 installs
@ae/admin-env-checkexperimental

Checks required env vars. Admin-gated. Never exposes raw secret values.

v1.0.00 installs
@ae/admin-error-log-viewerexperimental

Client + server error log with fingerprint grouping. Ingest via POST, view admin-gated.

v1.0.00 installs
@ae/admin-feature-flagsexperimental

Toggle features per org/user. feature_flags table via migration.

v1.0.00 installs
@ae/admin-impersonation-panelexperimental

Search users and initiate impersonation sessions. Requires auth-impersonation.

v1.0.00 installs
@ae/admin-job-queue-viewerexperimental

View background jobs. Failed jobs can be retried. job_queue table via migration.

v1.0.00 installs
@ae/admin-notification-centerexperimental

Send broadcast or targeted notifications. notifications table via migration.

v1.0.00 installs
@ae/admin-session-managerexperimental

View and force-revoke any user's active sessions. Admin-gated.

v1.0.00 installs
@ae/admin-settingsexperimental

Tabbed settings panel (General, Auth, Notifications). Persists to app_settings table.

v1.0.00 installs
@ae/admin-support-inboxexperimental

Support ticket inbox with assign/resolve workflow. support_requests table via migration.

v1.0.00 installs
@ae/admin-system-healthexperimental

Live health check for Supabase database, auth, and storage.

v1.0.00 installs
@ae/admin-user-managementexperimental

Users table with pagination, ban/unban, delete, create user via Supabase admin API.

v1.0.00 installs
@ae/admin-webhook-event-viewerexperimental

View incoming webhook events. webhook_events table via migration.

v1.0.00 installs

ai

@ae/ai-context-windowexperimental

Manage conversation context within token limits. ContextWindow class with add(), trim(), getMessages().

v1.0.00 installs
@ae/ai-embeddingsexperimental

Generate and store text embeddings using OpenAI text-embedding-3-small. generateEmbedding(), cosineSimilarity(). Server-side only.

v1.0.00 installs
@ae/ai-function-callingexperimental

OpenAI function calling helper. buildFunctionSpec(), parseFunctionCall(), chatWithTools(). Works with ai-tool-registry.

v1.0.00 installs
@ae/ai-image-genexperimental

Generate images with DALL-E 3. generateImage(prompt, options). Auth-gated POST /api/ai/image. Returns URL + revised prompt.

v1.0.00 installs
@ae/ai-model-routerexperimental

Route AI requests to models by task type. routeToModel(task). Covers gpt-4o, gpt-4o-mini, claude-sonnet, claude-haiku.

v1.0.00 installs
@ae/ai-prompt-builderexperimental

Type-safe prompt construction. PromptBuilder class with system(), user(), assistant(), build(). Returns OpenAI-compatible messages.

v1.0.00 installs
@ae/ai-prompt-libraryexperimental

Reusable prompt templates. registerPrompt(), getPrompt(), listPrompts(). Built-in AE prompts for summarize, classify, extract.

v1.0.00 installs
@ae/ai-rag-pipelineexperimental

Retrieval-augmented generation pipeline. chunkText(), embedChunks(), searchSimilar() against Supabase pgvector.

v1.0.00 installs
@ae/ai-rate-limiterexperimental

Per-user AI token rate limiting via Supabase. checkAIRateLimit(), incrementAIUsage(). ae_ai_usage table with RLS.

v1.0.00 installs
@ae/ai-response-streamingexperimental

Server-sent event streaming for AI responses via Vercel AI SDK. /api/ai/stream route with auth guard.

v1.0.00 installs
@ae/ai-sentiment-analysisexperimental

Analyze text sentiment with OpenAI. analyzeSentiment() returns label (positive/negative/neutral/mixed), score, explanation.

v1.0.00 installs
@ae/ai-text-summarizerexperimental

Summarize text with configurable style (bullet, paragraph, executive, technical). Handles large documents via chunking.

v1.0.00 installs
@ae/ai-token-counterexperimental

Estimate token counts for OpenAI models. estimateTokens(), isWithinLimit(), trimMessagesToFit(). No external deps.

v1.0.00 installs
@ae/ai-tool-registryexperimental

Register and call AI tools. registerTool(), callTool(), toOpenAIFormat(), toAnthropicFormat(). Function calling compatible.

v1.0.00 installs
@ae/ai-transcriptionexperimental

Transcribe audio with OpenAI Whisper. transcribeAudio(). Auth-gated POST /api/ai/transcribe. Returns text + timestamps.

v1.0.00 installs
@ae/ai-translationexperimental

Translate text between 30+ languages with OpenAI. translate(text, targetLang, options). Supports formality and context.

v1.0.00 installs
@ae/ai-vision-analyzerexperimental

Analyze images with GPT-4o vision. analyzeImage(url, task). Tasks: describe, extract-text, classify, analyze-chart, custom.

v1.0.00 installs
@ae/ai-workflow-builderexperimental

Chain AI operations into typed workflows. AIWorkflow class with step(), run(). Supports conditional branching and retries.

v1.0.00 installs

analytics

@ae/analytics-ab-testexperimental

A/B test framework. ab_experiments table, assignVariant(), getVariant(), trackConversion(). ABTest component.

v1.0.00 installs
@ae/analytics-coreexperimental

Page view and event tracking foundation. ae_events table with RLS. trackEvent(), getEvents(), getPageViews().

v1.0.00 installs
@ae/analytics-dashboardexperimental

KPI cards and line chart showing page views, events, and DAU over 30 days. AnalyticsDashboard component.

v1.0.00 installs
@ae/analytics-error-trackingexperimental

Frontend error capture. ErrorBoundary component + useErrorTracker hook. Sends uncaught errors to /api/analytics/error.

v1.0.00 installs
@ae/analytics-event-trackerexperimental

Custom event tracking. useTrackEvent() hook + /api/analytics/event route.

v1.0.00 installs
@ae/analytics-funnelexperimental

Conversion funnel analysis. FunnelChart component with step-by-step drop-off rates.

v1.0.00 installs
@ae/analytics-pageview-trackerexperimental

Client-side page view tracking. PageviewTracker component fires page_view events on route change.

v1.0.00 installs
@ae/analytics-performanceexperimental

Core Web Vitals tracking (LCP, FID, CLS, FCP, TTFB). WebVitalsTracker component.

v1.0.00 installs
@ae/analytics-retentionexperimental

User retention cohort analysis. RetentionChart component showing weekly cohort retention grid.

v1.0.00 installs
@ae/analytics-revenue-metricsexperimental

MRR, ARR, churn rate, and LTV metrics from billing_subscriptions. RevenueMetricsPanel component.

v1.0.00 installs
@ae/analytics-search-analyticsexperimental

Track search queries and result counts. useTrackSearch() hook. TopSearches component.

v1.0.00 installs
@ae/observability-cost-trackingexperimental

Track AI API and external service costs per user. ae_cost_log table. trackCost(), getCostSummary(), CostDashboard.

v1.0.00 installs

audit

@ae/audit-activity-feedexperimental

Real-time activity feed using Supabase Realtime subscription on audit_log. Shows who did what, when.

v1.0.00 installs
@ae/audit-anomaly-detectorexperimental

Detect suspicious audit patterns: rapid bulk deletes, off-hours access, repeated failures. detectAnomalies() returns findings.

v1.0.00 installs
@ae/audit-api-request-logexperimental

Log API requests to DB. api_request_log table, logApiRequest() helper, withRequestLogging() Next.js route wrapper.

v1.0.00 installs
@ae/audit-coreexperimental

Generic audit_log table with trigger function. writeAuditLog(), getAuditLog(), ae_attach_audit() SQL helper.

v1.0.00 installs
@ae/audit-data-exportexperimental

Admin UI to export audit_log entries as CSV. AuditExportButton component + export API route.

v1.0.00 installs
@ae/audit-log-viewerexperimental

Admin UI to browse audit_log with table/operation filters and paginated results.

v1.0.00 installs
@ae/audit-retention-policyexperimental

Auto-purge audit_log records older than configurable retention days. purgeAuditLog() cron helper.

v1.0.00 installs
@ae/audit-searchexperimental

Full-text search across audit_log by table, row ID, user, or date range. AuditSearch component.

v1.0.00 installs
@ae/audit-session-trackerexperimental

Track user session start/end/duration. user_sessions table with RLS. trackSession(), getSessionHistory().

v1.0.00 installs
@ae/compliance-access-reviewexperimental

Periodic access review workflow. List all users with roles, allow admin to revoke/confirm access. AccessReview component.

v1.0.00 installs
@ae/compliance-audit-trail-reportexperimental

Generate a compliance audit trail PDF report for a date range. AuditTrailReport component + PDF API.

v1.0.00 installs
@ae/compliance-breach-notificationexperimental

Breach detection, logging, and notification flow. breach_events table. notifyBreach() sends admin email.

v1.0.00 installs
@ae/compliance-consent-managerexperimental

GDPR consent collection and tracking. consent_records table with RLS. ConsentBanner + ConsentManager components.

v1.0.00 installs
@ae/compliance-crypto-packexperimental

AES-256-GCM field-level encryption for PII/PHI. encrypt(), decrypt(), encryptFields(), decryptFields().

v1.0.00 installs
@ae/compliance-data-classificationexperimental

Data field classification labels (public/internal/confidential/restricted). classifyField(), DataClassificationBadge.

v1.0.00 installs
@ae/compliance-data-subject-requestexperimental

GDPR DSR handler. DataSubjectRequest component for export/delete requests with audit trail.

v1.0.00 installs
@ae/compliance-gdpr-postureexperimental

GDPR compliance checklist tracker. GdprPosture component with control status and gap view.

v1.0.00 installs
@ae/compliance-hipaa-postureexperimental

HIPAA compliance checklist tracker with control status and gap analysis. HipaaPosture component.

v1.0.00 installs
@ae/compliance-incident-logexperimental

Security incident tracking with severity, status, and resolution. IncidentLog component + admin API.

v1.0.00 installs
@ae/compliance-privacy-policy-gateexperimental

Gate UI behind policy acceptance. policy_acceptances table, PolicyGate wrapper component.

v1.0.00 installs
@ae/compliance-risk-registerexperimental

Risk register with likelihood/impact severity matrix and mitigation tracking. RiskRegister component.

v1.0.00 installs
@ae/compliance-soc2-postureexperimental

SOC2 Type II controls tracker across Trust Service Criteria. Soc2Posture component.

v1.0.00 installs
@ae/compliance-training-trackerexperimental

Track compliance training completion per user. training_completions table. TrainingTracker component.

v1.0.00 installs

auth

@ae/auth-account-deletionexperimental

GDPR/CCPA account deletion. Password re-auth + typed confirmation. Hard delete via admin.deleteUser(). Confirmation page included.

v1.0.00 installs
@ae/auth-audit-eventsexperimental

Auth and admin event audit log. ae_audit_log table, logAuditEvent() helper, admin GET endpoint, paginated AuditEventsTable. IF NOT EXISTS safe alongside auth-impersonation.

v1.0.00 installs
@ae/auth-impersonationexperimental

Admin logs in as any user. Role-verified before impersonation. All events logged to ae_audit_log. ImpersonationBanner shown during active session. Requires auth-supabase-core and auth-role-based-access.

v1.0.00 installs
@ae/auth-mfa-smsexperimental

SMS second-factor authentication. Enroll phone via mfa.enroll({factorType:'phone'}). Challenge sends SMS code on login. Requires Supabase phone provider.

v1.0.00 installs
@ae/auth-mfa-totpexperimental

TOTP MFA enroll + challenge. Enroll: QR code scan + code verify. Challenge: post-login AAL2 elevation. Compatible with Google Authenticator, Authy, 1Password.

v1.0.00 installs
@ae/auth-otpexperimental

SMS and email OTP sign-in. 2-step flow: enter phone/email → receive 6-digit code → verify. Real OTP via verifyOtp(), never magic link. Requires auth-supabase-core.

v1.0.00 installs
@ae/auth-pack-admin-onlyexperimental

Admin tool auth bundle: password login, RBAC, impersonation, audit events, user profile, route protection.

v1.0.00 installs
@ae/auth-pack-consumer-saasexperimental

Consumer SaaS auth bundle: password login, OTP, user profile, session device list, route protection.

v1.0.00 installs
@ae/auth-pack-fintechexperimental

Fintech auth bundle: password login, TOTP MFA, passkeys, audit log, session list, idle timeout, route protection, RBAC.

v1.0.00 installs
@ae/auth-pack-gamingexperimental

Gaming auth bundle: password login, email OTP, user profile, session device list. Lightweight.

v1.0.00 installs
@ae/auth-pack-hipaaexperimental

HIPAA-ready auth bundle: password login, TOTP MFA, 15-min idle timeout, audit log, route protection.

v1.0.00 installs
@ae/auth-passkeysexperimental

WebAuthn passkey enroll and AAL2 challenge via Supabase MFA factorType 'webauthn'. No extra dependencies — pure browser API + supabase-js.

v1.0.00 installs
@ae/auth-password-logincanonical

Full password auth flow: sign in, sign up, forgot password, reset password, sign out. No magic links. OTP email confirmation. AE-flavored from supabase-ui. Requires auth-supabase-core.

v1.0.00 installs
@ae/auth-role-based-accessexperimental

RBAC with org-scoped + global roles. user_roles migration + RLS + requireRole() server guard + useRole() client hook.

v1.0.00 installs
@ae/auth-route-protectionexperimental

Client + server route guards. requireAuthServer() for server layouts. RequireAuth for client components.

v1.0.00 installs
@ae/auth-session-device-listexperimental

List and revoke active sessions. Admin API for listing, REST for revoke. Current session protected.

v1.0.00 installs
@ae/auth-session-idle-timeoutexperimental

Client-side idle timeout. HIPAA: 15min. Standard: 30min. Tracks mouse/keyboard/touch. Signs out on inactivity.

v1.0.00 installs
@ae/auth-supabase-corecanonical

SSR client + PKCE + OTP 10min + Resend + proxy.ts (Next.js 16 pattern).

v0.1.00 installs
@ae/auth-user-profilecanonical

Display and edit user profile: full name, email, avatar upload to Supabase Storage. Avatar and name read via getUser() (server-verified). Requires auth-supabase-core and a public 'avatars' Storage bucket.

v1.0.00 installs

base

@ae/base-analytics-providerexperimental

PostHog client provider for Next.js 15 App Router with HIPAA-safe mode and server-side trackEvent().

v1.0.00 installs
@ae/base-dark-modeexperimental

System-aware dark mode via next-themes. ThemeProvider for root layout, DarkModeToggle button (Sun/Moon).

v1.0.00 installs
@ae/base-env-zodcanonical

Typed env vars + result-type + error-boundary + api-response-contract + logger.

v0.1.00 installs
@ae/base-i18nexperimental

next-intl internationalisation for Next.js 15 App Router with locale routing, server config, and base English messages.

v1.0.00 installs
@ae/base-mobile-safe-layoutexperimental

MobileSafeLayout and BottomSafeArea components with CSS env(safe-area-inset-*) for notch/home-bar devices.

v1.0.00 installs
@ae/base-next15-app-routerexperimental

Canonical AE Next.js 15 App Router config with security headers and cn() utility.

v1.0.00 installs
@ae/base-next15-pages-routerexperimental

AE Next.js 15 Pages Router scaffold for legacy retrofit. Includes next.config.ts, _app.tsx, _document.tsx.

v1.0.00 installs
@ae/base-pwa-manifestexperimental

Next.js 15 PWA manifest via app/manifest.ts and a caching service worker at public/sw.js.

v1.0.00 installs
@ae/base-pwa-offlineexperimental

Offline fallback page and PWA install prompt component with beforeinstallprompt handling.

v1.0.00 installs
@ae/base-rate-limiterexperimental

Upstash Redis sliding-window rate limiter. withRateLimit() wrapper returns 429 with Retry-After on breach.

v1.0.00 installs
@ae/base-seo-defaultsexperimental

Next.js 15 Metadata API helpers: generateMetadata(), OG image template, robots.txt route, canonicalUrl().

v1.0.00 installs
@ae/base-shadcn-configexperimental

AE canonical components.json pointing to AE Registry with Tailwind v4 and TypeScript.

v1.0.00 installs
@ae/base-tailwind-v4-configexperimental

AE canonical Tailwind v4 globals.css with CSS-first config, shadcn CSS variables, dark mode, and AE brand tokens.

v1.0.00 installs
@ae/base-toast-notificationsexperimental

Sonner toast provider with AE error contract wiring. ToastProvider component + typed toast() helpers.

v1.0.00 installs
@ae/base-typescript-strict-configexperimental

AE canonical tsconfig.json with strict mode, noUncheckedIndexedAccess, exactOptionalPropertyTypes.

v1.0.00 installs
@ae/base-ui-statesexperimental

Standard loading, empty, and error state components: PageLoader, LoadingSpinner, EmptyState, ErrorState.

v1.0.00 installs

billing

@ae/billing-account-uiexperimental

Customer billing account page. Shows current plan, next billing date, invoices list, and Manage Subscription button (Stripe Customer Portal).

v1.0.00 installs
@ae/billing-admin-opsexperimental

Admin-gated billing operations: issue refunds, apply coupons. Admin check via user_roles, all actions logged to ae_audit_log.

v1.0.00 installs
@ae/billing-credit-walletexperimental

Internal credit/token wallet. credit_ledger table (double-entry), addCredits(), spendCredits(), getBalance() server helpers. CreditWallet component.

v1.0.00 installs
@ae/billing-donation-flowexperimental

Variable-amount donation form with preset amounts and custom input. Supports one-time or monthly recurring via Stripe Checkout.

v1.0.00 installs
@ae/billing-entitlements-checkexperimental

Server helper and client hook to check user plan tier against required tier. Integrates with billing_subscriptions.

v1.0.00 installs
@ae/billing-marketplace-splitexperimental

Stripe Connect marketplace split payments. Vendor Express account onboarding, payout tracking. vendor_accounts table.

v1.0.00 installs
@ae/billing-pricing-uiexperimental

Pricing table component with monthly/annual toggle, recommended plan highlight, and feature checklist.

v1.0.00 installs
@ae/billing-revenue-dashboardexperimental

Admin revenue dashboard: MRR, ARR, churn rate, active subscriptions, recent payments. Admin-gated.

v1.0.00 installs
@ae/billing-seat-basedexperimental

Team seat management. org_seats table, GET/PATCH /api/billing/seats route (syncs Stripe subscription quantity), SeatManager UI.

v1.0.00 installs
@ae/billing-stripe-one-timeexperimental

One-time Stripe Checkout payment. OneTimeCheckout component + /api/billing/one-time route.

v1.0.00 installs
@ae/billing-stripe-standardexperimental

Full Stripe subscription billing: checkout, customer portal, webhook handler. billing_customers + billing_subscriptions tables with RLS.

v1.0.00 installs
@ae/billing-tax-fieldsexperimental

Tax ID collection and Stripe Tax integration. TaxFields form component (VAT/GST/EIN). Server helper updates Stripe customer tax_id_data.

v1.0.00 installs
@ae/billing-trial-managementexperimental

Trial period helpers and TrialBanner component. getTrialInfo(), hasUsedTrial() server helpers. Urgent styling at ≤3 days.

v1.0.00 installs
@ae/billing-usage-meteringexperimental

Usage tracking with usage_records table. trackUsage(), getUsage(), checkUsageLimit() server helpers. UsageMeter progress bar component.

v1.0.00 installs

comms

@ae/comms-alrtme-clientcanonical

Alrtme structured notifications. AE dogfooding its own product.

v0.1.00 installs
@ae/comms-booking-confirmationexperimental

Calaente-wired booking confirmation. sendBookingConfirmation() sends email + in-app notification with add-to-calendar links.

v1.0.00 installs
@ae/comms-broadcast-adminexperimental

Admin broadcast to all users via email + in-app + push. BroadcastAdminPanel + admin-gated API route.

v1.0.00 installs
@ae/comms-contact-formexperimental

Public contact form with honeypot spam protection, Resend delivery, and Supabase storage.

v1.0.00 installs
@ae/comms-email-marketingexperimental

Email list management and broadcast sending via Resend Audiences. addToList(), unsubscribe(), sendBroadcast().

v1.0.00 installs
@ae/comms-email-transactionalexperimental

Triggered transactional emails via Resend. sendWelcome(), sendPasswordReset(), sendEmail(). React Email templates included.

v1.0.00 installs
@ae/comms-in-app-notificationsexperimental

Supabase Realtime notification bell. notifications table, NotificationBell component, useNotifications hook.

v1.0.00 installs
@ae/comms-message-threadexperimental

User-to-user messaging with Supabase Realtime, inbox, reply, and read receipts. messages table + MessageThread component.

v1.0.00 installs
@ae/comms-notification-managementexperimental

User notification preferences: channel toggles (email, push, in-app). notification_prefs table + NotificationPreferences UI.

v1.0.00 installs
@ae/comms-providersexperimental

Resend (email), Twilio (SMS/voice) provider clients. Foundation for all comms/* items.

v1.0.00 installs
@ae/comms-push-notificationsexperimental

Web Push via VAPID. push_subscriptions table, sendPush(), broadcastPush(), usePushSubscribe hook.

v1.0.00 installs
@ae/comms-reminder-sequenceexperimental

Scheduled reminders. reminder_sequences table, scheduleReminder(), cancelReminder(), processReminders() cron helper.

v1.0.00 installs
@ae/comms-support-chatexperimental

User-to-admin support tickets. support_tickets + support_messages tables, SupportChatWidget (user), AdminSupportInbox (admin).

v1.0.00 installs
@ae/comms-waitlist-captureexperimental

Email waitlist with confirmation email and admin notification. waitlist_entries table + WaitlistForm component.

v1.0.00 installs
@ae/comms-webhooks-outboundexperimental

Outbound webhook delivery with HMAC signing and retry queue. webhook_targets + webhook_delivery_log tables.

v1.0.00 installs

db

@ae/db-backup-patternexperimental

HIPAA-compliant Postgres backup. pg_dump script with retention pruning + TypeScript config with 6-year HIPAA defaults and PITR guidance for Supabase Pro+.

v1.0.00 installs
@ae/db-dev-templatesexperimental

Starter SQL templates for AE projects: migration, seed, view, and SECURITY DEFINER RPC — all with AE conventions pre-applied.

v1.0.00 installs
@ae/db-edge-function-templateexperimental

Production-ready Supabase Edge Function template (Deno). CORS handling, auth verification, service-role client, error contract, structured JSON responses.

v1.0.00 installs
@ae/db-full-text-searchexperimental

Postgres FTS with tsvector GENERATED ALWAYS AS STORED column, GIN index, and fts_search() RPC with table allow-listing. TypeScript server helper included.

v1.0.00 installs
@ae/db-identity-schemacanonical

Orgs + memberships + roles + profiles. The spine every other db item depends on.

v0.1.00 installs
@ae/db-realtime-patternexperimental

Supabase Realtime hooks for Postgres row-level change subscriptions and presence tracking. useRealtimeChannel + useRealtimePresence.

v1.0.00 installs
@ae/db-rls-policy-packcanonical

Tenant + user-owned + admin + public-read RLS postures.

v0.1.00 installs
@ae/db-slug-generatorexperimental

URL-safe slug generation with Postgres collision detection. generate_slug() SQL function (SECURITY DEFINER) + TypeScript server helper.

v1.0.00 installs
@ae/db-storage-policy-packexperimental

Supabase Storage bucket creation + RLS policies for avatars (public) and documents (private). TypeScript helpers for upload, public URL, signed URL, and delete.

v1.0.00 installs
@ae/db-table-standardscanonical

Soft-delete + audit-fields + versioning + status + UUID PKs.

v0.1.00 installs
@ae/db-vector-searchexperimental

pgvector semantic similarity search. Embeddings table (1536-dim), HNSW cosine index, match_embeddings() RPC, TypeScript helpers for upsert/search/delete.

v1.0.00 installs

denovo

@ae/denovo-amendment-trackerexperimental

Track entity amendments and charter changes. ae_denovo_amendments. recordAmendment(), getAmendment(), listAmendments(), getLatestAmendment().

v1.0.00 installs
@ae/denovo-annual-reportexperimental

Annual report filing tracker with due-date management. ae_denovo_annual_reports. createReport(), markFiled(), getReport(), listReports(), getUpcomingDue().

v1.0.00 installs
@ae/denovo-compliance-checklistexperimental

Compliance task tracking per entity with due-date reminders. ae_denovo_compliance_tasks. createTask(), completeTask(), snoozeTask(), listTasks(), getOverdueTasks().

v1.0.00 installs
@ae/denovo-document-vaultexperimental

Secure document storage for entity legal documents. ae_denovo_documents. uploadDocument(), getDocument(), listDocuments(), deleteDocument(), getDocumentsByType().

v1.0.00 installs
@ae/denovo-entity-profileexperimental

Business entity master record for DeNovo. ae_denovo_entities. createEntity(), updateEntity(), getEntity(), listEntities(), getEntityStats().

v1.0.00 installs
@ae/denovo-formation-orderexperimental

Entity formation order tracking from intake to completion. ae_denovo_formation_orders + ae_denovo_order_notes. createOrder(), updateOrderStatus(), addOrderNote(), getOrder(), listOrders().

v1.0.00 installs
@ae/denovo-ownership-ledgerexperimental

Member/shareholder ownership tracking with equity percentages. ae_denovo_owners. addOwner(), updateOwnership(), removeOwner(), getOwners(), getOwnershipSummary().

v1.0.00 installs
@ae/denovo-registered-agentexperimental

Registered agent tracking per entity. ae_denovo_registered_agents. setRegisteredAgent(), getRegisteredAgent(), updateRegisteredAgent(), getExpiringAgents().

v1.0.00 installs

design

@ae/design-designai-clientexperimental

Typed client for the DesignOS token override API. Claude / DeNovo calls this mid-build to push per-app CSS token overrides. Includes token sheet builder, CSS serialiser, and async API methods with Result-typed returns.

v1.0.00 installs
@ae/design-fallback-minimalexperimental

Minimal fallback theme when DesignOS is unavailable. Neutral grays + blue primary. Maps ae-* CSS vars to sensible defaults. Includes dark mode via prefers-color-scheme.

v1.0.00 installs
@ae/design-token-contractexperimental

CSS variable contract all ui/* items are built against. DesignAI reads this and generates app-specific overrides. Apps without DesignOS use shadcn fallbacks.

v1.0.00 installs

designos

@ae/designos-color-tokensexperimental

AE design system color token definitions — primary, neutral, semantic, and brand palettes as CSS custom properties for Tailwind v4.

v1.0.00 installs
@ae/designos-component-themeexperimental

AE design system component theme — shadcn/ui CSS variable overrides wired to DesignOS color, typography, spacing, and motion tokens.

v1.0.00 installs
@ae/designos-icon-setexperimental

AE icon set wrapper — thin abstraction over lucide-react with AE sizing conventions and a central Icon component.

v1.0.00 installs
@ae/designos-motion-tokensexperimental

AE design system motion and animation tokens — durations, easings, transitions, and keyframes. Respects prefers-reduced-motion.

v1.0.00 installs
@ae/designos-spacing-scaleexperimental

AE design system spacing and sizing scale — 4px base unit with consistent step scale, border radius, and shadow tokens.

v1.0.00 installs
@ae/designos-typographyexperimental

AE design system typography scale — font families, sizes, weights, line-heights, and letter-spacing as CSS custom properties.

v1.0.00 installs

domain-ai

@ae/agent-dashboardcanonical

A live agent status dashboard showing name, status badge, current task, and tool call history.

v1.0.00 installs
@ae/agent-tool-cardscanonical

A list of tool call cards showing tool name, status, input summary, and output preview with icons for known tool types.

v1.0.00 installs
@ae/ai-chat-panelcanonical

A self-contained AI chat panel using Vercel AI SDK useChat for real streaming conversations.

v1.0.00 installs
@ae/chat-interfacecanonical

A full chat UI with message list, input area, and streaming state indicator for user and assistant messages.

v1.0.00 installs
@ae/chat-modalcanonical

A modal dialog wrapping a full chat UI with message list and input, using shadcn Dialog.

v1.0.00 installs
@ae/chat-sidebarcanonical

A collapsible right-side panel for chat with message list, input area, and toggle control.

v1.0.00 installs
@ae/command-interfacecanonical

A CMD+K command palette built on shadcn Command with grouped items, shortcuts, and icons.

v1.0.00 installs
@ae/domain-ai-agent-runexperimental

AI agent execution tracking with step logging. ae_agent_runs + ae_agent_steps. startRun(), recordStep(), completeRun(), failRun(), getRun(), listRuns().

v1.0.00 installs
@ae/domain-ai-assistant-modalexperimental

Floating chat modal trigger + panel powered by assistant-ui AssistantModal.

v1.0.00 installs
@ae/domain-ai-chat-sessionexperimental

AI conversation session persistence. ae_chat_sessions + ae_chat_messages. createSession(), addMessage(), getSession(), listSessions(), deleteSession().

v1.0.00 installs
@ae/domain-ai-composer-uiexperimental

Standalone message composer input powered by assistant-ui Composer.

v1.0.00 installs
@ae/domain-ai-feedback-loopexperimental

User feedback on AI responses with stats. ae_ai_feedback. recordFeedback(), getFeedbackStats(), getPositiveExamples(), getNegativeExamples().

v1.0.00 installs
@ae/domain-ai-knowledge-baseexperimental

RAG knowledge base with document chunking. ae_knowledge_bases + ae_knowledge_chunks. createKnowledgeBase(), addChunks(), deleteSource(), searchChunks(), getChunkCount().

v1.0.00 installs
@ae/domain-ai-model-evalexperimental

AI model evaluation suites with scoring and benchmarks. ae_model_evals + ae_eval_results. createEval(), recordResult(), scoreResult(), getEvalSummary().

v1.0.00 installs
@ae/domain-ai-prompt-versionexperimental

Versioned prompt templates with diff and active version management. ae_prompt_versions. savePromptVersion(), getActiveVersion(), setActiveVersion(), listVersions(), diffVersions().

v1.0.00 installs
@ae/domain-ai-thread-listexperimental

Sidebar list of past conversation threads powered by assistant-ui.

v1.0.00 installs
@ae/domain-ai-thread-uiexperimental

Full conversation thread panel powered by assistant-ui. Accepts any AssistantRuntime.

v1.0.00 installs
@ae/mcp-app-uiexperimental

An experimental MCP (Model Context Protocol) app UI panel showing connected servers, their tools, and a tool invocation interface.

v1.0.00 installs
@ae/streaming-markdowncanonical

Renders streaming markdown text with a blinking cursor animation during streaming, using react-markdown.

v1.0.00 installs
@ae/voice-agentcanonical

A voice agent UI with animated orb/waveform, start/stop controls, transcript display, and state machine using ElevenLabs.

v1.0.00 installs

domain-bbos

@ae/bbos-forms-autofillexperimental

BBOS-specific form autofill — searches legal entities from the BBOS database and maps fields into target forms.

v1.0.00 installs
@ae/bbos-forms-signatureexperimental

BBOS-specific signature capture with signatory metadata, document reference, and canvas-based signing.

v1.0.00 installs
@ae/bill-pay-litecanonical

A bill payment management panel with bill list, status filtering, add bill form, and mark paid actions.

v1.0.00 installs
@ae/bookkeeper-portalcanonical

A bookkeeping portal with income/expense transaction log, monthly bar chart, and category totals.

v1.0.00 installs
@ae/business-dashboardcanonical

A business metrics dashboard with KPI cards, revenue line chart, and category bar chart.

v1.0.00 installs
@ae/contact-crmcanonical

A CRM contact list with search, status filtering, profile cards, detail side panel, and tag management.

v1.0.00 installs
@ae/domain-bbos-annual-reportexperimental

Hook for tracking annual report filing deadlines, status, and confirmation numbers per entity.

v1.0.00 installs
@ae/domain-bbos-compliance-calendarexperimental

Hook for tracking compliance deadlines and marking events complete for a business entity.

v1.0.00 installs
@ae/domain-bbos-document-vaultexperimental

Hook for uploading, categorizing, and managing entity formation and corporate documents.

v1.0.00 installs
@ae/domain-bbos-entity-profileexperimental

Hook for loading, displaying, and updating a business entity profile including legal name, entity type, EIN, and formation state.

v1.0.00 installs
@ae/domain-bbos-formation-wizardexperimental

Multi-step hook for collecting entity formation data and submitting a formation request.

v1.0.00 installs
@ae/domain-bbos-officer-rosterexperimental

Hook for managing business entity officer roster with add, remove, and update operations.

v1.0.00 installs
@ae/domain-bbos-ownership-tableexperimental

Hook for managing equity ownership entries with add, remove, update, and total percentage calculation.

v1.0.00 installs
@ae/domain-bbos-registered-agentexperimental

Hook for viewing and updating the registered agent information for a business entity.

v1.0.00 installs
@ae/domain-bbos-tax-profileexperimental

Hook for managing tax classification, EIN, fiscal year, and state filing IDs for an entity.

v1.0.00 installs
@ae/entity-setupcanonical

A 3-step legal entity setup wizard: entity type selection, business info and address, and contacts.

v1.0.00 installs
@ae/heatmapcanonical

A heatmap visualization for activity and intensity data using a CSS grid with interpolated color scaling.

v1.0.00 installs
@ae/receipt-enginecanonical

Upload a receipt image, AI extracts vendor, amount, date, and category. Uploads to Supabase Storage.

v1.0.00 installs
@ae/staff-hr-litecanonical

A lightweight HR panel with staff directory, attendance summary, and leave request management.

v1.0.00 installs

domain-charts

@ae/domain-charts-areaexperimental

Responsive multi-series area chart using recharts. CSS custom property colours, shadcn tooltip.

v1.0.00 installs
@ae/domain-charts-barexperimental

Responsive multi-series bar chart (vertical/horizontal, stacked) using recharts.

v1.0.00 installs
@ae/domain-charts-lineexperimental

Responsive multi-series line chart with configurable dots and grid using recharts.

v1.0.00 installs
@ae/domain-charts-pieexperimental

Responsive pie or donut chart with optional centre label using recharts.

v1.0.00 installs
@ae/domain-charts-radarexperimental

Multi-axis radar/spider chart for comparative data using recharts.

v1.0.00 installs
@ae/domain-charts-radialexperimental

Radial bar chart for showing progress/values around a circular axis using recharts.

v1.0.00 installs

domain-cpaas

@ae/domain-cpaas-call-recordingexperimental

Hook for managing call recording lifecycle: start, stop, pause, and retrieve recording URLs.

v1.0.00 installs
@ae/domain-cpaas-call-routingexperimental

IVR routing rules engine. ae_routing_rules. createRule(), updateRule(), deleteRule(), getRoutingPlan(), evaluateRules().

v1.0.00 installs
@ae/domain-cpaas-conference-roomexperimental

Hook for multi-party conference room management: join, mute, kick, and roster tracking.

v1.0.00 installs
@ae/domain-cpaas-ivr-builderexperimental

Visual IVR call flow builder with color-coded node types (greeting/menu/gather/transfer/voicemail/hangup), recursive tree rendering, inline label editing, add/delete nodes, publish and test actions.

v1.0.00 installs
@ae/domain-cpaas-message-logexperimental

Inbound/outbound message logging across channels. ae_message_log. logMessage(), getConversation(), searchMessages(), getMessageStats().

v1.0.00 installs
@ae/domain-cpaas-number-provisionexperimental

Phone number inventory and tenant assignments. ae_phone_numbers. provisionNumber(), assignToTenant(), releaseNumber(), listNumbers(), getNumber().

v1.0.00 installs
@ae/domain-cpaas-opt-outexperimental

TCPA-compliant opt-out management. ae_opt_outs. recordOptOut(), checkOptOut(), reinstateConsent(), getOptOutList().

v1.0.00 installs
@ae/domain-cpaas-reseller-portalexperimental

Reseller portal with gross/net revenue summary, sub-account table (usage/billing/revenue share/status/suspend), inline markup configuration per channel, and provision new account form.

v1.0.00 installs
@ae/domain-cpaas-sip-trunkexperimental

Hook for SIP trunk configuration, status monitoring, and channel capacity management.

v1.0.00 installs
@ae/domain-cpaas-sms-campaignexperimental

Bulk SMS campaign management. ae_sms_campaigns + ae_sms_messages. createCampaign(), scheduleCampaign(), logMessage(), getDeliveryStats(), listCampaigns().

v1.0.00 installs
@ae/domain-cpaas-transcriptionexperimental

Hook for real-time and post-call transcription with speaker diarization and word-level timestamps.

v1.0.00 installs
@ae/domain-cpaas-usage-dashboardexperimental

CPaaS usage dashboard with per-channel stats (voice/SMS/video/fax), quota progress bars, total spend card, daily usage bar chart (last 7 days), top sub-accounts by usage, and date range filter.

v1.0.00 installs
@ae/domain-cpaas-voice-callexperimental

Voice call session tracking. ae_voice_calls. initiateCall(), recordCallEvent(), endCall(), getCallLog(), getCallStats().

v1.0.00 installs
@ae/domain-cpaas-webhook-configexperimental

Webhook endpoint configuration with URL input, event type checkboxes with descriptions, signing secret display/copy/rotate, delivery log with status icons and retry, and test ping action.

v1.0.00 installs

domain-creator

@ae/domain-creator-commissionexperimental

Commission tracking for custom work / freelance orders. ae_commissions + ae_commission_revisions. createCommission(), updateCommissionStatus(), addRevision(), getCommission(), listCommissions().

v1.0.00 installs
@ae/domain-creator-digital-productexperimental

Sell digital downloads, templates, and courses. ae_digital_products + ae_digital_purchases. createProduct(), publishProduct(), recordPurchase(), hasPurchased(), getDownloadUrl(), listProducts(), getMyPurchases().

v1.0.00 installs
@ae/domain-creator-media-kitexperimental

Public media kit with stats, bio, and brand assets. ae_media_kits + ae_media_kit_assets. upsertMediaKit(), getMediaKit(), getPublicMediaKit(), addAsset(), removeAsset().

v1.0.00 installs
@ae/domain-creator-membershipexperimental

Tiered creator memberships with access control. ae_membership_tiers + ae_creator_memberships. createTier(), createMembership(), upgradeMembership(), checkMemberAccess(), getMembershipStats().

v1.0.00 installs
@ae/domain-creator-tip-jarexperimental

Accept one-time tips from fans — authenticated or anonymous. ae_tips. sendTip(), confirmTip(), getTips(), getTipStats().

v1.0.00 installs

domain-crm

@ae/domain-crm-activity-timelineexperimental

Chronological interaction log with type icons (call/email/meeting/note/task/deal). Headless.

v1.0.00 installs
@ae/domain-crm-contact-listexperimental

Filterable contact table with tag filter chips, status badges, and last-contact date. Headless.

v1.0.00 installs
@ae/domain-crm-contact-profileexperimental

Contact detail: avatar, info, notes with add-note form, call/email action buttons. Headless.

v1.0.00 installs
@ae/domain-crm-email-logexperimental

Sent/received email thread viewer with list+detail two-pane layout. Headless.

v1.0.00 installs
@ae/domain-crm-pipelineexperimental

Deal/opportunity kanban with HTML5 drag-and-drop, deal cards with value display. Headless.

v1.0.00 installs
@ae/domain-crm-task-managerexperimental

CRM-linked task list with priority, status, due dates, and contact linkage. Headless.

v1.0.00 installs

domain-crypto

@ae/domain-crypto-airdrop-claimexperimental

Airdrop eligibility check and claim interface with merkle proof verification flow and claim status tracking.

v1.0.00 installs
@ae/domain-crypto-community-rewardsexperimental

Community rewards dashboard showing earned points, tier status, claimable tokens, and reward history.

v1.0.00 installs
@ae/domain-crypto-dao-votingexperimental

DAO governance proposal list with vote casting, quorum indicator, vote breakdown, and proposal status tracking.

v1.0.00 installs
@ae/domain-crypto-fiat-onrampexperimental

Fiat-to-crypto purchase widget with amount input, payment method selector, rate preview, and provider redirect.

v1.0.00 installs
@ae/domain-crypto-game-economyexperimental

In-game currency wallet with token balances, recent transactions, marketplace link, and earn/spend actions.

v1.0.00 installs
@ae/domain-crypto-nft-galleryexperimental

NFT collection grid with image, name, token ID, rarity, and list/transfer actions. Supports ERC-721 and ERC-1155.

v1.0.00 installs
@ae/domain-crypto-staking-dashboardexperimental

Staking positions overview with APY, staked amount, pending rewards, and stake/unstake/claim actions.

v1.0.00 installs
@ae/domain-crypto-token-balanceexperimental

Multi-token balance display with logos, amounts, USD values, and 24h price change indicators.

v1.0.00 installs
@ae/domain-crypto-tokenomics-pageexperimental

Token distribution breakdown with allocation chart, vesting schedule, circulating supply stats, and key metrics.

v1.0.00 installs
@ae/domain-crypto-transaction-historyexperimental

Paginated table of on-chain transactions with hash, type, amount, status, and timestamp. Supports EVM-compatible chains.

v1.0.00 installs
@ae/domain-crypto-wallet-displayexperimental

Connected wallet address, balance, network indicator, and disconnect action. Supports EVM-compatible chains.

v1.0.00 installs

domain-ecommerce

@ae/domain-ecommerce-cartexperimental

Shopping cart with session and auth support. ae_carts + ae_cart_items. getOrCreateCart(), addItem(), updateQuantity(), removeItem(), clearCart().

v1.0.00 installs
@ae/domain-ecommerce-checkoutexperimental

Checkout flow management. ae_checkout_sessions. createCheckoutSession(), applyDiscount(), getCheckoutSummary(), convertToOrder().

v1.0.00 installs
@ae/domain-ecommerce-discount-codesexperimental

Discount code creation and redemption. ae_discount_codes. createCode(), validateCode(), redeemCode(), applyDiscount().

v1.0.00 installs
@ae/domain-ecommerce-inventoryexperimental

Product inventory tracking. ae_inventory + ae_inventory_movements. adjustStock(), reserveStock(), releaseStock(), getStockLevel().

v1.0.00 installs
@ae/domain-ecommerce-order-managementexperimental

Order lifecycle management. ae_orders + ae_order_items. createOrder(), updateOrderStatus(), getOrder(), listOrders(), cancelOrder().

v1.0.00 installs
@ae/domain-ecommerce-product-catalogexperimental

Product catalog management. ae_products + ae_product_images. createProduct(), updateProduct(), getProduct(), listProducts(), searchProducts().

v1.0.00 installs
@ae/domain-ecommerce-reviewsexperimental

Product review and rating system. ae_reviews. submitReview(), getProductReviews(), getAverageRating(), moderateReview().

v1.0.00 installs
@ae/domain-ecommerce-shipping-trackerexperimental

Shipment tracking and fulfillment. ae_shipments. createShipment(), updateTracking(), getShipmentByOrder(), markDelivered().

v1.0.00 installs
@ae/domain-ecommerce-storefront-analyticsexperimental

Storefront event tracking. ae_storefront_events. trackEvent(), getTopProducts(), getConversionFunnel(), getRevenueByPeriod().

v1.0.00 installs
@ae/domain-ecommerce-wishlistexperimental

Customer wishlist management. ae_wishlists + ae_wishlist_items. addToWishlist(), removeFromWishlist(), getWishlist(), moveToCart().

v1.0.00 installs

domain-editor

@ae/domain-editor-ai-copilotexperimental

Plate rich-text editor with AI ghost-text copilot plugin wired to a custom completion endpoint.

v1.0.00 installs
@ae/domain-editor-collab-yjsexperimental

Plate editor with real-time collaboration via Yjs + HocusPocus WebSocket provider.

v1.0.00 installs
@ae/domain-editor-docx-ioexperimental

Utility functions to import DOCX ArrayBuffers into Plate Value and export back to DOCX Blob.

v1.0.00 installs
@ae/domain-editor-plate-coreexperimental

Base Plate rich-text editor with Tailwind v4 styling. No plugins — compose your own.

v1.0.00 installs

domain-edu

@ae/domain-edu-assignmentexperimental

Assignment creation and submission management. ae_assignments + ae_assignment_submissions. createAssignment(), submitAssignment(), gradeSubmission(), getSubmissions().

v1.0.00 installs
@ae/domain-edu-attendanceexperimental

Date-grid attendance tracker with click-to-cycle status (present/absent/late/excused), week pagination, per-student attendance rate, class summary stats, and CSV export.

v1.0.00 installs
@ae/domain-edu-certificateexperimental

Course completion certificate issuance. ae_certificates. issueCertificate(), getCertificate(), listCertificates(), verifyCertificate().

v1.0.00 installs
@ae/domain-edu-course-catalogexperimental

Course catalog management. ae_courses + ae_course_modules. createCourse(), publishCourse(), getCourse(), listCourses(), searchCourses().

v1.0.00 installs
@ae/domain-edu-curriculum-builderexperimental

Collapsible unit/lesson tree builder with lesson type badges (lecture/lab/quiz/assignment/discussion), duration tracking, draft/published toggle per lesson, add/delete units and lessons, and publish course action.

v1.0.00 installs
@ae/domain-edu-discussion-boardexperimental

Course discussion threads and replies. ae_discussions + ae_discussion_replies. createThread(), replyToThread(), getThreads(), getThread(), pinThread().

v1.0.00 installs
@ae/domain-edu-enrollmentexperimental

Student enrollment management. ae_enrollments. enroll(), unenroll(), getEnrollment(), listEnrollments(), isEnrolled().

v1.0.00 installs
@ae/domain-edu-gradebookexperimental

Inline-editable gradebook spreadsheet with weighted assignment categories, per-student running average, letter grade column, category filter, CSV export, and distribution stat cards.

v1.0.00 installs
@ae/domain-edu-lesson-contentexperimental

Lesson content management. ae_lessons. createLesson(), updateLesson(), getLesson(), listLessonsByModule(), reorderLessons().

v1.0.00 installs
@ae/domain-edu-parent-portalexperimental

Parent-facing portal with child academic progress per course, trend indicators, attendance rates, upcoming events, recent grades, documents library, and in-portal teacher messaging.

v1.0.00 installs
@ae/domain-edu-progress-trackerexperimental

Student lesson and course progress. ae_lesson_progress. markComplete(), getCourseProgress(), getCompletedLessons(), isCourseComplete().

v1.0.00 installs
@ae/domain-edu-quiz-engineexperimental

Quiz creation and attempt management. ae_quizzes + ae_quiz_questions + ae_quiz_attempts. createQuiz(), addQuestion(), submitAttempt(), gradeAttempt(), getBestScore().

v1.0.00 installs
@ae/domain-edu-student-dashboardexperimental

Student-facing LMS dashboard with enrolled courses progress grid, streak and XP display, upcoming assignments due-soon list, and recent grades with letter grade badges.

v1.0.00 installs
@ae/domain-edu-teacher-dashboardexperimental

Teacher-facing dashboard with class stats (classes/students/to-grade), active classes list with average grade and pending submissions, and grading queue with per-task progress bars.

v1.0.00 installs
@ae/domain-edu-virtual-classroomexperimental

Virtual classroom session UI with participant video grid, raise-hand queue with lower-hand action, screen share indicator, side chat panel with send, mute all, remove participant, and end class controls.

v1.0.00 installs

domain-finance

@ae/domain-finance-bank-reconcileexperimental

Bank statement reconciliation. ae_bank_transactions. importTransactions(), matchTransaction(), getUnmatched(), reconcilePeriod().

v1.0.00 installs
@ae/domain-finance-bill-payexperimental

Bill/vendor payment workflow with overdue/upcoming/history grouping. All amounts as display strings. Headless.

v1.0.00 installs
@ae/domain-finance-bookkeeper-ledgerexperimental

General ledger entries display with debit/credit, running balance, reconciliation checkboxes. Headless.

v1.0.00 installs
@ae/domain-finance-budget-trackerexperimental

Budget creation and spend tracking. ae_budgets + ae_budget_lines. createBudget(), recordActual(), getBudgetVsActual(), getRemainingBudget().

v1.0.00 installs
@ae/domain-finance-cashflowexperimental

Cash flow statement with operating, investing, and financing activity sections, net change calculation, opening/closing cash balance, and period selector.

v1.0.00 installs
@ae/domain-finance-client-portalexperimental

Client-facing finance portal with portfolio value/gain/cash summary, allocation bar chart, recent transactions, positions table with per-position P&L, and document vault with download.

v1.0.00 installs
@ae/domain-finance-crypto-walletexperimental

Crypto portfolio tracking. ae_crypto_holdings + ae_crypto_price_snapshots. addHolding(), updateHolding(), getHoldings(), getPortfolioValue(), recordPriceSnapshot().

v1.0.00 installs
@ae/domain-finance-entity-cap-tableexperimental

Equity cap table management. ae_cap_table_entries. issueShares(), transferShares(), getDilutedOwnership(), getCapTable(), vestedShares().

v1.0.00 installs
@ae/domain-finance-expense-reportexperimental

Expense tracking and reporting. ae_expenses. submitExpense(), approveExpense(), getExpensesByPeriod(), summarizeByCategory().

v1.0.00 installs
@ae/domain-finance-invoice-builderexperimental

Invoice creation and management. ae_invoices + ae_invoice_items. createInvoice(), addLineItem(), finalizeInvoice(), getInvoice(), listInvoices().

v1.0.00 installs
@ae/domain-finance-ledger-entryexperimental

Double-entry ledger for financial tracking. ae_ledger_entries. postEntry(), getAccountBalance(), getLedgerByAccount(), getTrialBalance().

v1.0.00 installs
@ae/domain-finance-payment-trackerexperimental

Payment recording and reconciliation. ae_payments. recordPayment(), getPaymentsByInvoice(), getOutstandingBalance(), markPaid().

v1.0.00 installs
@ae/domain-finance-payroll-liteexperimental

Simple payroll run management. ae_payroll_runs + ae_payroll_entries. createPayrollRun(), addEntry(), finalizeRun(), getRunSummary().

v1.0.00 installs
@ae/domain-finance-plaid-connectexperimental

Bank account connection widget with institution logo, account type badges (checking/savings/credit/investment/loan), balance display, sync status, disconnect with confirm, and add-account CTA.

v1.0.00 installs
@ae/domain-finance-profit-lossexperimental

Profit and loss statement with revenue, COGS, gross profit, operating expense sections, EBITDA, net income — with prior period comparison, variance %, and YTD net income card.

v1.0.00 installs
@ae/domain-finance-receipt-engineexperimental

Receipt upload, OCR parse display, category tagging, confirm/reject flow. Headless.

v1.0.00 installs
@ae/domain-finance-tax-estimatorexperimental

Quarterly tax estimation. ae_tax_estimates. estimateQuarterlyTax(), saveEstimate(), getEstimatesByYear(), computeSETax().

v1.0.00 installs
@ae/domain-finance-trade-logexperimental

Paginated trade history log with symbol, side, quantity, entry/exit display, realized P&L, duration, win rate stats, search, side filter, and CSV export.

v1.0.00 installs
@ae/domain-finance-trading-dashboardexperimental

Trading dashboard with watchlist, live quote stats (bid/ask/spread/volume), open positions with P&L, order entry form (buy/sell, market/limit/stop), and order book depth display.

v1.0.00 installs

domain-forms

@ae/ai-fillercanonical

AI-assisted form field completion — fetches value suggestions from an API route and lets the user accept or reject each one.

v1.0.00 installs
@ae/domain-forms-autofillexperimental

AI-powered form autofill from uploaded document. Accept/skip per-field suggestions. Headless.

v1.0.00 installs
@ae/domain-forms-builderexperimental

Drag-and-drop form field builder with field type palette and inline label editing. Headless.

v1.0.00 installs
@ae/domain-forms-signatureexperimental

Canvas-based e-signature capture with name input, clear, and save. Read-only display mode. Headless.

v1.0.00 installs
@ae/domain-forms-submission-logexperimental

Submitted form log with status management, detail panel, and CSV export callback. Headless.

v1.0.00 installs
@ae/form-autofillexperimental

Populates form fields from a structured data source using a searchable popover and configurable field mappings.

v1.0.00 installs
@ae/form-buildercanonical

Drag-and-drop form builder with field palette, reordering, and inline field configuration.

v1.0.00 installs
@ae/form-renderercanonical

Renders a dynamic form from a FormSchema definition using react-hook-form and zod validation.

v1.0.00 installs
@ae/form-signatureexperimental

Touch/mouse/stylus signature capture that outputs a base64 PNG data URL with timestamp.

v1.0.00 installs
@ae/multi-step-wizardcanonical

Multi-step form wizard with step indicator, per-step validation, and Back/Next/Submit navigation.

v1.0.00 installs

domain-game

@ae/domain-game-achievementexperimental

Achievement definitions and player unlocks. ae_achievement_definitions + ae_player_achievements. defineAchievement(), unlockAchievement(), getPlayerAchievements(), hasAchievement().

v1.0.00 installs
@ae/domain-game-action-point-trackerexperimental

Headless action-point pip row. Spent/available pips with data-state. Numeric fallback when total > pipThreshold (default 20). spend/restore/reset API. onSpend/onRestore/onExhausted callbacks.

v1.0.00 installs
@ae/domain-game-admin-content-editorexperimental

Game content management admin panel for quests, items, NPCs, and events. CRUD table with type/status filters, status toggle, and edit/delete actions.

v1.0.00 installs
@ae/domain-game-audio-puzzleexperimental

Headless Web Audio API pitch-matching puzzle hook. setTargetFrequency/setUserFrequency update state. match: locked/close/miss computed from abs difference vs toleranceHz. offsetHz is signed diff. analyserRef exposed for optional visualizer. AudioContext created on start(), closed on stop(). Full lifecycle cleanup on unmount. Zero rendering.

v1.0.00 installs
@ae/domain-game-card-faceexperimental

Headless card flip primitive. CSS rotateY transform for face-up/down. data-face attribute. No animation library — transition via CSS custom property. Front and back slots accept any ReactNode.

v1.0.00 installs
@ae/domain-game-card-handexperimental

Headless card hand layout primitive. Fan spread via CSS transform rotate per index. Hover-lift and selected-lift states. data-selected on active card. Play callback on double-select.

v1.0.00 installs
@ae/domain-game-choice-promptexperimental

Headless multi-choice selection primitive. Keyboard navigation ArrowUp/Down, Enter/Space to select. Disable-after-pick state. data-selected and data-focused per item for CSS targeting.

v1.0.00 installs
@ae/domain-game-combo-multiplierexperimental

Headless combo streak counter with time-window decay. hit() extends streak; windowMs timeout resets to zero. Configurable multiplier tiers (minStreak → multiplier). onStreakChange callback. Zero rendering.

v1.0.00 installs
@ae/domain-game-cooldown-managerexperimental

Headless per-ability cooldown strip. Imperative trigger via ref.trigger(id). data-state ready/cooling per ability. rAF fill bar shows remaining fraction. cancelAnimationFrame cleanup. All colors via CSS custom properties.

v1.0.00 installs
@ae/domain-game-countdown-timerexperimental

Headless MM:SS timer primitive. Supports count-down or count-up direction, warning threshold band, onExpire/onTick callbacks, no setInterval leaks. data-band attribute (normal/warning/expired) for CSS state targeting.

v1.0.00 installs
@ae/domain-game-deck-managerexperimental

Headless card deck hook. crypto.getRandomValues Fisher-Yates shuffle, draw-N, discard, reshuffleFromDiscard, reset. Generic T extends DeckCard. State: deck / hand / discard arrays.

v1.0.00 installs
@ae/domain-game-dialogue-boxexperimental

Headless typewriter dialogue primitive. Char-by-char reveal via setInterval. Speaker name slot. Skip-to-end on click. onAdvance and onComplete callbacks. data-state typing/complete.

v1.0.00 installs
@ae/domain-game-dialogue-branchexperimental

Headless branching dialogue graph. Nodes hold text + condition-function array. Function-prop predicates only — no eval. data-state active/resolved/locked per node. onAdvance/onComplete callbacks.

v1.0.00 installs
@ae/domain-game-dialogue-treeexperimental

In-game dialogue UI with NPC portrait, text, player response choices, branching navigation, consequence labels, and history back-tracking.

v1.0.00 installs
@ae/domain-game-economy-ledgerexperimental

In-game economy transaction ledger with multi-currency balances, income/expense breakdown, and full transaction history with balance-after tracking.

v1.0.00 installs
@ae/domain-game-election-engineexperimental

Headless multi-candidate election simulation hook. addVote(candidateId, districtId?) tracks votes. tally() returns total per candidate. tallyByDistrict() returns per-district breakdown. winner() returns leading candidate or null on tie. onVoteCast/onElectionEnd callbacks. Pure computation. Zero rendering.

v1.0.00 installs
@ae/domain-game-flag-state-panelexperimental

Headless key-value game variable panel. Infers type (boolean/number/string) per flag: booleans get toggle buttons, numbers and strings get inline click-to-edit inputs. Optional add/remove handlers.

v1.0.00 installs
@ae/domain-game-fsmexperimental

Headless generic finite state machine hook. Named states + guarded transitions + enter/exit hooks. S extends string, E extends string generics. context object for guard predicates. Zero rendering.

v1.0.00 installs
@ae/domain-game-game-logexperimental

Headless immutable event log hook. Append-only push with typed entries. Undo/redo stacks with canUndo/canRedo flags. clear() resets all. Zero rendering.

v1.0.00 installs
@ae/domain-game-gravity-cascadeexperimental

Headless 2D grid gravity simulation hook. cascade() runs until stable. cascadeStep() runs one pass and reports whether any cell moved. Generic isEmpty predicate. Pure computation. Zero rendering.

v1.0.00 installs
@ae/domain-game-grid-mapexperimental

Headless 2D tile grid primitive. CSS grid layout. Cell click dispatch, hover and selection state. Consumer-defined data-state per cell via CellDef. Keyboard navigable. No canvas.

v1.0.00 installs
@ae/domain-game-hotbarexperimental

Headless 1D keymapped hotbar slot strip. Configurable key bindings per slot. Imperative triggerCooldown(slotIndex, durationMs) and setActive(slotIndex) via ref (HotbarHandle). rAF cooldown fill with cancelAnimationFrame cleanup. data-state empty/occupied/active/cooling per slot.

v1.0.00 installs
@ae/domain-game-inventory-gridexperimental

Headless 2D inventory slot grid. One item per cell. data-state empty/occupied/selected per slot. Keyboard navigable with arrow keys. Native HTML5 DnD for item moves. All visual values via CSS custom properties.

v1.0.00 installs
@ae/domain-game-inventory-itemsexperimental

Item catalog and player inventory management. ae_item_catalog + ae_player_inventory. grantItem(), consumeItem(), getInventory(), getItemCatalog().

v1.0.00 installs
@ae/domain-game-leaderboardexperimental

Score submission and ranked leaderboard by period. ae_leaderboard_entries. submitScore(), getLeaderboard(), getMyScore(), getMyRank().

v1.0.00 installs
@ae/domain-game-live-counterexperimental

Headless live-value counter primitive. Displays value with delta badge (prev→current diff), fill-track progress, and threshold band detection (normal/warning/critical). All colors via CSS custom properties.

v1.0.00 installs
@ae/domain-game-lore-wikiexperimental

In-game lore/wiki browser with category sidebar, entry list, article detail view, and locked entries shown as redacted until unlocked in-game.

v1.0.00 installs
@ae/domain-game-match-detectorexperimental

Headless N-in-a-row grid match detector hook. detect() scans horizontal, vertical, and both diagonals. Generic matchFn predicate. Returns MatchGroup[] with cells + direction. Pure computation. Zero rendering.

v1.0.00 installs
@ae/domain-game-match-historyexperimental

Match records and per-player results. ae_matches + ae_match_participants. createMatch(), completeMatch(), getMatch(), getPlayerMatchHistory().

v1.0.00 installs
@ae/domain-game-matchmakingexperimental

Rating-based matchmaking queue. ae_matchmaking_queue. joinQueue(), leaveQueue(), getQueueStatus(), findCandidates(), markMatched().

v1.0.00 installs
@ae/domain-game-narrative-engineexperimental

Headless branching narrative hook. Passages map with typed links and function-prop conditions (no eval). variables Record drives condition evaluation. advance(linkIndex) follows available links. goTo(passageId) jumps directly. setVariable updates state. availableLinks filtered by conditions. onPassageChange callback. Zero rendering.

v1.0.00 installs
@ae/domain-game-node-graphexperimental

Headless node-and-edge graph canvas primitive. Absolute-positioned div nodes over an SVG line edge overlay. Canvas pan via mouse drag (document-level event cleanup). data-selected attribute on nodes for CSS targeting.

v1.0.00 installs
@ae/domain-game-notification-toastexperimental

Headless game notification queue. Imperative push via ref.push(msg). Auto-dismiss after duration. data-state entering/visible/leaving per toast. clearTimeout cleanup on unmount. onDismiss callback.

v1.0.00 installs
@ae/domain-game-pathfinderexperimental

Headless A* pathfinder hook for 2D boolean obstacle grids. findPath(grid, start, end, options) returns PathCell[] or null. Optional diagonal movement. Pure computation. Zero rendering.

v1.0.00 installs
@ae/domain-game-phase-trackerexperimental

Headless step-progress primitive for game phases. Dot-and-connector layout with data-state per step (done/active/pending). Optional click-to-navigate. All visual values via CSS custom properties.

v1.0.00 installs
@ae/domain-game-player-profileexperimental

Per-game player identity, XP, and level tracking. ae_player_profiles. upsertPlayerProfile(), getPlayerProfile(), addXP(), getTopPlayers().

v1.0.00 installs
@ae/domain-game-quest-logexperimental

Player quest log with active/completed/failed quest lists, objective checklist with progress tracking, XP rewards, and quest accept/abandon actions.

v1.0.00 installs
@ae/domain-game-resource-barexperimental

Headless fill-bar primitive for HP, mana, stamina and any bounded resource. Band detection (normal/warning/critical/empty) via data-band. Optional segment dividers. All colors via CSS custom properties.

v1.0.00 installs
@ae/domain-game-reward-claimexperimental

Daily/weekly reward claim panel with 7-day streak tracking, tier display, countdown to next reset, and claim action.

v1.0.00 installs
@ae/domain-game-rhythm-judgeexperimental

Headless beat timing judge. judge() compares tap timestamp to beat window and returns perfect/good/ok/miss verdict with offsetMs. track() computes expected beat times from BPM. Configurable tolerance windows. Pure computation. Zero rendering.

v1.0.00 installs
@ae/domain-game-save-stateexperimental

Named save slots per player per game. ae_save_states. saveGame(), loadGame(), listSaveSlots(), deleteSaveSlot().

v1.0.00 installs
@ae/domain-game-score-tickerexperimental

Headless animated score display. requestAnimationFrame count-up with ease-out cubic. Multiplier badge slot. Delta flash badge with data-sign pos/neg/zero. data-state counting/idle.

v1.0.00 installs
@ae/domain-game-season-passexperimental

Battle pass / season pass UI with tier track, free vs premium reward lanes, XP progress bar, season end countdown, and upgrade CTA.

v1.0.00 installs
@ae/domain-game-sequence-sorterexperimental

Headless drag-to-reorder primitive using native HTML5 DnD. Items have data-state per slot (unchecked/correct/incorrect) when checked against correctOrder. Submit and reset controls included.

v1.0.00 installs
@ae/domain-game-spawn-controllerexperimental

Headless entity spawn emitter. interval/burst/wave modes. Imperative start/stop/reset via ref (SpawnControllerHandle). maxEntities cap with onCapReached callback. data-state idle/spawning/capped/stopped. All timers cleared on unmount.

v1.0.00 installs
@ae/domain-game-tournamentexperimental

Tournament bracket with rounds, match cards (participants + scores + winner), registration, prize tiers, and status (registration/in-progress/completed).

v1.0.00 installs
@ae/domain-game-turn-orderexperimental

Headless player turn queue primitive. data-state active/waiting/skipped per player. Optional avatar slot, advance and skip controls. Forward or backward direction.

v1.0.00 installs
@ae/domain-game-variable-storeexperimental

Headless key-value game variable store with optional sessionStorage sync. get/set/increment/toggle/reset operations. snapshot exposes full store. Zero rendering.

v1.0.00 installs
@ae/domain-game-virtual-currencyexperimental

Multi-currency wallets with full transaction ledger. ae_currency_wallets + ae_currency_transactions. creditCurrency(), debitCurrency(), getBalance(), getWallets().

v1.0.00 installs
@ae/domain-game-win-conditionexperimental

Headless win/loss predicate evaluator. Each condition fires once when predicate returns true. data-state pending/met/failed per condition. onConditionMet/onAllMet callbacks. All colors via CSS custom properties.

v1.0.00 installs
@ae/domain-game-word-inputexperimental

Headless letter-cell word input primitive. Keyboard capture via hidden input with sr-only label. Auto-advance on letter, backspace to retreat. Per-cell data-state: empty/filled/correct/incorrect/present.

v1.0.00 installs

domain-health

@ae/domain-health-allergy-listexperimental

Allergy list with NKDA toggle, severity badges, and add-allergy dialog. Supports mild/moderate/severe/life-threatening classifications. PHI-safe.

v1.0.00 installs
@ae/domain-health-appointment-slotexperimental

Appointment booking with conflict detection. ae_appointments. bookSlot(), cancelAppointment(), getAppointmentsForDay(), getPatientAppointments().

v1.0.00 installs
@ae/domain-health-calaente-clientexperimental

Clinical appointment booking widget integrated with Calaente hub. Shows available time slots by day, appointment types, telehealth support, and booking confirmation. PHI-safe.

v1.0.00 installs
@ae/domain-health-care-planexperimental

Patient care plan management. ae_care_plans + ae_care_goals. createCarePlan(), addGoal(), updateGoalStatus(), getActiveCarePlan().

v1.0.00 installs
@ae/domain-health-clinical-noteexperimental

Immutable HIPAA clinical notes. ae_clinical_notes. createNote(), addAddendum(), getNotes(), signNote().

v1.0.00 installs
@ae/domain-health-clinical-task-listexperimental

Task management for clinical workflows: lab orders, referrals, follow-up calls, Rx renewals, prior auth, documentation. Priority levels and completion tracking. PHI-safe.

v1.0.00 installs
@ae/domain-health-consent-formexperimental

Patient consent management. ae_consent_forms. createConsent(), signConsent(), revokeConsent(), getConsents(), hasActiveConsent().

v1.0.00 installs
@ae/domain-health-glp-intakeexperimental

GLP-1 medication intake form covering anthropometrics, comorbidities, prior GLP-1 meds, contraindications, labs, lifestyle, and patient consent. PHI-safe.

v1.0.00 installs
@ae/domain-health-hipaa-packexperimental

HIPAA compliance dashboard: BAA tracker, staff training status, access review, incident count, and risk assessment scheduling. Admin-facing. PHI-safe.

v1.0.00 installs
@ae/domain-health-insurance-eligibilityexperimental

Patient insurance eligibility verification. ae_insurance_eligibility. storeEligibilityResult(), getEligibility(), getLatestEligibility(), isEligibilityStale().

v1.0.00 installs
@ae/domain-health-intake-formexperimental

Multi-step patient intake form covering demographics, chief complaint, medications, allergies, medical history, and consent. PHI-safe with auth-supabase-core required.

v1.0.00 installs
@ae/domain-health-lab-resultsexperimental

Lab order and result tracking. ae_lab_orders + ae_lab_results. orderLab(), recordResult(), getPatientLabHistory(), hasAbnormalResults(), hasCriticalResults().

v1.0.00 installs
@ae/domain-health-medication-listexperimental

CRUD medication list with active and discontinued sections. Add/edit via dialog with frequency select. Discontinue action soft-deletes. PHI-safe.

v1.0.00 installs
@ae/domain-health-patient-recordexperimental

HIPAA patient record management. ae_patients table. getPatient(), createPatient(), updatePatient(), searchPatients(), listPatients().

v1.0.00 installs
@ae/domain-health-phi-exportexperimental

HIPAA-compliant PHI export form with date range, data category selection, format (PDF/CSV/FHIR R4/C-CDA), purpose of disclosure, recipient, and audit logging. PHI-safe.

v1.0.00 installs
@ae/domain-health-prior-authexperimental

Insurance prior authorization tracking. ae_prior_auths + ae_prior_auth_config. submitPriorAuth(), updateAuthStatus(), getPriorAuths(), isAuthRequired(), getApprovedAuth().

v1.0.00 installs
@ae/domain-health-provider-dashboardexperimental

Clinical provider dashboard with stats (patients today, completed, pending tasks, remaining), upcoming appointments, and task queue. PHI-safe.

v1.0.00 installs
@ae/domain-health-provider-profileexperimental

Clinical provider profile management. ae_provider_profiles. getProviderProfile(), upsertProviderProfile(), getProvidersBySpecialty(), searchProviders().

v1.0.00 installs
@ae/domain-health-provider-scheduleexperimental

Day-view provider schedule with appointment cards, status progression (scheduled → checked-in → in-progress → completed), and date navigation. PHI-safe.

v1.0.00 installs
@ae/domain-health-referral-formexperimental

Specialist referral form with specialty, urgency, referring/receiving provider, clinical background, diagnoses, medications, and authorization number. PHI-safe.

v1.0.00 installs
@ae/domain-health-rx-managementexperimental

Prescription management. ae_prescriptions. prescribe(), renewRx(), discontinueRx(), getActivePrescriptions().

v1.0.00 installs
@ae/domain-health-soap-noteexperimental

Four-section SOAP note editor (Subjective/Objective/Assessment/Plan) with template selection and optional voice injection per section. PHI-safe.

v1.0.00 installs
@ae/domain-health-solopractice-clientexperimental

Patient-facing portal widget: upcoming appointments, provider info with telehealth join, recent records, outstanding balance, and pending forms. Wires to SoloPractice hub. PHI-safe.

v1.0.00 installs
@ae/domain-health-telehealth-roomexperimental

Telehealth session management. ae_telehealth_sessions. createSession(), startSession(), endSession(), getSessionToken(), getProviderSessions().

v1.0.00 installs
@ae/domain-health-visit-noteexperimental

Post-visit encounter documentation with visit type, chief complaint, diagnoses, treatment, medication changes, patient education, and disposition. PHI-safe.

v1.0.00 installs
@ae/domain-health-vitals-trackerexperimental

Patient vital signs tracking. ae_vitals. recordVitals(), getLatestVitals(), getVitalsHistory(), bmi().

v1.0.00 installs

domain-hr

@ae/domain-hr-employee-profileexperimental

Individual employee record with contact info, role, documents list. Headless component.

v1.0.00 installs
@ae/domain-hr-employee-rosterexperimental

Employee list with roles, status, department filter. Headless — zero hardcoded colors, all CSS custom properties.

v1.0.00 installs
@ae/domain-hr-onboarding-checklistexperimental

New hire task checklist with progress bar, categories, required task tracking. Headless.

v1.0.00 installs
@ae/domain-hr-org-chartexperimental

Visual org hierarchy display built from flat node list. Recursive tree renderer. Headless.

v1.0.00 installs
@ae/domain-hr-payroll-summaryexperimental

Pay period summary with gross/net/deductions display. All monetary values as display strings. Headless.

v1.0.00 installs
@ae/domain-hr-performance-reviewexperimental

Review form with per-category 1–5 star ratings and comments. Submit/acknowledge flow. Headless.

v1.0.00 installs
@ae/domain-hr-shift-schedulerexperimental

Week-view shift assignment calendar. Add/remove shifts per employee per day. Headless component.

v1.0.00 installs
@ae/domain-hr-time-offexperimental

Time-off request + approval workflow. Supports approve/reject with notes. Headless component.

v1.0.00 installs

domain-marketing

@ae/domain-marketing-ab-testexperimental

Feature flag A/B testing with weighted variant assignment. ae_ab_tests + ae_ab_assignments. createTest(), assignVariant(), recordConversion(), getTestResults().

v1.0.00 installs
@ae/domain-marketing-attributionexperimental

UTM-based visit and conversion attribution. ae_attribution_events. trackVisit(), recordConversion(), getChannelStats(), getAttributionReport().

v1.0.00 installs
@ae/domain-marketing-email-campaignexperimental

Email campaign creation and send/open/click tracking. ae_email_campaigns + ae_email_sends. createCampaign(), sendCampaign(), trackOpen(), trackClick(), getCampaignStats().

v1.0.00 installs
@ae/domain-marketing-lead-captureexperimental

Lead capture with UTM source tracking. ae_leads. captureLead(), updateLeadStatus(), getLeads(), getLeadsBySource(), exportLeads().

v1.0.00 installs
@ae/domain-marketing-nurture-sequenceexperimental

Drip sequence automation with enrollment tracking. ae_nurture_sequences + ae_nurture_steps + ae_nurture_enrollments. createSequence(), addStep(), enrollContact(), advanceContact(), getDueEnrollments().

v1.0.00 installs
@ae/domain-marketing-referralexperimental

Referral codes with conversion tracking and reward management. ae_referral_codes + ae_referral_conversions. generateCode(), trackReferral(), convertReferral(), getReferralStats().

v1.0.00 installs

domain-media

@ae/domain-media-ad-placementexperimental

Ad campaign management with placement tracking. ae_ad_campaigns + ae_ad_placements. createCampaign(), activateCampaign(), createPlacement(), recordImpression(), recordClick(), getCampaignStats().

v1.0.00 installs
@ae/domain-media-article-editorexperimental

Rich article editor with title, slug auto-generation, excerpt, body (textarea), tags, status workflow (draft/review/scheduled/published), featured image URL, and publish scheduling.

v1.0.00 installs
@ae/domain-media-article-pageexperimental

Article display component with hero image, title, metadata (author, date, reading time), tags, body, author bio card, and related articles grid.

v1.0.00 installs
@ae/domain-media-audio-playerexperimental

Persistent bottom audio player bar with play/pause, seek slider, volume control, playback speed cycling (0.75x–2x), skip ±30s, and episode metadata. Uses HTML5 audio.

v1.0.00 installs
@ae/domain-media-author-profileexperimental

Author profile card and page with avatar, bio, social links (Twitter/LinkedIn/website), article count, and recent articles list.

v1.0.00 installs
@ae/domain-media-category-pageexperimental

Content category listing page with category header, article/episode grid, subcategory filter tabs, and pagination.

v1.0.00 installs
@ae/domain-media-comment-threadexperimental

Threaded comments on any content entity. ae_comment_threads + ae_comments. getOrCreateThread(), postComment(), editComment(), deleteComment(), getComments(), getReplies().

v1.0.00 installs
@ae/domain-media-content-schedulerexperimental

Future-dated content publication queue. ae_scheduled_content. scheduleContent(), rescheduleContent(), cancelScheduled(), markPublished(), getPendingContent().

v1.0.00 installs
@ae/domain-media-episode-cardexperimental

Podcast/video episode card with thumbnail, episode number, season, title, duration, description, play button, download link, and play count.

v1.0.00 installs
@ae/domain-media-live-streamexperimental

Live stream player and metadata component with LIVE badge, viewer count, countdown timer for scheduled streams, host info, chat CTA, share button, and upcoming streams list.

v1.0.00 installs
@ae/domain-media-media-libraryexperimental

Uploaded media asset management with tags and visibility. ae_media_assets. createAsset(), updateAsset(), deleteAsset(), getAsset(), listAssets(), searchAssets().

v1.0.00 installs
@ae/domain-media-newsletter-archiveexperimental

Newsletter archive listing with issue cards (number, subject, preview text), search, subscribe CTA, and load-more pagination.

v1.0.00 installs
@ae/domain-media-newsroom-dashboardexperimental

Editorial dashboard with content pipeline stats (drafts/review/scheduled/published), month total, recent articles list, contributor activity, and quick-create action.

v1.0.00 installs
@ae/domain-media-playlistexperimental

Ordered playlists of mixed media. ae_playlists + ae_playlist_items. createPlaylist(), addItemToPlaylist(), removeItemFromPlaylist(), getPlaylist(), reorderPlaylistItems().

v1.0.00 installs
@ae/domain-media-podcast-feedexperimental

Podcast shows with episode management and RSS support. ae_podcasts + ae_podcast_episodes. createPodcast(), addEpisode(), publishEpisode(), getEpisodes().

v1.0.00 installs
@ae/domain-media-podcast-studioexperimental

Podcast episode management dashboard with episode list, new episode dialog, show stats, RSS feed URL with copy button, and episode status workflow.

v1.0.00 installs
@ae/domain-media-rss-feedexperimental

RSS feed configuration and preview widget with feed URL copy button, item count badge, language, last build date, and live preview of recent feed entries.

v1.0.00 installs
@ae/domain-media-subscriberexperimental

Creator/channel follower and subscriber relationships. ae_subscriptions. subscribe(), unsubscribe(), isSubscribed(), getSubscriptions(), getSubscriberCount().

v1.0.00 installs
@ae/domain-media-video-streamexperimental

Video content with HLS/DASH streaming metadata. ae_video_streams. createVideo(), publishVideo(), recordView(), getVideo(), listVideos(), listPublicVideos().

v1.0.00 installs

domain-notebook

@ae/domain-notebook-noteexperimental

Rich-text notes with notebooks and tags. ae_notes. createNote(), updateNote(), deleteNote(), getNote(), listNotes(), getRecentNotes(), archiveNote().

v1.0.00 installs
@ae/domain-notebook-notebookexperimental

Notebook containers for grouping notes. ae_notebooks. createNotebook(), updateNotebook(), deleteNotebook(), getNotebook(), listNotebooks(), getDefaultNotebook(), getNoteCount().

v1.0.00 installs
@ae/domain-notebook-searchexperimental

Full-text search across notes with pg tsvector ranking and ilike fallback. ae_notes. searchNotes(), searchByTag(), searchInNotebook(), getSearchSuggestions().

v1.0.00 installs
@ae/domain-notebook-tagexperimental

Tags for organizing notes. ae_note_tag_defs + ae_note_tag_map. createTag(), deleteTag(), tagNote(), untagNote(), getNoteTags(), getNotesByTag(), listTags().

v1.0.00 installs

domain-productivity

@ae/calendar-viewcanonical

A month/week calendar with event display, navigation, and click handlers.

v1.0.00 installs
@ae/contribution-graphcanonical

A GitHub-style contribution heatmap showing 52 weeks of activity with color intensity levels.

v1.0.00 installs
@ae/doc-editorcanonical

A rich-text document editor built with Plate, supporting bold, italic, headings, lists, blockquote, code blocks, links, and tables.

v1.0.00 installs
@ae/gantt-chartcanonical

A project timeline Gantt chart that renders tasks as horizontal bars on a scrollable day grid.

v1.0.00 installs
@ae/kanban-boardcanonical

A drag-and-drop Kanban board with columns, cards, add, and delete actions powered by @dnd-kit.

v1.0.00 installs
@ae/messaging-channelcanonical

A real-time messaging channel component backed by Supabase Realtime with message list and input.

v1.0.00 installs
@ae/roadmapcanonical

A horizontal quarter-based product roadmap timeline with feature rows and team grouping.

v1.0.00 installs
@ae/session-kanbancanonical

A session-scoped Kanban board with Backlog, In Progress, Blocked, and Done columns.

v1.0.00 installs
@ae/task-managercanonical

A task list manager with add, complete, delete, and filter-by-status capabilities.

v1.0.00 installs
@ae/thought-capturecanonical

A quick-capture widget for thoughts and notes with tag support and optional AI categorization.

v1.0.00 installs

domain-publish

@ae/domain-publish-articleexperimental

Rich-text articles with SEO fields, reading time, and view tracking. ae_articles. createArticle(), updateArticle(), publishArticle(), unpublishArticle(), getArticle(), listArticles(), getPublicArticles(), recordArticleView().

v1.0.00 installs
@ae/domain-publish-content-gateexperimental

Access control gate for any resource — subscription, purchase, email capture, or password. ae_content_gates + ae_gate_access. createGate(), removeGate(), grantAccess(), checkAccess(), getGate().

v1.0.00 installs
@ae/domain-publish-newsletterexperimental

Newsletter lists with subscriber management and issue sending. ae_newsletter_lists + ae_newsletter_subscribers + ae_newsletter_issues. createList(), subscribe(), unsubscribe(), createIssue(), sendIssue(), listIssues().

v1.0.00 installs
@ae/domain-publish-site-configexperimental

Per-owner site configuration with branding, SEO defaults, and feature flags. ae_site_configs. upsertSiteConfig(), getSiteConfig(), getPublicSiteConfig(), setFeatureFlag(), isFeatureEnabled().

v1.0.00 installs
@ae/domain-publish-tag-taxonomyexperimental

Hierarchical tag/category taxonomy for any resource type. ae_taxonomy_terms + ae_taxonomy_assignments. createTerm(), deleteTerm(), assignTerm(), removeTerm(), getResourceTerms(), listTerms(), getTermBySlug().

v1.0.00 installs

domain-scribe

@ae/domain-scribe-cpt-suggestexperimental

Hook for fetching AI-suggested CPT procedure codes with modifier and unit management.

v1.0.00 installs
@ae/domain-scribe-exportexperimental

Utility for exporting clinical notes in PDF, HL7 FHIR, C-CDA, or JSON format via download.

v1.0.00 installs
@ae/domain-scribe-icd-suggestexperimental

Hook for fetching AI-suggested ICD-10 codes from an encounter and managing selected code list.

v1.0.00 installs
@ae/domain-scribe-review-editorexperimental

Hook for editing and saving finalized clinical note sections with dirty-state tracking and discard support.

v1.0.00 installs
@ae/domain-scribe-sessionexperimental

Hook for managing a clinical audio recording session: start, pause, resume, stop, and elapsed timer with MediaRecorder.

v1.0.00 installs
@ae/domain-scribe-soap-noteexperimental

Hook for AI-generating SOAP notes from encounter data with section editing and version tracking.

v1.0.00 installs
@ae/domain-scribe-summaryexperimental

Hook for generating an AI encounter summary with chief complaint, key findings, diagnoses, and disposition.

v1.0.00 installs
@ae/domain-scribe-transcriptexperimental

Hook for managing real-time utterance stream with upsert-by-id, edit, finalize, and clear operations.

v1.0.00 installs

domain-sim

@ae/domain-sim-case-libraryexperimental

Hook for browsing, filtering, and loading simulation cases from a categorized case library.

v1.0.00 installs
@ae/domain-sim-character-aiexperimental

Hook for configuring and interacting with AI-driven simulation characters with persona, response mode, and conversation history.

v1.0.00 installs
@ae/domain-sim-debrief-reportexperimental

Post-simulation debrief report with performance scores, timeline replay, decision analysis, and facilitator comments.

v1.0.00 installs
@ae/domain-sim-evaluation-rubricexperimental

Hook for defining, applying, and scoring evaluation rubrics against simulation performance criteria.

v1.0.00 installs
@ae/domain-sim-facilitator-dashboardexperimental

Facilitator control panel for running simulations — participant status, phase controls, live annotations, and broadcast messaging.

v1.0.00 installs
@ae/domain-sim-imu-suit-streamexperimental

Headless WebSocket IMU suit data stream hook. connect(url) opens socket and parses ImuFrame JSON (quaternion xyzw, euler rpy, accel xyz, timestamp). disconnect() closes cleanly. Auto-reconnects after reconnectMs on unexpected close. status: disconnected/connecting/connected/error. onFrame/onStatusChange callbacks. All socket refs cleaned up on unmount. Zero rendering.

v1.0.00 installs
@ae/domain-sim-org-configexperimental

Organisation-level simulation platform settings — branding, default scenario parameters, participant groups, and facilitator permissions.

v1.0.00 installs
@ae/domain-sim-participant-viewexperimental

Participant-facing simulation interface showing role card, objectives, current phase, and facilitator messages.

v1.0.00 installs
@ae/domain-sim-scenario-builderexperimental

Simulation scenario configuration editor with roles, objectives, timeline, and environment settings for Synessis training platforms.

v1.0.00 installs
@ae/domain-sim-session-recordingexperimental

Hook for recording, replaying, and exporting simulation session events and interactions.

v1.0.00 installs
@ae/domain-sim-team-sessionexperimental

Hook for managing multi-participant simulation team sessions with role assignment and join/leave lifecycle.

v1.0.00 installs

domain-social

@ae/domain-social-direct-messageexperimental

Private 1-to-1 messaging with canonical thread ordering. ae_dm_threads + ae_dm_messages. getOrCreateThread(), sendMessage(), getMessages(), markRead(), getThreads().

v1.0.00 installs
@ae/domain-social-followexperimental

Directed follow graph. ae_follows. follow(), unfollow(), isFollowing(), getFollowers(), getFollowing(), getFollowingIds().

v1.0.00 installs
@ae/domain-social-notificationexperimental

In-app notification inbox. ae_social_notifications. createNotification(), markRead(), markAllRead(), getNotifications(), getUnreadCount().

v1.0.00 installs
@ae/domain-social-postexperimental

User posts with media, replies, and reposts. ae_social_posts. createPost(), deletePost(), getPost(), getUserPosts(), getFeed(), getReplies().

v1.0.00 installs
@ae/domain-social-reactionexperimental

Emoji reactions on any entity. ae_reactions. addReaction(), removeReaction(), getReactions(), getReactionCounts(), getMyReactions().

v1.0.00 installs
@ae/domain-social-user-profileexperimental

Public social identity with follower/post counts. ae_social_profiles. upsertProfile(), getProfile(), getProfileByUserId(), searchProfiles(), getProfileStats().

v1.0.00 installs

domain-studio

@ae/domain-studio-asset-packexperimental

AppIcons Studio pipeline — pack management, variant builder, platform icon sizes, completion tracking.

v1.0.00 installs
@ae/domain-studio-asset-pipelineexperimental

Upload, process, tag, sort, filter, and group studio assets. Type inference, storage path builder.

v1.0.00 installs
@ae/domain-studio-canvas-engineexperimental

Canvas 2D draw surface — typed context wrapper with fill/stroke/text/image/export primitives.

v1.0.00 installs
@ae/domain-studio-comfyui-clientexperimental

ComfyUI REST API client — workflow builder, output URL builder, stream line parser, validation.

v1.0.00 installs
@ae/domain-studio-compute-engineexperimental

Formula/computation layer — cell graph with dependency tracking, SUM/AVG/MIN/MAX formula evaluation.

v1.0.00 installs
@ae/domain-studio-ecs-patternexperimental

Entity-Component-System world — addEntity/removeEntity/setComponent/queryEntities/tick. Zero dependencies.

v1.0.00 installs
@ae/domain-studio-export-pipelineexperimental

Export to PNG/JPG/SVG/PDF/DOCX/WebP — typed job model, MIME types, download trigger.

v1.0.00 installs
@ae/domain-studio-local-inferenceexperimental

Ollama REST client for THE BEAST RTX 5070 — generate/chat requests, stream parsing, model list.

v1.0.00 installs
@ae/domain-studio-motion-modelexperimental

Animation timeline and keyframe model — interpolation with linear/ease/spring/bounce easings.

v1.0.00 installs
@ae/domain-studio-prompt-engineexperimental

Structured prompt builder with template slots, variable substitution, token estimation, version diff.

v1.0.00 installs
@ae/domain-studio-publish-pipelineexperimental

Content publish to Supabase storage + CDN — typed job model, path builder, MIME type helpers.

v1.0.00 installs
@ae/domain-studio-rich-text-engineexperimental

Block-based rich text editor with paragraph/heading/quote/code blocks, toolbar, save callback. Headless.

v1.0.00 installs
@ae/domain-studio-scene-graphexperimental

Hierarchical scene node manager — add/remove/update nodes, query descendants, build trees from flat lists.

v1.0.00 installs
@ae/domain-studio-slot-schemaexperimental

DesignOS slot definition contract — named layout regions, accepted registry items, CSS var injection.

v1.0.00 installs

domain-telehealth

@ae/domain-telehealth-async-threadexperimental

Hook for async secure messaging between provider and client with polling, send, and read-receipt tracking.

v1.0.00 installs
@ae/domain-telehealth-booking-flowexperimental

Multi-step hook for scheduling a telehealth appointment: provider selection, slot picking, reason entry, and confirmation.

v1.0.00 installs
@ae/domain-telehealth-eprescribeexperimental

Hook for drug search, prescription draft management, and electronic prescription dispatch.

v1.0.00 installs
@ae/domain-telehealth-follow-upexperimental

Hook for browsing available follow-up slots and booking post-visit appointments.

v1.0.00 installs
@ae/domain-telehealth-provider-dashexperimental

Hook for provider schedule polling, visit queue depth, next-up tracking, and session initiation.

v1.0.00 installs
@ae/domain-telehealth-symptom-checkerexperimental

Hook for collecting symptom answers and evaluating triage recommendations via AI-powered assessment.

v1.0.00 installs
@ae/domain-telehealth-video-roomexperimental

Hook for WebRTC video room lifecycle: request media, connect peers, toggle audio/video, and clean up on leave.

v1.0.00 installs
@ae/domain-telehealth-visit-summaryexperimental

Hook for loading a completed visit summary and dispatching it via email to the authorized recipient.

v1.0.00 installs
@ae/domain-telehealth-waiting-roomexperimental

Hook for polling waiting room queue status with position tracking and admission state.

v1.0.00 installs

domain-wellness

@ae/domain-wellness-consultation-notesexperimental

SOAP note system (Subjective/Objective/Assessment/Plan) with collapsible note cards, session type, follow-up scheduling, draft/signed status, and sign & lock per note.

v1.0.00 installs
@ae/domain-wellness-goal-settingexperimental

Goal setting with milestones, progress tracking, and auto-completion. ae_wellness_goals + ae_goal_milestones. createGoal(), updateProgress(), addMilestone(), achieveMilestone(), listGoals(), getGoalWithMilestones(), abandonGoal().

v1.0.00 installs
@ae/domain-wellness-habit-trackerexperimental

Daily/weekly/monthly habit tracking with streaks. ae_habits + ae_habit_completions. createHabit(), logCompletion(), removeCompletion(), getCompletions(), getStreak(), listHabits(), archiveHabit().

v1.0.00 installs
@ae/domain-wellness-intake-formexperimental

4-step new client intake form with demographics, health history (goals/conditions/medications/allergies), lifestyle (exercise/diet/stress/sleep), and consent checkbox with summary review.

v1.0.00 installs
@ae/domain-wellness-mood-logexperimental

Mood, energy, and anxiety logging with trend analysis. ae_mood_logs. logMood(), getMoodLogs(), getMoodStats(), deleteMoodLog().

v1.0.00 installs
@ae/domain-wellness-product-catalogexperimental

Wellness product catalog with category filter, full-text search, product cards (image/description/star rating/tags/stock status/new badge), and add-to-cart action with cart count badge.

v1.0.00 installs
@ae/domain-wellness-progress-photosexperimental

Progress photo comparison grid with category tabs (front/back/side/custom), grid and side-by-side compare modes, date-labeled cards, upload action, and inline note editing per session.

v1.0.00 installs
@ae/domain-wellness-sleep-logexperimental

Sleep tracking with duration (generated column), quality, and stats. ae_sleep_logs. logSleep(), getSleepLogs(), getSleepStats(), deleteSleepLog().

v1.0.00 installs
@ae/domain-wellness-subscription-boxexperimental

Subscription box builder with monthly/annual billing toggle, 3-tier plan cards with feature lists, curated product slot grid with expandable details and swap action, and subscribe CTA.

v1.0.00 installs
@ae/domain-wellness-treatment-planexperimental

Wellness treatment plan with goals (toggle achieved), color-coded protocol steps (nutrition/movement/mindfulness/supplement/therapy/lifestyle), milestones, session notes, status workflow, and sign & lock.

v1.0.00 installs
@ae/domain-wellness-water-intakeexperimental

Water intake tracking with daily goals and progress. ae_water_intake + ae_water_goals. logWater(), deleteEntry(), setDailyGoal(), getDailySummary(), getWeeklyIntake().

v1.0.00 installs

files

@ae/files-audioexperimental

Audio file upload and in-browser recording via MediaRecorder. AudioUpload component.

v1.0.00 installs
@ae/files-avatar-uploadexperimental

Profile avatar upload with preview. AvatarUpload component, stores in public bucket, updates profiles.avatar_url.

v1.0.00 installs
@ae/files-bulk-uploadexperimental

Multi-file drag-and-drop upload queue with per-file status and partial failure handling. BulkUpload component.

v1.0.00 installs
@ae/files-coreexperimental

Supabase Storage foundation. file_metadata table, uploadFile(), getPublicUrl(), getSignedUrl(), deleteFile(), recordFileMetadata().

v1.0.00 installs
@ae/files-data-portabilityexperimental

CSV and Excel import/export via SheetJS. parseCSV(), exportCSV(), exportExcel(), parseExcel(). DataExportButton + CSVImport components.

v1.0.00 installs
@ae/files-documentsexperimental

Document upload, list, and signed URL download. DocumentUpload + DocumentList components.

v1.0.00 installs
@ae/files-imagesexperimental

Image upload with inline preview and delete. ImageUpload component. Supports public or private bucket.

v1.0.00 installs
@ae/files-media-galleryexperimental

Grid media gallery with search, multi-select, and bulk delete. Loads from file_metadata. MediaGallery component.

v1.0.00 installs
@ae/files-ocr-extractexperimental

OCR text extraction via Claude Vision (Haiku). extractText() from base64 image, extractTextFromUrl() from public URL.

v1.0.00 installs
@ae/files-pdf-generatorexperimental

Server-side PDF generation via @react-pdf/renderer. generatePDF(), pdfResponse(). InvoicePDF template included.

v1.0.00 installs
@ae/files-public-uploadexperimental

Public asset upload (logos, marketing images). Returns public URL immediately. PublicUpload component.

v1.0.00 installs
@ae/files-retention-policyexperimental

Auto-delete files after configurable retention. HIPAA (2190d) and standard (90d) presets. processRetention() cron helper.

v1.0.00 installs
@ae/files-secureexperimental

Private file upload with signed URL download and audit log. SecureUpload component.

v1.0.00 installs
@ae/files-videoexperimental

Video file upload and in-browser recording via MediaRecorder. VideoUpload component.

v1.0.00 installs
@ae/files-virus-scan-hookexperimental

Post-upload virus scan via ClamAV REST. scanFile() quarantines infected files and logs to ae_audit_log.

v1.0.00 installs

gate

@ae/gate-aegis-coreexperimental

AEGIS enforcement bundle: 9 gates + OO/Cerberus config reference. Documents the canonical gate IDs and descriptions so apps can reference them programmatically.

v1.0.00 installs
@ae/gate-ai-instructionsexperimental

AI instruction file contract for AE apps. Validates CLAUDE.md required sections and .cursorrules directives. Ensures every app has the behavioral contract in place.

v1.0.00 installs
@ae/gate-app-identitycanonical

AE app identity enforcement: APP_IDENTITY.md template (app name, purpose, stack, owner, deployment URLs) and verification script that blocks builds when identity is incomplete.

v1.0.00 installs
@ae/gate-gate7-templateexperimental

GATE7.txt behavioral checklist template — 120+ checks across 8 categories. Exports typed check categories and a run-result summarizer.

v1.0.00 installs
@ae/gate-github-actions-ciexperimental

GitHub Actions CI workflow definition for AE apps. Canonical AEGIS CI job structure: TypeScript, Lint, Build, Semgrep, Playwright. YAML generator included.

v1.0.00 installs
@ae/gate-oo-skillexperimental

OO (Oculus Omnividens) skill reference and session protocol utilities. Typed helpers for OO approval/completion files and the 12-step session protocol.

v1.0.00 installs
@ae/gate-playwright-suiteexperimental

Canonical Playwright test spec templates for AE apps. Six required spec categories: auth, CRUD, guards, forms, mobile, billing. Includes IMA Vampyr test persona.

v1.0.00 installs
@ae/gate-registry-install-testexperimental

Verifies a registry item was installed correctly before the app uses it. Checks env vars, custom assertions. Run at app startup or in CI to catch missing installs early.

v1.0.00 installs
@ae/gate-vantage-clientexperimental

VouchSafe cryptographic completeness attestation client. Helpers to generate, store, and verify session attestations proving all AEGIS gates passed for a given commit.

v1.0.00 installs

kibo

@ae/kibo-avatar-stackexperimental

Overlapping avatar stack with overflow count, from Kibo UI.

v1.0.00 installs
@ae/kibo-color-pickerexperimental

Full-featured color picker with optional alpha channel from Kibo UI.

v1.0.00 installs
@ae/kibo-comparisonexperimental

Before/after drag-to-compare slider for images or UI panels from Kibo UI.

v1.0.00 installs
@ae/kibo-credit-cardexperimental

Animated credit card display component for payment UIs from Kibo UI.

v1.0.00 installs
@ae/kibo-qr-codeexperimental

SVG QR code generator with configurable error correction level from Kibo UI.

v1.0.00 installs
@ae/kibo-tickerexperimental

Horizontally scrolling data ticker (stock/crypto/sports style) from Kibo UI.

v1.0.00 installs

organs

@ae/organ-ai-appexperimental

Organ set for AI-powered applications. Extends organ-consumer-saas with all 6 domain-ai items.

v1.0.00 installs
@ae/organ-ai-scribeexperimental

Organ set for AI medical scribe applications. Extends organ-clinical with all 6 domain-ai items.

v1.0.00 installs
@ae/organ-base-appexperimental

Universal organ set for every AE app. Bundles auth, audit, admin, notifications, rate-limiting, SEO, PWA, dark-mode, i18n, and analytics-core.

v1.0.00 installs
@ae/organ-bbos-completeexperimental

Complete organ set for the AE Business Back-Office System. Extends organ-internal-tool with billing, CRM, email campaigns, finance, and compliance.

v1.0.00 installs
@ae/organ-clinicalexperimental

Organ set for clinical applications (HIPAA). Extends organ-hipaa-saas with all 12 domain-health items.

v1.0.00 installs
@ae/organ-consumer-saasexperimental

Organ set for consumer-facing SaaS products. Extends organ-base-app with Stripe billing, referral program, lead capture, and in-app notifications.

v1.0.00 installs
@ae/organ-cpaasexperimental

Organ set for Communications Platform as a Service. Extends organ-base-app with all 6 domain-cpaas items and usage billing.

v1.0.00 installs
@ae/organ-edtechexperimental

Organ set for educational platforms. Extends organ-base-app with all 8 domain-edu items.

v1.0.00 installs
@ae/organ-fintechexperimental

Organ set for financial / tax applications. Extends organ-base-app with Stripe billing, transaction ledger, tax document storage, and enhanced audit trail.

v1.0.00 installs
@ae/organ-gamingexperimental

Organ set for game applications. Extends organ-base-app with all 8 domain-game items.

v1.0.00 installs
@ae/organ-hipaa-saasexperimental

Organ set for HIPAA-compliant SaaS apps. Extends organ-base-app with HIPAA audit trail, consent management, BAA tracking, MFA enforcement, and 15-minute session timeout.

v1.0.00 installs
@ae/organ-internal-toolexperimental

Organ set for internal AE tooling. Extends organ-base-app with RBAC admin, file storage, and Alrtme alerting.

v1.0.00 installs
@ae/organ-media-publisherexperimental

Organ set for media publishing platforms. Extends organ-base-app with domain-publish, domain-media (selected), and lead capture.

v1.0.00 installs
@ae/organ-sim-platformexperimental

Organ set for simulation and scenario-based platforms. Extends organ-base-app with game mechanics, AI agent runs, and media library.

v1.0.00 installs
@ae/organ-telehealthexperimental

Organ set for telehealth platforms. Extends organ-clinical with async messaging and notification channels.

v1.0.00 installs

skills

@ae/skills-commitexperimental

Run pre-commit gates (tsc, lint, build), write conventional commit messages, refuse --no-verify.

v1.0.00 installs
@ae/skills-deployexperimental

Deploy to Vercel (Next.js) or Coolify (everything else). Full AE deployment pipeline with live verification.

v1.0.00 installs
@ae/skills-diagnoseexperimental

Systematically diagnose bugs — reproduce, read logs, trace UI→API→DB, check env and RLS.

v1.0.00 installs
@ae/skills-documentexperimental

Write developer documentation — JSDoc, README structure, API endpoint docs, usage examples.

v1.0.00 installs
@ae/skills-feature-branchexperimental

Create and manage feature branches — branch from main, work, merge --no-ff, delete after merge.

v1.0.00 installs
@ae/skills-hotfixexperimental

Emergency fix workflow — branch from main, targeted fix, abbreviated gates, merge and deploy immediately.

v1.0.00 installs
@ae/skills-migrateexperimental

Write and apply Supabase migrations — snake_case, RLS required, read schema first, never invent columns.

v1.0.00 installs
@ae/skills-onboardexperimental

Get a new AE app running locally — clone, env setup, Supabase keys, npm install, verify auth.

v1.0.00 installs
@ae/skills-optimizeexperimental

Profile first, then fix — N+1 queries, missing indexes, large bundles. Measure before and after.

v1.0.00 installs
@ae/skills-refactorexperimental

Refactor without changing behavior — read, understand, plan, execute, verify identical behavior.

v1.0.00 installs
@ae/skills-releaseexperimental

Full AE release checklist — all 8 gates, OO sign-off, commit, push, deploy, verify HTTP 200 live.

v1.0.00 installs
@ae/skills-review-prexperimental

Review pull requests — completeness, security, AE compliance, structured BLOCKER/MAJOR/MINOR comments.

v1.0.00 installs
@ae/skills-rollbackexperimental

Emergency rollback — read CHECKPOINTS, create safety backup, git reset --hard, verify, report.

v1.0.00 installs
@ae/skills-scaffoldexperimental

Scaffold a new AE app — create-next-app, organ-base-app, Supabase setup, NEXUS + Alrtme wiring.

v1.0.00 installs
@ae/skills-seedexperimental

Seed registry items to AE Registry Supabase — follow seed script pattern, run, verify upserts.

v1.0.00 installs
@ae/skills-testexperimental

Write and run Playwright e2e tests using IMA Vampyr persona — all CRUD, auth guards, mobile viewport.

v1.0.00 installs

ui

@ae/ui-accordionexperimental

Collapsible content sections. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-activity-feedexperimental

Chronological activity list with actor + action + timestamp. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-admin-shellexperimental

Admin layout: side nav + content + breadcrumb. Headless structure — zero hardcoded colors.

v1.0.00 installs
@ae/ui-alert-bannerexperimental

Full-width alert/announcement banner with dismiss. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-app-shellexperimental

Root layout with sidebar slot, topnav slot, and main content area. Headless structure — zero hardcoded colors. All surfaces driven by CSS custom properties.

v1.0.00 installs
@ae/ui-auth-shellexperimental

Centered card layout for login/register/reset flows. Headless structure — zero hardcoded colors.

v1.0.00 installs
@ae/ui-avatarexperimental

User avatar with fallback initials + presence ring. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-badgeexperimental

Status badge with variant + dot indicator. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-billing-pageexperimental

Billing page: current plan + invoice history + payment method. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-calendar-viewexperimental

Month/week/day calendar with event slots. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-cardexperimental

Content card with header/body/footer slots. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-code-blockexperimental

Syntax-highlighted code display with copy button. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-command-paletteexperimental

Global command palette with search + grouped results. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-dashboard-shellexperimental

App-interior layout: sidebar + header + page body. Headless structure — zero hardcoded colors.

v1.0.00 installs
@ae/ui-data-gridexperimental

Editable grid with inline cell editing + bulk select. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-data-tableexperimental

Sortable/filterable table with row selection and pagination. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-filter-barexperimental

Chip-based active filters + add-filter popover. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-form-layoutexperimental

Form wrapper with label/input/error/hint layout. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-kanban-boardexperimental

Drag-and-drop kanban columns with card slots. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-kpi-rowexperimental

Horizontal row of KPI stats with sparklines. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-marketing-featuresexperimental

Feature grid: icon + title + description. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-marketing-footerexperimental

Site footer: links + social + legal + brand. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-marketing-heroexperimental

Hero section: headline + subtext + CTA + media slot. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-marketing-pricingexperimental

Pricing card tier comparison table. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-marketing-testimonialsexperimental

Testimonial carousel/grid. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-navigationexperimental

Sidebar + topnav + mobile-bottom-tab bundled responsive navigation primitive. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-notification-bellexperimental

Bell icon + unread count + notification drawer. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-notifications-pageexperimental

Full notification list page with read/unread + filter. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-onboarding-checklistexperimental

Interactive onboarding checklist with completion tracking. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-overlaysexperimental

Modal + Sheet + Drawer — unified overlay primitive. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-page-headerexperimental

Page title + breadcrumb + action slot. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-paginationexperimental

Page controls with page size selector. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-portal-shellexperimental

Portal layout: sidebar nav + content area, reusable for any portal. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-profile-pageexperimental

User profile layout: avatar + bio + tabs. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-public-shellexperimental

Marketing/public layout: topnav + hero area + footer. Headless structure — zero hardcoded colors.

v1.0.00 installs
@ae/ui-search-barexperimental

Command-style search with keyboard shortcut trigger. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-section-headerexperimental

Section title + description + action slot. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-settings-pageexperimental

Settings layout with side nav + section content panels. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-split-viewexperimental

Resizable two-pane layout — list + detail. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-stat-cardexperimental

KPI card: label + value + trend indicator + icon slot. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-stepperexperimental

Linear multi-step progress indicator. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-tabsexperimental

Tab bar with content panels + URL-sync option. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-timelineexperimental

Vertical timeline of events with icon + content slots. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-toastexperimental

Toast notification with variants and action slot. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-user-menuexperimental

Dropdown menu: profile, settings, sign out. Headless — zero hardcoded colors.

v1.0.00 installs
@ae/ui-wizardexperimental

Multi-step wizard shell with step validation + nav. Headless — zero hardcoded colors.

v1.0.00 installs

voice

@ae/voice-bar-visualizerexperimental

Bar-graph audio visualizer for ElevenLabs voice streams. Reflects real-time amplitude.

v1.0.00 installs
@ae/voice-conversation-barexperimental

Floating action bar for ElevenLabs voice sessions: mute, unmute, end call controls.

v1.0.00 installs
@ae/voice-orbexperimental

Animated orb that visualises ElevenLabs voice conversation state (idle, speaking, listening).

v1.0.00 installs
@ae/voice-speech-inputexperimental

Push-to-talk speech input field powered by ElevenLabs with interim and final transcript callbacks.

v1.0.00 installs
@ae/voice-transcript-viewerexperimental

Scrollable transcript panel for ElevenLabs voice conversations with speaker attribution.

v1.0.00 installs