File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
platform-cloud/docs/seqera-ai Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,24 @@ The `seqera skill` command installs a skill file that enables your coding agent
2727
2828Install a skill file for your coding agent.
2929
30+ #### Examples
31+
32+ ``` bash
33+ # Prompts you to select agent and install location
34+ seqera skill install
35+
36+ # Install to home directory
37+ seqera skill install --global
38+
39+ # Install to a custom path
40+ seqera skill install --path .claude/skills/
41+
42+ # Auto-detect existing installation and update
43+ seqera skill install --detect
44+ ```
45+
46+ #### Usage
47+
3048``` bash
3149seqera skill install [OPTIONS]
3250```
@@ -45,6 +63,24 @@ When no flag is provided, `seqera skill install` prompts you to select your agen
4563
4664Verify that your installed skills match the current CLI version.
4765
66+ #### Examples
67+
68+ ``` bash
69+ # Check both local and global installations
70+ seqera skill check
71+
72+ # Check and automatically update outdated skills
73+ seqera skill check --update
74+
75+ # Check only global installations
76+ seqera skill check --global
77+
78+ # Check only local installations
79+ seqera skill check --local
80+ ```
81+
82+ #### Usage
83+
4884``` bash
4985seqera skill check [OPTIONS]
5086```
You can’t perform that action at this time.
0 commit comments