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 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
@@ -1,3 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import { runCli } from "../packages/cli/dist/index.js";
3
- await runCli();
2
+ import "../dist/va-claw-bundle.mjs";