va-claw 0.1.0 → 0.1.2
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 +7 -0
- package/bin/va-claw +1 -2
- package/dist/va-claw-bundle.mjs +2816 -0
- package/package.json +4 -2
- package/packages/cli/dist/.tsbuildinfo +1 -1
- package/packages/cli/dist/program.js +1 -1
- package/packages/cli/dist/program.js.map +1 -1
- package/packages/skills/dist/.tsbuildinfo +1 -1
- package/packages/skills/dist/frontmatter.js +34 -3
- package/packages/skills/dist/frontmatter.js.map +1 -1
package/README.md
CHANGED
|
@@ -221,6 +221,13 @@ va-claw skill show <name>
|
|
|
221
221
|
va-claw skill remove <name>
|
|
222
222
|
```
|
|
223
223
|
|
|
224
|
+
> **Security tip:** Before installing skills from unknown sources, vet them first with the [Skill Vetter](https://clawhub.ai/spclaudehome/Skill-vetter) — a zero-footprint skill that checks for red flags (credential access, outbound requests, obfuscated code) and produces a risk report before you commit.
|
|
225
|
+
>
|
|
226
|
+
> ```bash
|
|
227
|
+
> # Install the vetter once, use it forever
|
|
228
|
+
> va-claw skill add https://clawhub.ai/spclaudehome/Skill-vetter
|
|
229
|
+
> ```
|
|
230
|
+
|
|
224
231
|
A skill file looks like this:
|
|
225
232
|
|
|
226
233
|
```markdown
|
package/bin/va-claw
CHANGED