small-skill 0.0.2 → 0.0.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 (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,12 +7,17 @@ maintain the IAM role itself with least privilege.
7
7
 
8
8
  ## Install
9
9
 
10
+ Two packages: the [small-deploy](https://www.npmjs.com/package/small-deploy)
11
+ CLI does the deploying; this skill teaches your agent to drive it.
12
+
10
13
  ```
11
- npx small-skill # into this project's .claude/skills/small
12
- npx small-skill --global # into ~/.claude/skills/small for every project
14
+ npm i -g small-deploy # the CLI (the agent runs `small ...` through it)
15
+ npx small-skill # the skill, into this project's .claude/skills/small
16
+ npx small-skill --global # or into ~/.claude/skills/small for every project
13
17
  ```
14
18
 
15
- Or, with the CLI already installed: `small skill`.
19
+ Or, with the CLI already installed: `small skill` installs the skill copy it
20
+ ships with.
16
21
 
17
22
  ## What the agent learns
18
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "small-skill",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Agent skill for small-deploy: teaches Claude Code/Codex to deploy a Python tool behind a work-email login in one command",
5
5
  "bin": {
6
6
  "small-skill": "bin/install.js"