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.
Files changed (2) hide show
  1. package/README.md +23 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,28 +1,41 @@
1
1
  # Sundial CLI
2
2
 
3
- `sundial-hub` is a simple way to manage skills for your AI coding agents.
3
+ `sundial-hub` is a CLI to easily add skills to your AI coding agents.
4
4
 
5
- Add skills in 3 ways:
6
- - From a Github repo url that contains skills
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 tinker # Add from [registry](https://sundialscientific.com)
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
- sun list # Browse available skills ([registry](https://sundialscientific.com))
24
- sun installed # See installed skills
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sundial-hub",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A CLI to extend your agent's skills",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",