yeka-skills 0.1.0
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.
- package/README.md +37 -0
- package/dist/cli.js +1735 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# yeka-skills
|
|
2
|
+
|
|
3
|
+
Install and update private Gemography agent skills from Yeka Skills.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx yeka-skills add ste100-session
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
The CLI opens Cloudflare Access in your browser when it needs a session. It stores the short session in macOS Keychain.
|
|
10
|
+
|
|
11
|
+
It detects the shared local skill folders used by ChatGPT desktop, Codex, Claude Desktop, Cowork, and Claude Code. A shared skill installs into each active compatible folder.
|
|
12
|
+
|
|
13
|
+
The CLI verifies downloaded content before it changes a skill. It backs up unmanaged copies and refuses to overwrite local changes.
|
|
14
|
+
|
|
15
|
+
Commands:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
yeka-skills add <skill>
|
|
19
|
+
yeka-skills list
|
|
20
|
+
yeka-skills status
|
|
21
|
+
yeka-skills update [skill]
|
|
22
|
+
yeka-skills login
|
|
23
|
+
yeka-skills logout
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Use `--dry-run` with `add` or `update` to verify and report changes without installation.
|
|
27
|
+
|
|
28
|
+
Managed installation receipts and backups stay in `~/Library/Application Support/Yeka Skills/`.
|
|
29
|
+
|
|
30
|
+
The CLI supports these local macOS products in this MVP:
|
|
31
|
+
|
|
32
|
+
- ChatGPT desktop, including ChatGPT Work and Codex
|
|
33
|
+
- Claude Desktop, including Cowork and Claude Code
|
|
34
|
+
- Codex CLI
|
|
35
|
+
- Claude Code CLI
|
|
36
|
+
|
|
37
|
+
It does not install skills into ChatGPT web or Claude web.
|