squirrelscan 0.0.18 → 0.0.20

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
@@ -2,9 +2,9 @@
2
2
 
3
3
  # squirrelscan
4
4
 
5
- **CLI Website Audits for Humans, Agents & LLMs**
5
+ **Website audit tool built for your agent workflow**
6
6
 
7
- [squirrelscan](https://squirrelscan.com) is a comprehensive website audit tool for SEO, performance, accessibility, content, and more. Built from the ground up for AI coding agents and developer workflows.
7
+ Free CLI for SEO, performance & security audits. Built for Claude Code, Cursor, and AI workflows.
8
8
 
9
9
  ## Features
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "squirrelscan",
3
- "version": "0.0.18",
4
- "description": "CLI website audits for humans, agents and LLMs",
3
+ "version": "0.0.20",
4
+ "description": "Free CLI for SEO, performance & security audits. Built for Claude Code, Cursor, and AI workflows.",
5
5
  "bin": {
6
6
  "squirrel": "bin/squirrel.js"
7
7
  },
@@ -209,6 +209,22 @@ async function main() {
209
209
  }
210
210
 
211
211
  log("Installation complete!");
212
+
213
+ // Install skill if npx available
214
+ log("Installing audit-website skill...");
215
+ const npxCmd = process.platform === "win32" ? "npx.cmd" : "npx";
216
+ const skillResult = spawnSync(npxCmd, ["skills", "add", "squirrelscan/skills", "--skill", "audit-website", "-y", "-g"], {
217
+ stdio: "pipe",
218
+ windowsHide: true,
219
+ });
220
+
221
+ if (skillResult.status === 0) {
222
+ info("Skill installed globally");
223
+ } else {
224
+ warn("Skill installation skipped (npx not available or failed)");
225
+ info("Install manually: npx skills add squirrelscan/skills --skill audit-website -y -g");
226
+ }
227
+
212
228
  info("Run 'squirrel --help' to get started");
213
229
  }
214
230