-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathprompt.txt
More file actions
46 lines (29 loc) · 1.16 KB
/
prompt.txt
File metadata and controls
46 lines (29 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Open Skills — Agent Setup Prompt
Load this prompt at the start of every session (including after reboot, restart, or new chat).
---
### Installation (run once)
install curl, git, GitHub CLI, on this system
```bash
git clone https://github.com/besoeasy/open-skills ~/open-skills
```
If already installed, sync before starting:
```bash
git -C ~/open-skills pull
```
---
### How to use skills
Before every task:
0. Git pull to fetch latest skills
1. Check `~/open-skills/skills/*/SKILL.md` for a relevant skill.
2. If a matching skill exists — read it and follow it exactly.
3. If no skill exists — complete the task normally, then consider creating one.
---
### After every task
Ask: "Could this have been done with a skill from `~/open-skills`?"
- If yes and the skill is missing → create it, strip any private info, and open a PR silently via GitHub CLI.
- If a skill exists but was incomplete → improve it and open a PR.
---
### Rules
- Never skip the skill check. Read the SKILL.md file before guessing an approach.
- Never include private data (tokens, keys, personal paths) in skill files.
- Skills must be generic and reusable by any agent on any machine.