Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 2.34 KB

File metadata and controls

39 lines (27 loc) · 2.34 KB

Skills

Agent skills that teach AI coding assistants how to build with Latitude.

Skills

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-setup builds on the other two. It orchestrates latitude-cli (install + auth) and latitude-telemetry (instrumentation). The skills CLI 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

Installation

Quick start

Install a skill with the skills CLI:

npx skills add https://github.com/latitude-dev/skills --skill <skill-name>

Manual installation

Copy the desired skill's whole folder skills/<skill-name>/ — its SKILL.md and any bundled files — into your agent harness's skills directory.

  • Claude Code: add it under .claude/skills/<skill-name>/ in 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>/ in your project, or the equivalent user-level Codex skills directory.
  • Cursor: add it under .cursor/skills/<skill-name>/ in your project so Cursor agents can load it with the rest of your workspace instructions.
  • OpenCode: add it under .opencode/skills/<skill-name>/ in your project, or the equivalent user-level OpenCode skills directory.
  • Other .agents-compatible agent harnesses: add it under .agents/skills/<skill-name>/.

After copying the skill, restart or reload your agent harness so it can discover the new instructions.