@goosyai/goosy 1.0.0 → 1.0.1

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 ADDED
@@ -0,0 +1,29 @@
1
+ # @goosyai/goosy
2
+
3
+ AI-powered security scanning and patching for your codebase — single static binary, no runtime dependencies.
4
+
5
+ This package installs the native `goosy` CLI binary for your platform (Linux, macOS, or Windows — amd64 or arm64).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g @goosyai/goosy
11
+ ```
12
+
13
+ ## Quick start
14
+
15
+ ```bash
16
+ goosy login # authenticate (opens browser)
17
+ goosy scan . # fast scan of current directory
18
+ goosy findings # list findings from last scan
19
+ goosy fix <id> # generate and apply a fix
20
+ goosy explain <id> # get a prose explanation
21
+ ```
22
+
23
+ ## Documentation
24
+
25
+ Full command reference, flags, CI usage, and config: [github.com/Goosyai/GOOSY-Cli](https://github.com/Goosyai/GOOSY-Cli#readme)
26
+
27
+ ## License
28
+
29
+ MIT
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goosyai/goosy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI-powered security scanning and patching CLI",
5
5
  "bin": {
6
6
  "goosy": "bin/goosy.js"