You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/.system/skill-installer/SKILL.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,18 +7,18 @@ metadata:
7
7
8
8
# Skill Installer
9
9
10
-
Helps install skills. By default these are from https://github.com/openai/skills/tree/main/skills/.curated, but users can also provide other locations.
10
+
Helps install skills. By default these are from https://github.com/openai/skills/tree/main/skills/.curated, but users can also provide other locations. Experimental skills live in https://github.com/openai/skills/tree/main/skills/.experimental and can be installed the same way.
11
11
12
12
Use the helper scripts based on the task:
13
-
- List curated skills when the user asks what is available, or if the user uses this skill without specifying what to do.
13
+
- List skills when the user asks what is available, or if the user uses this skill without specifying what to do. Default listing is `.curated`, but you can pass `--path skills/.experimental` when they ask about experimental skills.
14
14
- Install from the curated list when the user provides a skill name.
15
15
- Install from another repo when the user provides a GitHub repo/path (including private repos).
16
16
17
17
Install skills with the helper scripts.
18
18
19
19
## Communication
20
20
21
-
When listing curated skills, output approximately as follows, depending on the context of the user's request:
21
+
When listing skills, output approximately as follows, depending on the context of the user's request. If they ask about experimental skills, list from `.experimental` instead of `.curated` and label the source accordingly:
22
22
"""
23
23
Skills from {repo}:
24
24
1. skill-1
@@ -33,10 +33,12 @@ After installing a skill, tell the user: "Restart Codex to pick up new skills."
33
33
34
34
All of these scripts use network, so when running in the sandbox, request escalation when running them.
35
35
36
-
-`scripts/list-curated-skills.py` (prints curated list with installed annotations)
37
-
-`scripts/list-curated-skills.py --format json`
36
+
-`scripts/list-skills.py` (prints skills list with installed annotations)
37
+
-`scripts/list-skills.py --format json`
38
+
- Example (experimental list): `scripts/list-skills.py --path skills/.experimental`
0 commit comments