Skip to main content
Version: 26.1

Other coding agents

The seqera skill command installs a skill file that enables coding agents such as Cursor, OpenCode, Pi, and Windsurf to use Co-Scientist as a subagent. Once installed, these agents can invoke Co-Scientist directly to manage workflows, build containers, query nf-core modules, and more without leaving your environment.

This page covers the agents the CLI supports, how to install the skill into one of them, and how to keep it in sync as you update the CLI.

Supported agents

The CLI can install the skill into the following agents, each in the format that agent expects:

AgentFormat
Cursor.cursor/rules/
OpenCode.opencode/
Pi.pi/
Windsurf.windsurf/rules/

seqera skill install

Use seqera skill install to add the Co-Scientist skill to your coding agent. Run it without options to launch an interactive installer that detects your setup and prompts for a location, or pass a flag to install directly to a specific path.

Launch the interactive installer:

seqera skill install

Install to a specific agent path:

seqera skill install --path <agent-path>

Install into the current repository root:

seqera skill install --local

Or install to your home directory:

seqera skill install --global

You can also auto-detect and update an existing installation:

seqera skill install --detect

Usage

seqera skill install [OPTIONS]

Options

seqera skill install accepts the following options:

OptionShortDescription
--local-lInstall to repo root
--path <PATH>-pInstall to a custom path (relative or absolute)
--global-gInstall to home directory
--detect-dAuto-detect an existing installation and update it

seqera skill check

The skill file is tied to the version of the CLI that created it, so it can fall out of date when you upgrade. Use seqera skill check to confirm your installed skill still matches your current CLI version, and update it when it doesn't.

Verify that your installed skill matches your current CLI version:

seqera skill check

Update automatically if needed:

seqera skill check --update

Usage

seqera skill check [OPTIONS]

Options

seqera skill check accepts the following options:

OptionShortDescription
--update-uAutomatically update outdated skills
--globalCheck only global installations
--localCheck only local (repository) installations

Learn more