sundial-hub 0.0.1 → 0.0.2
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 +23 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,28 +1,41 @@
|
|
|
1
1
|
# Sundial CLI
|
|
2
2
|
|
|
3
|
-
`sundial-hub` is a
|
|
3
|
+
`sundial-hub` is a CLI to easily add skills to your AI coding agents.
|
|
4
4
|
|
|
5
|
-
Add skills
|
|
6
|
-
-
|
|
7
|
-
- From a local folder
|
|
5
|
+
Add skills from 3 sources with `sun add`:
|
|
6
|
+
- A Github repo url that contains skills (ex: [github.com/anthropics/skills](https://github.com/anthropics/skills))
|
|
7
|
+
- From a local folder (ex: `.claude/skills/my-custom-skill`)
|
|
8
8
|
- From the Sundial [registry](https://sundialscientific.com)
|
|
9
9
|
|
|
10
10
|
Supported agents:
|
|
11
|
-
- Claude Code
|
|
12
|
-
- Codex
|
|
13
|
-
- Gemini
|
|
11
|
+
- Claude Code (`.claude/`)
|
|
12
|
+
- Codex (`.codex/`)
|
|
13
|
+
- Gemini (`.gemini/`)
|
|
14
14
|
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
15
17
|
```bash
|
|
16
18
|
npm install -g sundial-hub
|
|
19
|
+
```
|
|
17
20
|
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
Add skills:
|
|
18
24
|
```bash
|
|
19
|
-
sun add
|
|
25
|
+
sun add skill-creator # Add `skill-creator` skill from [registry](https://sundialscientific.com)
|
|
26
|
+
sun add skill-creator --global # Add skill globally to ~/.claude (or other agents).
|
|
20
27
|
sun add github.com/user/skill # Add from GitHub. You can add from a root or subdirectory Github url
|
|
21
28
|
sun add ./my-skill # Add from local path
|
|
29
|
+
```
|
|
22
30
|
|
|
23
|
-
|
|
24
|
-
|
|
31
|
+
If a local project is detected, then the skill will be added to the local project. Else, it will add it globally. You can force global installation with the `--global` flag!
|
|
32
|
+
|
|
33
|
+
Other commands:
|
|
34
|
+
```bash
|
|
35
|
+
sun config # Configure your default agent(s)
|
|
36
|
+
sun installed # See installed skills. `sun show` works to
|
|
25
37
|
sun remove tinker # Remove a skill
|
|
38
|
+
sun list # Browse available skills ([registry](https://sundialscientific.com))
|
|
26
39
|
```
|
|
27
40
|
|
|
28
41
|
|