@senso-ai/shipables 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 +60 -0
- package/dist/index.js +2672 -0
- package/dist/index.js.map +1 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# shipables
|
|
2
|
+
|
|
3
|
+
CLI for installing, managing, and publishing AI agent skills from the [Shipables](https://shipables.dev) registry.
|
|
4
|
+
|
|
5
|
+
Shipables is an npm-style package manager for AI agent skills that follow the [Agent Skills](https://agentskills.io) open standard. It works with Claude Code, Cursor, Codex, Copilot, Gemini, and Cline.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @senso-ai/shipables
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Authenticate with GitHub
|
|
17
|
+
shipables login
|
|
18
|
+
|
|
19
|
+
# Search for skills
|
|
20
|
+
shipables search "code review"
|
|
21
|
+
|
|
22
|
+
# Install a skill
|
|
23
|
+
shipables install @org/my-skill
|
|
24
|
+
|
|
25
|
+
# List installed skills
|
|
26
|
+
shipables list
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Commands
|
|
30
|
+
|
|
31
|
+
| Command | Description |
|
|
32
|
+
|---------|-------------|
|
|
33
|
+
| `install <skill>` | Install a skill from the registry |
|
|
34
|
+
| `uninstall <skill>` | Remove a skill and its configuration |
|
|
35
|
+
| `search <query>` | Search the registry for skills |
|
|
36
|
+
| `info <skill>` | Show detailed information about a skill |
|
|
37
|
+
| `list` | List installed skills |
|
|
38
|
+
| `update [skill]` | Update installed skills to latest version |
|
|
39
|
+
| `publish` | Publish the skill in the current directory |
|
|
40
|
+
| `unpublish <skill@version>` | Yank a published version (within 72 hours) |
|
|
41
|
+
| `init` | Scaffold a new skill in the current directory |
|
|
42
|
+
| `login` | Authenticate with the Shipables registry via GitHub |
|
|
43
|
+
| `logout` | Remove stored credentials |
|
|
44
|
+
| `doctor` | Check health of installed skills and agent configurations |
|
|
45
|
+
| `config` | Manage CLI configuration (`set`, `get`, `list`) |
|
|
46
|
+
| `stats <skill>` | Show download statistics for a skill |
|
|
47
|
+
| `profile [username]` | Show user profile and published skills |
|
|
48
|
+
|
|
49
|
+
## Supported Agents
|
|
50
|
+
|
|
51
|
+
- [Claude Code](https://claude.ai)
|
|
52
|
+
- [Cursor](https://cursor.sh)
|
|
53
|
+
- [Codex](https://openai.com/codex)
|
|
54
|
+
- [Copilot](https://github.com/features/copilot)
|
|
55
|
+
- [Gemini](https://gemini.google.com)
|
|
56
|
+
- [Cline](https://cline.bot)
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
MIT
|