shellsage-agent-skills 1.0.0

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 +25 -0
  2. package/index.js +20 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # shellsage-agent-skills
2
+
3
+ > 10 production-ready AI agent skills: PR reviews, bug triage, API docs, test writing, refactor planning, and more.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install shellsage-agent-skills
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```js
14
+ require('shellsage-agent-skills');
15
+ // Prints product info and link to full digital download
16
+ ```
17
+
18
+ ## Full Product
19
+
20
+ The complete version includes all files, templates, and documentation:
21
+ 👉 **https://jamiesupply.gumroad.com/l/gjvdi**
22
+
23
+ ---
24
+
25
+ *Made by [ShellSage AI](https://github.com/shellsage-ai) — developer tools for AI agent builders.*
package/index.js ADDED
@@ -0,0 +1,20 @@
1
+ 'use strict';
2
+ /**
3
+ * shellsage-agent-skills — ShellSage AI thin wrapper
4
+ * Install: npm install shellsage-agent-skills
5
+ * Full product: https://jamiesupply.gumroad.com/l/gjvdi
6
+ */
7
+
8
+ console.log(`
9
+ ╔═══════════════════════════════════════════════════╗
10
+ ║ shellsage-agent-skills ║
11
+ ║ by ShellSage AI ║
12
+ ╠═══════════════════════════════════════════════════╣
13
+ ║ 10 production-ready AI agent skills: PR reviews, ║
14
+ ║ bug triage, API docs, test writing, refactor plan ║
15
+ ╠═══════════════════════════════════════════════════╣
16
+ ║ ► Full product & download: https://jamiesupply.g ║
17
+ ╚═══════════════════════════════════════════════════╝
18
+ `);
19
+
20
+ module.exports = { productUrl: 'https://jamiesupply.gumroad.com/l/gjvdi', name: 'shellsage-agent-skills' };
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "shellsage-agent-skills",
3
+ "version": "1.0.0",
4
+ "description": "10 production-ready AI agent skills: PR reviews, bug triage, API docs, test writing, refactor planning, and more.",
5
+ "keywords": [
6
+ "ai-agent",
7
+ "claude",
8
+ "skills",
9
+ "templates",
10
+ "automation"
11
+ ],
12
+ "homepage": "https://jamiesupply.gumroad.com/l/gjvdi",
13
+ "main": "index.js",
14
+ "scripts": {
15
+ "test": "node index.js"
16
+ },
17
+ "author": "ShellSage AI <jamiessupplycompany@yahoo.com>",
18
+ "license": "ISC",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/shellsage-ai"
22
+ },
23
+ "engines": {
24
+ "node": ">=16"
25
+ }
26
+ }