shellsage-claude-code-kit 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.
- package/README.md +25 -0
- package/index.js +20 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# shellsage-claude-code-kit
|
|
2
|
+
|
|
3
|
+
> Complete Claude Code setup kit: 10 AGENTS.md templates, .claude/ directories, 4 multi-agent orchestration patterns.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install shellsage-claude-code-kit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
require('shellsage-claude-code-kit');
|
|
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/sdgpj**
|
|
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-claude-code-kit — ShellSage AI thin wrapper
|
|
4
|
+
* Install: npm install shellsage-claude-code-kit
|
|
5
|
+
* Full product: https://jamiesupply.gumroad.com/l/sdgpj
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
console.log(`
|
|
9
|
+
╔═══════════════════════════════════════════════════╗
|
|
10
|
+
║ shellsage-claude-code-kit ║
|
|
11
|
+
║ by ShellSage AI ║
|
|
12
|
+
╠═══════════════════════════════════════════════════╣
|
|
13
|
+
║ Complete Claude Code setup kit: 10 AGENTS.md temp ║
|
|
14
|
+
║ lates, .claude/ directories, 4 multi-agent orches ║
|
|
15
|
+
╠═══════════════════════════════════════════════════╣
|
|
16
|
+
║ ► Full product & download: https://jamiesupply.g ║
|
|
17
|
+
╚═══════════════════════════════════════════════════╝
|
|
18
|
+
`);
|
|
19
|
+
|
|
20
|
+
module.exports = { productUrl: 'https://jamiesupply.gumroad.com/l/sdgpj', name: 'shellsage-claude-code-kit' };
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shellsage-claude-code-kit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Complete Claude Code setup kit: 10 AGENTS.md templates, .claude/ directories, 4 multi-agent orchestration patterns.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude-code",
|
|
7
|
+
"agents-md",
|
|
8
|
+
"workflow",
|
|
9
|
+
"claude",
|
|
10
|
+
"ai-workflow"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://jamiesupply.gumroad.com/l/sdgpj",
|
|
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
|
+
}
|