skilluse 0.2.1 → 0.3.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.
Files changed (3) hide show
  1. package/README.md +16 -3
  2. package/dist/cli.js +548 -577
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Skilluse CLI
2
2
 
3
- CLI tool for managing and installing AI Coding Agent Skills.
3
+ A decentralized Skills Registry CLI for AI Coding Agents.
4
+
5
+ SkillUse enables teams to **discover, install, create, and publish** skills across multiple AI agents (Claude Code, Cursor, Windsurf, etc.). It treats skills as first-class packages distributed through GitHub repositories—supporting both public community skills and private organizational knowledge.
6
+
7
+ See the [main README](../../README.md) for design philosophy and the [design document](../../design.md) for technical details.
4
8
 
5
9
  ## Installation
6
10
 
@@ -60,6 +64,15 @@ skilluse list
60
64
  | `skilluse list --outdated` | Show skills with updates |
61
65
  | `skilluse info <skill>` | Show skill details |
62
66
 
67
+ ### Agent Management
68
+
69
+ | Command | Description |
70
+ |---------|-------------|
71
+ | `skilluse agent` | List/select agent interactively |
72
+ | `skilluse agent <name>` | Switch to specified agent |
73
+
74
+ Supported agents: `claude`, `cursor`, `windsurf`, `codex`, `copilot`, `cline`, `roo`, `aider`, `continue`
75
+
63
76
  ## Authentication
64
77
 
65
78
  Skilluse uses GitHub App OAuth for authentication.
@@ -90,8 +103,8 @@ skilluse logout
90
103
 
91
104
  ## Security
92
105
 
93
- - **User tokens** stored in system keychain (macOS/Windows/Linux)
94
- - **Fallback** to encrypted file if keychain unavailable
106
+ - **User tokens** stored in JSON file with restricted permissions (0600)
107
+ - **Location** follows OS conventions via env-paths
95
108
 
96
109
  ## Environment Variables
97
110