Do embedded analytics right with Luzmo. Give your AI agent end-to-end expertise: secure embedding and embed tokens, airtight multi-tenant isolation, dashboards and charts (Flex and custom), AI-powered analytics (/aiprompt), data integration, and full resource management — build, secure, and manage analytics in Luzmo, correctly the first time.
Luzmo AI analytics engineer — builds natural-language data Q&A with the /aiprompt API and embeds IQ Chat/Answer components. Use when someone wants "ask questions in natural language", "AI charts", agentic analytics, to embed IQ Chat/Answer, or to debug wrong/low-quality AI answers. Requires the AI/IQ addon license.
Luzmo data integration engineer — connects data sources, pushes data, and models datasets so dashboards have something to show. Use when someone wants to "connect Postgres/MySQL/Snowflake/Salesforce", "upload a CSV", "push data via API", "import/sync data", model columns/aggregations, or fix "data not loading".
End-to-end Luzmo embedded analytics engineer — sets up secure auth, generates embed tokens server-side, and embeds dashboards or Flex charts in a web app. Use when someone wants to "embed a dashboard", "add analytics to my app", "show charts to my customers", or wire up the full integration from credentials to rendered component.
Luzmo integration troubleshooter — diagnoses broken embeds, rendering failures, auth errors, and wrong data, then routes to the right fix. Use first whenever something is "not working", "broken", "failing", a chart shows 0 height or won't load, data looks wrong, or the API returns 401/403/4xx errors.
AI-powered analytics with Luzmo - /aiprompt API and IQ embed components. Use for natural language data queries, chart generation, agentic workflows (agent analyst|item, tasks), IQ Chat/Answer embedding (luzmo-iq-embed-chat, LuzmoIQChatComponent), "AI not working", wrong answers, quality optimization. Requires AI/IQ addon license. Use eagerly for any natural-language analytics feature. Not for standard chart embedding (use core for saved dashboards, data-visualization for Flex) or React Native (IQ embed components are web-only).
Build a self-service analytics environment inside your application. Two approaches - out-of-the-box Embedded Dashboard Editor (editMode) or custom Analytics Components Kit (ACK). Use for letting end-users create/edit dashboards, white-label studios, editMode, designer/owner token roles, and ACK configuration. Triggers on: "self-service analytics", "let users edit dashboards", "embedded studio", "analytics components kit", "ACK", "designer role", "dashboard editor". Critical pattern: ACK configures -> your app stores state -> separate renderer displays. Not for view-only embedding of saved dashboards (use core), building charts in code (use data-visualization), data connection (use data-integration), or AI queries (use ai-analytics).
Core Luzmo setup - use whenever starting a new integration or hitting auth/API errors. Triggers on: API credentials (LUZMO_API_KEY, LUZMO_API_TOKEN), embed token generation (createAuthorization), SDK selection, 401/403 errors, REST-verb confusion, "how do I authenticate", "embed dashboard", "dashboardId", "dashboard not rendering". Essential starting point before any feature skill. Use eagerly for any auth or saved-dashboard/chart embedding question. Pair with domain skills for feature-specific work. Not for building charts in code (use data-visualization), data loading (use data-integration), or tenant isolation (use multitenancy).
Build a brand-new Luzmo chart component when no built-in chart type (and Flex) is sufficient. Triggers on: "custom chart", "build a custom chart", "no built-in chart type fits", "chart plugin", "manifest", "render/resize/buildQuery", "custom chart not in picker", "upload custom chart", "org release". Rare advanced path (~95% of users never need this). Not for Flex charts with built-in types (use data-visualization), embedding saved dashboards (use core), self-service chart editors (use analytics-studio), or auth setup (use core).
Getting data into Luzmo from any source. Use whenever connecting a database, pushing files, or modeling data. Triggers on: "connect data source", "upload CSV", "import data", "sync from database", "push data via API", "data not loading", createDataprovider. Provides ready-to-use scripts. Covers data modeling, Warp acceleration, and custom connectors. Use eagerly for any data-source or schema question. Essential before charts can display anything. Not for chart rendering (use data-visualization) or per-tenant access control (use multitenancy).
External network access
Connects to servers outside your machine
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Agent skills for building embedded analytics applications with Luzmo. Compatible with Cursor, Claude Code, Codex, Windsurf, Google Antigravity, GitHub Copilot, and any tool that supports the Agent Skills standard.
A set of 10 skills that turn your AI coding agent into a Luzmo embedded-analytics expert. They cover the full lifecycle: authentication and the POST + action API model, embedding saved dashboards and charts, building Flex and custom charts in code, self-service analytics (Embedded Dashboard Editor or ACK), AI / natural-language Q&A (/aiprompt, IQ), multi-tenant isolation, data integration, resource CRUD, theming, and troubleshooting.
So your agent ships correct, secure integrations the first time instead of guessing the API and tripping over the common traps (leaked API keys, missing tenant filters, REST-verb / action: "search" mistakes).
npx @luzmo/agent-skills@alpha
The interactive wizard installs skills into the right directories for your AI tools. Optionally register the hosted Luzmo MCP server (opt-in).
npx @luzmo/agent-skills add --tool cursor --skills all --scope project --yes
npx @luzmo/agent-skills add --tool claude-code,codex --skills core,ai-analytics --yes
npx @luzmo/agent-skills add --tool cursor --with-mcp --region eu --yes
npx @luzmo/agent-skills list
npx @luzmo/agent-skills doctor
Hosted MCP (EU example):
https://api.luzmo.com/0.1.0/mcp
Set credentials in your environment (never commit them):
export LUZMO_KEY="your-api-key"
export LUZMO_TOKEN="your-api-token"
US: https://api.us.luzmo.com/0.1.0/mcp — VPC: https://api.<vpc>.luzmo.com/0.1.0/mcp
Full MCP guide (tools, auth, themes, MCP App): developer.luzmo.com/guide/mcp--introduction. In-repo summary: skills/ai-analytics/references/mcp-server.md.
Ask your agent in natural language:
"Embed the logistics dashboard in this page, filtered to the current organization id."
With core + multitenancy loaded, it generates the token server-side, scopes it to the tenant, and passes only the safe values to the client:
// Server-side only (never ship API key/token to the browser)
const embed = await client.create('authorization', {
type: 'embed',
username: user.id,
name: user.name,
email: user.email,
role: 'viewer',
access: { /* logistics dashboard in scope */ },
parameter_overrides: { organizationId: user.organizationId }, // row-level tenant filter
});
// Client-side: only the embed key + token
<luzmo-embed-dashboard authKey={embed.id} authToken={embed.token} />
Everything ships from this single repository — there are no separate per-tool plugin repos.
| Platform | Install method |
|---|---|
| Any tool | npx @luzmo/agent-skills@alpha (interactive wizard — copies skills into the right dirs) |
| Cursor | /add-plugin https://github.com/luzmo-official/agent-skills.git (reads .cursor-plugin/) |
| Claude Code | /plugin marketplace add luzmo-official/agent-skills then /plugin install luzmo-agent-skills (reads .claude-plugin/) |
| Google Antigravity | npx @luzmo/agent-skills@alpha add --tool antigravity (auto-discovered from .agents/skills/) |
| Codex / Copilot / Gemini CLI | npx skills add luzmo-official/agent-skills (via skills.sh) |
| Manual | clone or copy skills/* (see Manual install) |
/add-plugin https://github.com/luzmo-official/agent-skills.git
/plugin marketplace add luzmo-official/agent-skills
/plugin install luzmo-agent-skills
Antigravity uses the open Agent Skills standard and auto-discovers skills — there is no separate plugin manifest to install. The wizard copies skills into the directories Antigravity reads:
npx claudepluginhub luzmo-official/agent-skills --plugin luzmo-agent-skillsHarness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Binary reverse engineering, malware analysis, firmware security, and software protection research for authorized security research, CTF competitions, and defensive security
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.