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.
- package/README.md +8 -3
- 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
|
-
|
|
12
|
-
npx small-skill
|
|
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