seqera 1.8.0 → 1.9.0-dev.685715a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +33 -33
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -6,33 +6,33 @@ AI-powered assistant for bioinformatics workflows and [Seqera Platform](https://
6
6
 
7
7
  1. Install the Co-Scientist CLI:
8
8
 
9
- ```bash
10
- npm install -g seqera
11
- ```
9
+ ```bash
10
+ npm install -g seqera
11
+ ```
12
12
 
13
- See [Installation](https://docs.seqera.io/platform-cloud/seqera-ai/installation) for a comprehensive installation guide.
13
+ See [Installation](https://docs.seqera.io/platform-cloud/seqera-ai/installation) for a comprehensive installation guide.
14
14
 
15
15
  2. Log in to your Seqera account:
16
16
 
17
- ```bash
18
- seqera login
19
- ```
17
+ ```bash
18
+ seqera login
19
+ ```
20
20
 
21
- See [Authentication](https://docs.seqera.io/platform-cloud/seqera-ai/authentication) for a comprehensive authentication guide.
21
+ See [Authentication](https://docs.seqera.io/platform-cloud/seqera-ai/authentication) for a comprehensive authentication guide.
22
22
 
23
23
  3. Start Co-Scientist:
24
24
 
25
- ```bash
26
- seqera ai
27
- ```
25
+ ```bash
26
+ seqera ai
27
+ ```
28
28
 
29
29
  4. Run your first prompt:
30
30
 
31
- ```
32
- List my recent workflows
33
- ```
31
+ ```
32
+ List my recent workflows
33
+ ```
34
34
 
35
- See [Use cases](https://docs.seqera.io/platform-cloud/seqera-ai/use-cases) for a comprehensive list of use cases.
35
+ See [Use cases](https://docs.seqera.io/platform-cloud/seqera-ai/use-cases) for a comprehensive list of use cases.
36
36
 
37
37
  ## Use cases
38
38
 
@@ -160,24 +160,24 @@ Co-Scientist includes built-in slash commands for common workflows.
160
160
 
161
161
  **Type `/` to see all available commands**:
162
162
 
163
- | Command | Description |
164
- |---------|-------------|
165
- | `/help` (or `?`) | Show available commands |
166
- | `/exit` (`/quit`, `/q`) | Exit the application |
167
- | `/clear` | Clear conversation history |
168
- | `/thinking` | Toggle thinking display |
169
- | `/scroll` | Toggle auto-scroll |
170
- | `/org` | Show current organization |
171
- | `/session` | Show current session ID |
172
- | `/sessions` | Browse and switch sessions |
173
- | `/lsp` | Show LSP server status |
174
- | `/status` | Show system status (includes composer mode) |
175
- | `/credits` | Show credit balance and usage |
176
- | `/approval [mode]` | Show or set approval mode (`always`/`default`/`suggest`) |
177
- | `/update` | Check CLI updates and next steps |
178
- | `/feedback` | Open feedback form |
179
- | `/help-community` | Open community help |
180
- | `/stickers` | Get Seqera stickers |
163
+ | Command | Description |
164
+ | ----------------------- | -------------------------------------------------------- |
165
+ | `/help` (or `?`) | Show available commands |
166
+ | `/exit` (`/quit`, `/q`) | Exit the application |
167
+ | `/clear` | Clear conversation history |
168
+ | `/thinking` | Toggle thinking display |
169
+ | `/scroll` | Toggle auto-scroll |
170
+ | `/org` | Show current organization |
171
+ | `/session` | Show current session ID |
172
+ | `/sessions` | Browse and switch sessions |
173
+ | `/lsp` | Show LSP server status |
174
+ | `/status` | Show system status (includes composer mode) |
175
+ | `/credits` | Show credit balance and usage |
176
+ | `/approval [mode]` | Show or set approval mode (`always`/`default`/`suggest`) |
177
+ | `/update` | Check CLI updates and next steps |
178
+ | `/feedback` | Open feedback form |
179
+ | `/help-community` | Open community help |
180
+ | `/stickers` | Get Seqera stickers |
181
181
 
182
182
  </details>
183
183
 
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "seqera",
3
- "version": "1.8.0",
3
+ "version": "1.9.0-dev.685715a",
4
4
  "description": "AI-powered CLI for Seqera Platform - bioinformatics workflow management",
5
5
  "keywords": [
6
- "seqera",
7
- "nextflow",
8
- "bioinformatics",
9
- "workflow",
10
6
  "ai",
11
- "cli"
7
+ "bioinformatics",
8
+ "cli",
9
+ "nextflow",
10
+ "seqera",
11
+ "workflow"
12
12
  ],
13
- "author": "Seqera Labs",
14
13
  "license": "BUSL-1.1",
14
+ "author": "Seqera Labs",
15
15
  "bin": {
16
16
  "seqera": "bin/seqera"
17
17
  },
@@ -20,15 +20,15 @@
20
20
  "README.md",
21
21
  "LICENSE"
22
22
  ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
23
26
  "optionalDependencies": {
24
- "@seqera/cli-darwin-arm64": "1.8.0",
25
- "@seqera/cli-darwin-x64": "1.8.0",
26
- "@seqera/cli-linux-x64": "1.8.0"
27
+ "@seqera/cli-darwin-arm64": "1.9.0-dev.685715a",
28
+ "@seqera/cli-darwin-x64": "1.9.0-dev.685715a",
29
+ "@seqera/cli-linux-x64": "1.9.0-dev.685715a"
27
30
  },
28
31
  "engines": {
29
32
  "node": ">=18"
30
- },
31
- "publishConfig": {
32
- "access": "public"
33
33
  }
34
34
  }