@inneranimalmedia/agentsam-sdk 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/package.json +32 -0
- package/src/cli.js +17 -0
- package/src/index.js +5 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@inneranimalmedia/agentsam-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Agent Sam is a full-stack AI agent SDK for autonomous task execution — covering data management, creative workflows, design commands, and multi-step agentic pipelines.",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"agentsam": "src/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "node src/index.js"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+ssh://git@github.com/SamPrimeaux/agentsam-sdk.git"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"ai",
|
|
19
|
+
"agent",
|
|
20
|
+
"sdk",
|
|
21
|
+
"autonomous",
|
|
22
|
+
"mcp",
|
|
23
|
+
"cloudflare",
|
|
24
|
+
"workers"
|
|
25
|
+
],
|
|
26
|
+
"author": "Sam Primeaux <sam@inneranimalmedia.com>",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/SamPrimeaux/agentsam-sdk/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/SamPrimeaux/agentsam-sdk#readme"
|
|
32
|
+
}
|
package/src/cli.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const command = process.argv[2];
|
|
4
|
+
|
|
5
|
+
if (command === 'init') {
|
|
6
|
+
console.log('Initializing Agent Sam project...');
|
|
7
|
+
// scaffold logic coming soon
|
|
8
|
+
} else {
|
|
9
|
+
console.log(`
|
|
10
|
+
Agent Sam SDK — CLI
|
|
11
|
+
|
|
12
|
+
Usage:
|
|
13
|
+
agentsam init Initialize a new Agent Sam project
|
|
14
|
+
|
|
15
|
+
Version: 1.0.0
|
|
16
|
+
`);
|
|
17
|
+
}
|