Agent Skills

Curated skills that teach AI coding agents how to use Luciq the way an experienced mobile engineer would.

Skills are instruction sets your agent can follow when you ask it to set up, debug, or migrate Luciq in your project. They live alongside your project rules (in Cursor, Claude Code, Codex, or any agent that supports the Agent Skillsarrow-up-right format) and activate automatically when the conversation matches.

Skills vs MCP Server vs AI Coding Agent Integration

These three pieces work together but solve different problems:

Surface
What it gives the agent
When to use

Tools. Read access to your crashes, hangs, bugs, occurrences, and reviews.

The agent needs production data to investigate issues or answer questions.

End-to-end SDK setup workflow. Pinned dependency, init, invocation, masking, MCP wiring, smoke build.

The user is integrating Luciq for the first time, or onboarding a new platform.

Agent Skills (this page)

Methodology. The investigation patterns, decision points, and pitfalls that turn raw MCP data into a real fix.

The agent has tools and data but you want it to investigate the way an experienced mobile engineer would.

Tools without methodology produces drive-by API calls. Methodology without tools is theory. You want all three.

Available Skills

Skill
Use it when

Investigating a Luciq crash, hang, or user-reported bug end to end. The agent pulls the right MCP context, maps it to your local code, and proposes a fix grounded in evidence.

Adding Luciq to a new project for the first time. (Wraps the existing AI Coding Agent integration flow.)

Moving a project from the legacy Instabug SDK to Luciq, or upgrading between Luciq SDK versions. (Wraps the existing migration hub.)

Install

Add the Luciq marketplace and install all three skills in one step:

/plugin marketplace add github.com/luciqai/agent-skills
/plugin install [email protected]

Works in Claude Code and Cursor. The plugin install also wires up the Luciq MCP server, so the skills have production data from day one.

After install, the skills become available as /luciq-skills:luciq-setup, /luciq-skills:luciq-debug, and /luciq-skills:luciq-migrate.

For other agents, install via npm:

Or copy the SKILL.md filesarrow-up-right directly from the public repo. The full SKILL.md is also reproduced on each skill page below.

Prerequisites

How a skill activates

Skills declare when they apply via their description and triggering phrases. You don't /run them; you describe what you want, and the agent picks the right skill on its own.

For example, asking the agent "why is this iOS crash happening, Luciq says it's only on iOS 18" activates luciq-debug. Asking "add Luciq to this project" activates luciq-setup. The agent reads the skill, follows its methodology, and pulls in MCP data when the skill calls for it.

Contributing & feedback

The skills are maintained in the public luciqai/agent-skillsarrow-up-right repo and reviewed by our SDK leads before they ship. Spotted something inaccurate, or have a workflow you'd like a skill for? Open an issue on the repo or reach out to your Luciq contact.

We're shipping skills as we validate them. The bar is high on purpose: skills feed into agents that write code in your repo, so accuracy beats coverage.

Last updated