shelfware 0.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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/cli.mjs +3 -0
  3. package/package.json +9 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # shelfware
2
+
3
+ Finds the shelfware in your skill drawers. Coming soon.
package/cli.mjs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("shelfware 0.0.1 — a local catalog & audit tool for AI agent skills.");
3
+ console.log("Under active development: https://github.com/frontender-ua/shelfware");
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "shelfware",
3
+ "version": "0.0.1",
4
+ "description": "Finds the shelfware in your AI agent skill drawers. Under active development.",
5
+ "bin": { "shelfware": "cli.mjs" },
6
+ "license": "MIT",
7
+ "author": "frontender-ua",
8
+ "repository": "github:frontender-ua/shelfware"
9
+ }