Agent skills that teach AI coding assistants how to build with Latitude.
| Skill | Description |
|---|---|
| latitude-setup | Zero-account onboarding: bootstrap a temporary Latitude account, instrument, verify traces, claim. |
| latitude-cli | Install, authenticate, and drive the latitude CLI to run Latitude API operations from a terminal. |
| latitude-telemetry | Add Latitude Telemetry instrumentation for TypeScript and Python applications. |
latitude-setupbuilds on the other two. It orchestrateslatitude-cli(install + auth) andlatitude-telemetry(instrumentation). TheskillsCLI does not auto-install dependency skills, so add all three when you want the from-scratch onboarding flow:npx skills add https://github.com/latitude-dev/skills --skill latitude-setup,latitude-cli,latitude-telemetry
Install a skill with the skills CLI:
npx skills add https://github.com/latitude-dev/skills --skill <skill-name>Copy the desired skill's SKILL.md from skills/<skill-name>/SKILL.md into your agent harness's skills directory.
- Claude Code: add it under
.claude/skills/<skill-name>/SKILL.mdin your project, or under your user-level Claude Code skills directory if you want it available across projects. - Codex: add it under
.codex/skills/<skill-name>/SKILL.mdin your project, or the equivalent user-level Codex skills directory. - Cursor: add it under
.cursor/skills/<skill-name>/SKILL.mdin your project so Cursor agents can load it with the rest of your workspace instructions. - OpenCode: add it under
.opencode/skills/<skill-name>/SKILL.mdin your project, or the equivalent user-level OpenCode skills directory. - Other
.agents-compatible agent harnesses: add it under.agents/skills/<skill-name>/SKILL.md.
After copying the skill, restart or reload your agent harness so it can discover the new instructions.