Skip to content

Commit 9ce5f96

Browse files
committed
docs(seqera-ai): restructure skill docs and add code intelligence page
1 parent 73d1c83 commit 9ce5f96

File tree

10 files changed

+385
-110
lines changed

10 files changed

+385
-110
lines changed

platform-cloud/cloud-sidebar.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,13 @@
169169
"seqera-ai/get-started",
170170
"seqera-ai/installation",
171171
"seqera-ai/authentication",
172+
"seqera-ai/use-cases",
172173
"seqera-ai/command-approval",
173-
"seqera-ai/skill",
174-
"seqera-ai/use-cases"
174+
"seqera-ai/skill-claude-code",
175+
"seqera-ai/skill-codex",
176+
"seqera-ai/skill-github-copilot",
177+
"seqera-ai/skill-other-agents",
178+
"seqera-ai/nextflow-lsp"
175179
]
176180
},
177181
{

platform-cloud/docs/seqera-ai/get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To get started with Seqera AI:
1616
1. Install the Seqera AI CLI:
1717

1818
```bash
19-
pip install seqera
19+
npm install -g seqera
2020
```
2121

2222
See [Installation](./installation.mdx) for a comprehensive installation guide.
@@ -39,7 +39,7 @@ To get started with Seqera AI:
3939
1. Run your first prompt:
4040

4141
```
42-
/debug
42+
/debug-last-run-on-seqera
4343
```
4444

4545
See [Use cases](./use-cases.md) for a comprehensive list of use cases.

platform-cloud/docs/seqera-ai/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ Full access to Platform capabilities including compute environments, datasets, d
5656
- [Installation](./installation.mdx): Detailed installation instructions
5757
- [Authentication](./authentication.md): Log in, log out, and session management
5858
- [Command approval](./command-approval.md): Control which commands run automatically
59-
- [Skill for coding agents](./skill.md): Install Seqera AI as a skill for coding agents
59+
- [Working with Claude Code](./skill-claude-code.md): Install Seqera AI as a skill for Claude Code
60+
- [Working with Codex](./skill-codex.md): Install Seqera AI as a skill for Codex
61+
- [Working with GitHub Copilot](./skill-github-copilot.md): Install Seqera AI as a skill for GitHub Copilot
62+
- [Working with other coding agents](./skill-other-agents.md): Install Seqera AI for other coding agents
63+
- [Code intelligence](./nextflow-lsp.md): Language-server support in Seqera AI
6064
- [Use cases](./use-cases.md): Seqera AI CLI use cases
6165
- [Troubleshooting](../troubleshooting_and_faqs/seqera-ai.md): Troubleshoot common errors

platform-cloud/docs/seqera-ai/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ npm update -g seqera
3535
```
3636

3737
:::info
38-
If you use Seqera AI as a [skill](./skill.md) for a coding agent, run `seqera skill check --update` after updating the CLI to keep your installed skills in sync with the current version. By default, this scans both local and global installations. Use `--global` or `--local` to narrow the scope.
38+
If you use Seqera AI as a skill for a coding agent, run `seqera skill check --update` after updating the CLI to keep your installed skills in sync with the current version. By default, this scans both local and global installations. Use `--global` or `--local` to narrow the scope. See [Working with Claude Code](./skill-claude-code.md), [Working with Codex](./skill-codex.md), [Working with GitHub Copilot](./skill-github-copilot.md), and [Working with other coding agents](./skill-other-agents.md).
3939

4040
```bash
4141
seqera skill check --update
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: "Code intelligence"
3+
description: "Use language-server code intelligence features in Seqera AI"
4+
date: "2026-02-26"
5+
tags: [seqera-ai, cli, lsp, code-intelligence]
6+
---
7+
8+
:::note
9+
Seqera Cloud users receive $20 in free credits to get started with Seqera AI. [Contact us](https://seqera.io/platform/seqera-ai/request-credits/) for additional credits.
10+
:::
11+
12+
When you ask Seqera AI to help with code in your workspace, it uses language server (LSP) context to provide:
13+
14+
- Explanations for errors and warnings in your code
15+
- Context-aware completions and suggestions
16+
- Better navigation and understanding across project files
17+
18+
For Nextflow projects, this includes diagnostics and code intelligence for scripts and config files.
19+
20+
### Language support
21+
22+
| LSP Server | Extensions | Requirements |
23+
|------------|------------|--------------|
24+
| Nextflow | `.nf`, `.config` | Java 17+ installed |
25+
| Python (Pyright) | `.py`, `.pyi` | Auto-installs |
26+
| R | `.r`, `.R`, `.rmd`, `.Rmd` | R runtime installed |
27+
28+
LSP servers automatically start when you work with files that match these extensions.
29+
30+
### Workspace detection
31+
32+
Seqera AI detects the relevant language context from your active workspace and applies matching intelligence automatically.
33+
34+
This means you can move between Nextflow, Python, and R files in the same project and get language-aware assistance without manual setup.
35+
36+
See [Nextflow Language Server](https://github.com/nextflow-io/language-server) for advanced configuration details.
37+
38+
### Learn more
39+
40+
- [Seqera AI CLI](./index.md): Seqera AI overview
41+
- [Get started](./get-started.md): Start using Seqera AI
42+
- [Use cases](./use-cases.md): Seqera AI CLI use cases
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
title: "Working with Claude Code"
3+
description: "Install and maintain the Seqera AI skill for Claude Code"
4+
date: "2026-02-26"
5+
tags: [seqera-ai, cli, skills, claude-code]
6+
---
7+
8+
:::note
9+
Seqera Cloud users receive $20 in free credits to get started with Seqera AI. [Contact us](https://seqera.io/platform/seqera-ai/request-credits/) for additional credits.
10+
:::
11+
12+
The `seqera skill` command installs a skill file that enables [Claude Code](https://claude.ai/code) to use Seqera AI as a subagent. Once installed, Claude Code can invoke Seqera AI directly to manage workflows, build containers, query nf-core modules, and more without leaving your environment.
13+
14+
### `seqera skill install`
15+
16+
Install to the standard Claude Code location:
17+
18+
```bash
19+
seqera skill install --path .claude/skills/
20+
```
21+
22+
Or install to your home directory:
23+
24+
```bash
25+
seqera skill install --global
26+
```
27+
28+
You can also auto-detect and update an existing installation:
29+
30+
```bash
31+
seqera skill install --detect
32+
```
33+
34+
### Usage
35+
36+
```bash
37+
seqera skill install [OPTIONS]
38+
```
39+
40+
### Options
41+
42+
| Option | Short | Description |
43+
|--------|-------|-------------|
44+
| `--path <PATH>` | `-p` | Install to a custom path (relative or absolute) |
45+
| `--global` | `-g` | Install to home directory |
46+
| `--detect` | `-d` | Auto-detect an existing installation and update it |
47+
48+
### `seqera skill check`
49+
50+
Verify that your installed skill matches your current CLI version:
51+
52+
```bash
53+
seqera skill check
54+
```
55+
56+
Update automatically if needed:
57+
58+
```bash
59+
seqera skill check --update
60+
```
61+
62+
### Usage
63+
64+
```bash
65+
seqera skill check [OPTIONS]
66+
```
67+
68+
### Options
69+
70+
| Option | Short | Description |
71+
|--------|-------|-------------|
72+
| `--update` | `-u` | Automatically update outdated skills |
73+
| `--global` | | Check only global installations |
74+
| `--local` | | Check only local (repository) installations |
75+
76+
### Learn more
77+
78+
- [Use cases](./use-cases.md): Seqera AI CLI use cases
79+
- [Code intelligence](./nextflow-lsp.md): Language-aware coding support
80+
- [Installation](./installation.mdx): Detailed installation instructions
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
title: "Working with Codex"
3+
description: "Install and maintain the Seqera AI skill for Codex"
4+
date: "2026-02-26"
5+
tags: [seqera-ai, cli, skills, codex]
6+
---
7+
8+
:::note
9+
Seqera Cloud users receive $20 in free credits to get started with Seqera AI. [Contact us](https://seqera.io/platform/seqera-ai/request-credits/) for additional credits.
10+
:::
11+
12+
The `seqera skill` command installs a skill file that enables [Codex](https://openai.com/codex) to use Seqera AI as a subagent. Once installed, Codex can invoke Seqera AI directly to manage workflows, build containers, query nf-core modules, and more without leaving your environment.
13+
14+
### `seqera skill install`
15+
16+
Install to your project `AGENTS.md` path:
17+
18+
```bash
19+
seqera skill install --path AGENTS.md
20+
```
21+
22+
Or install to your home directory:
23+
24+
```bash
25+
seqera skill install --global
26+
```
27+
28+
You can also auto-detect and update an existing installation:
29+
30+
```bash
31+
seqera skill install --detect
32+
```
33+
34+
### Usage
35+
36+
```bash
37+
seqera skill install [OPTIONS]
38+
```
39+
40+
### Options
41+
42+
| Option | Short | Description |
43+
|--------|-------|-------------|
44+
| `--path <PATH>` | `-p` | Install to a custom path (relative or absolute) |
45+
| `--global` | `-g` | Install to home directory |
46+
| `--detect` | `-d` | Auto-detect an existing installation and update it |
47+
48+
### `seqera skill check`
49+
50+
Verify that your installed skill matches your current CLI version:
51+
52+
```bash
53+
seqera skill check
54+
```
55+
56+
Update automatically if needed:
57+
58+
```bash
59+
seqera skill check --update
60+
```
61+
62+
### Usage
63+
64+
```bash
65+
seqera skill check [OPTIONS]
66+
```
67+
68+
### Options
69+
70+
| Option | Short | Description |
71+
|--------|-------|-------------|
72+
| `--update` | `-u` | Automatically update outdated skills |
73+
| `--global` | | Check only global installations |
74+
| `--local` | | Check only local (repository) installations |
75+
76+
### Learn more
77+
78+
- [Use cases](./use-cases.md): Seqera AI CLI use cases
79+
- [Code intelligence](./nextflow-lsp.md): Language-aware coding support
80+
- [Installation](./installation.mdx): Detailed installation instructions
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
title: "Working with GitHub Copilot"
3+
description: "Install and maintain the Seqera AI skill for GitHub Copilot"
4+
date: "2026-02-26"
5+
tags: [seqera-ai, cli, skills, github-copilot]
6+
---
7+
8+
:::note
9+
Seqera Cloud users receive $20 in free credits to get started with Seqera AI. [Contact us](https://seqera.io/platform/seqera-ai/request-credits/) for additional credits.
10+
:::
11+
12+
The `seqera skill` command installs a skill file that enables [GitHub Copilot](https://github.com/features/copilot) to use Seqera AI as a subagent. Once installed, GitHub Copilot can invoke Seqera AI directly to manage workflows, build containers, query nf-core modules, and more without leaving your environment.
13+
14+
### `seqera skill install`
15+
16+
Install to the standard Copilot instructions file:
17+
18+
```bash
19+
seqera skill install --path .github/copilot-instructions.md
20+
```
21+
22+
Or install to your home directory:
23+
24+
```bash
25+
seqera skill install --global
26+
```
27+
28+
You can also auto-detect and update an existing installation:
29+
30+
```bash
31+
seqera skill install --detect
32+
```
33+
34+
### Usage
35+
36+
```bash
37+
seqera skill install [OPTIONS]
38+
```
39+
40+
### Options
41+
42+
| Option | Short | Description |
43+
|--------|-------|-------------|
44+
| `--path <PATH>` | `-p` | Install to a custom path (relative or absolute) |
45+
| `--global` | `-g` | Install to home directory |
46+
| `--detect` | `-d` | Auto-detect an existing installation and update it |
47+
48+
### `seqera skill check`
49+
50+
Verify that your installed skill matches your current CLI version:
51+
52+
```bash
53+
seqera skill check
54+
```
55+
56+
Update automatically if needed:
57+
58+
```bash
59+
seqera skill check --update
60+
```
61+
62+
### Usage
63+
64+
```bash
65+
seqera skill check [OPTIONS]
66+
```
67+
68+
### Options
69+
70+
| Option | Short | Description |
71+
|--------|-------|-------------|
72+
| `--update` | `-u` | Automatically update outdated skills |
73+
| `--global` | | Check only global installations |
74+
| `--local` | | Check only local (repository) installations |
75+
76+
### Learn more
77+
78+
- [Use cases](./use-cases.md): Seqera AI CLI use cases
79+
- [Code intelligence](./nextflow-lsp.md): Language-aware coding support
80+
- [Installation](./installation.mdx): Detailed installation instructions

0 commit comments

Comments
 (0)