Damoov Skills

Use Damoov skills as task-specific guidance for AI agents working on SDK integration, backend registration, platform APIs, analytics, and testing.

Damoov skills are task-specific instructions for AI coding agents. They help an agent understand Damoov integration workflows before creating code, changing configuration, reviewing a repository, or writing validation steps.

Use Damoov skills with the Damoov plugin, or install them as standalone skills in tools that support SKILL.md folders.

Repository:

Mobile-Telematics/damoov-telematics-skills

Recommended entrypoint

Start broad tasks with:

damoov-telematics-skill

This is the Damoov orchestrator skill. It classifies the request and routes the agent to the correct mobile, backend, or testing skill.

Example:

Use $damoov-telematics-skill to route this Damoov integration task. Before editing code, tell me which target skill you selected.

Skill groups

Damoov skills are grouped by integration area:

GroupSkillsUse when
MobileAndroid, iOS, Flutter, React NativeYou need SDK integration, mobile setup review, tracking flow guidance, permissions, or mobile troubleshooting.
BackendRegistration, user management, product management, trips and statisticsYou need backend-owned registration, user operations, platform management, or analytics APIs.
TestingIntegration testingYou need safe test-user setup and end-to-end validation.

Install standalone skills

Use standalone skills when your AI tool supports skills but not plugins.

Set the repository:

DAMOOV_REPO="Mobile-Telematics/damoov-telematics-skills"

List available skills:

npx skills add "$DAMOOV_REPO" --list

Install all Damoov skills for Codex:

npx skills add "$DAMOOV_REPO" --skill '*' --agent codex -y

Install all Damoov skills for Claude Code:

npx skills add "$DAMOOV_REPO" --skill '*' --agent claude-code -y

Install all Damoov skills for every supported local agent:

npx skills add "$DAMOOV_REPO" --skill '*' --agent '*' -y

Update installed skills:

npx skills update -y

Use one skill directly

Use direct skills when the task is narrow and the target area is already clear.

Examples:

Use $android-telematics-sdk-integration-skill to review this Android app for Damoov SDK setup.
Use $damoov-backend-registration-skill to implement backend-owned Damoov user registration.
Use $damoov-integration-testing-skill to create a safe test-user validation plan.

Next pages