sundial-hub 0.0.1
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 +39 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1593 -0
- package/dist/index.js.map +1 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Sundial CLI
|
|
2
|
+
|
|
3
|
+
`sundial-hub` is a simple way to manage skills for your AI coding agents.
|
|
4
|
+
|
|
5
|
+
Add skills in 3 ways:
|
|
6
|
+
- From a Github repo url that contains skills
|
|
7
|
+
- From a local folder
|
|
8
|
+
- From the Sundial [registry](https://sundialscientific.com)
|
|
9
|
+
|
|
10
|
+
Supported agents:
|
|
11
|
+
- Claude Code
|
|
12
|
+
- Codex
|
|
13
|
+
- Gemini
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g sundial-hub
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
sun add tinker # Add from [registry](https://sundialscientific.com)
|
|
20
|
+
sun add github.com/user/skill # Add from GitHub. You can add from a root or subdirectory Github url
|
|
21
|
+
sun add ./my-skill # Add from local path
|
|
22
|
+
|
|
23
|
+
sun list # Browse available skills ([registry](https://sundialscientific.com))
|
|
24
|
+
sun installed # See installed skills
|
|
25
|
+
sun remove tinker # Remove a skill
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## Flags
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
sun add tinker --global # Install globally (~/.claude/)
|
|
33
|
+
sun add tinker --claude --codex # Install to specific agents
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- [Agent Skills Specification](https://agentskills.io/specification): Open source standard for agent skills
|
|
39
|
+
- [Issues](https://github.com/sundial-org/skills/issues)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|