skillvault 0.1.0 → 0.1.3

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/dist/cli.d.ts +13 -9
  2. package/dist/cli.js +1168 -214
  3. package/package.json +3 -3
package/dist/cli.d.ts CHANGED
@@ -1,16 +1,20 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * SkillVault Agent Lightweight MCP server for secure skill execution.
3
+ * SkillVault — Secure skill distribution for Claude Code.
4
4
  *
5
5
  * Usage:
6
- * npx skillvault --invite CODE # First-time setup
7
- * npx skillvault # Start MCP server
8
- * bunx skillvault --invite CODE # Also works with bun
6
+ * npx skillvault --invite CODE # Setup: redeem invite + sync + install
7
+ * npx skillvault --load SKILL # Decrypt a skill (used by Claude Code)
8
+ * npx skillvault --status # Show publishers & skills
9
+ * npx skillvault --refresh # Re-authenticate tokens + sync
10
+ * npx skillvault --sync # Sync vaults + update stubs
9
11
  *
10
- * What it does:
11
- * 1. Redeems invite code (if provided)
12
- * 2. Configures Claude Code MCP connection (~/.claude/.mcp.json)
13
- * 3. Starts the MCP server on localhost:9877
14
- * 4. Claude Code calls skillvault_execute() for secure skill execution
12
+ * How it works:
13
+ * 1. Customer runs --invite once vaults downloaded, stubs installed
14
+ * 2. Claude Code discovers stub SKILL.md files in ~/.claude/skills/
15
+ * 3. When a skill is triggered, Claude runs: npx skillvault --load <name>
16
+ * 4. The CLI decrypts the vault (license checked) and outputs to stdout
17
+ * 5. Claude reads the output and follows the instructions
18
+ * 6. Decrypted content is never written to disk
15
19
  */
16
20
  export {};