swarmctl 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 (2) hide show
  1. package/bin/swarmctl.js +3 -0
  2. package/package.json +18 -0
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("swarmctl is not yet available. Check back soon.");
3
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "swarmctl",
3
+ "version": "0.0.1",
4
+ "description": "SwarmCTL CLI - the control plane for AI agent swarms",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "swarmctl": "./bin/swarmctl.js"
8
+ },
9
+ "keywords": [
10
+ "swarm",
11
+ "agents",
12
+ "ai",
13
+ "cli"
14
+ ],
15
+ "files": [
16
+ "bin"
17
+ ]
18
+ }