Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.copera.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Copera Skills repository ships three install paths from the same source, so every major coding agent is covered. Pick the one that matches your editor.
All install methods require the copera CLI installed and authenticated on the same machine. Skills teach agents how to drive the CLI; they don’t replace it.
Install the Copera CLI skill globally. It contains static knowledge about the copera CLI — none of it is project-specific — so installing once per developer machine means every project you work on benefits without re-installing. The plugin install commands below default to global; for npx skills add run it from your home directory (cd ~ && npx skills add copera-ai/copera-skills) instead of inside a project.Workflow skills (the ones an agent generates by interviewing you about a specific procedure on your boards) are different — those belong inside the project so your team shares them via git. See Workflow Skills → Sharing.

Claude Code

Native plugin install — unlocks the /copera:cli slash command and progressive-disclosure skill loading.
/plugin marketplace add copera-ai/copera-skills
/plugin install copera@copera-ai
Verify:
/copera:cli
Auto-trigger also works — just ask Claude something like “list my Copera boards” and the skill loads on its own.

Cursor

Native plugin install — unlocks Cursor’s slash palette + skill auto-discovery.
/add-plugin copera-ai/copera-skills
/add-plugin accepts the GitHub repo directly — no Cursor Marketplace listing required to install.

OpenCode

OpenCode walks .claude/skills/, .opencode/skills/, and .agents/skills/ automatically. The simplest install:
npx skills add copera-ai/copera-skills
The npx skills tool detects OpenCode and writes the skill to the right location.

Codex / Windsurf / Cline / Aider / Continue / others

Universal install via skills.sh:
npx skills add copera-ai/copera-skills
npx skills auto-detects every supported agent on the machine and creates a skill entry for each. No config, no manifest editing.
For the CLI skill specifically, run npx skills add from your home directory so it lands user-globally. The CLI skill is generic across projects. Project-local installs of the CLI skill duplicate the same content into every repo.

Where the skill ends up

AgentProject-localUser-global
Claude Code.claude/skills/cli/~/.claude/skills/cli/
Cursor.cursor/skills/cli/~/.cursor/skills/cli/
OpenCode.opencode/skills/cli/ or .claude/skills/cli/~/.config/opencode/skills/cli/
Codex.agents/skills/cli/~/.codex/skills/cli/
Generic / shared.agents/skills/cli/
You only need to know these paths if you’re authoring your own workflow skills — see Workflow Skills. The install commands above handle placement automatically.

Updating

/plugin marketplace update copera-ai
/plugin install copera@copera-ai

Uninstalling

/plugin uninstall copera@copera-ai
/plugin marketplace remove copera-ai

Verify the install

After install, ask the agent:
List my Copera boards.
The agent should run copera boards list --json (or auto-trigger discovery if your token is unset) instead of asking generic LLM-trivia questions about Copera. If it doesn’t, see Usage for invocation tips.