@bradygaster/squad-cli 0.6.0-alpha.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 ADDED
@@ -0,0 +1,17 @@
1
+ # @bradygaster/squad-cli
2
+
3
+ Command-line interface for the Squad multi-agent runtime.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @bradygaster/squad-cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ squad --help
15
+ ```
16
+
17
+ > **Note:** Source files have not been moved yet — this package is a scaffold for the monorepo split.
package/dist/cli.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
package/dist/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log('squad-cli placeholder — full CLI coming soon');
3
+ export {};
4
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,CAAC,GAAG,CAAC,8CAA8C,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@bradygaster/squad-cli",
3
+ "version": "0.6.0-alpha.0",
4
+ "description": "Squad CLI — Command-line interface for the Squad multi-agent runtime",
5
+ "type": "module",
6
+ "bin": {
7
+ "squad": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsc -p tsconfig.json"
15
+ },
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "dependencies": {
20
+ "@bradygaster/squad-sdk": "0.6.0-alpha.0"
21
+ },
22
+ "keywords": [
23
+ "copilot",
24
+ "multi-agent",
25
+ "squad",
26
+ "cli"
27
+ ],
28
+ "license": "MIT",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/bradygaster/squad.git",
32
+ "directory": "packages/squad-cli"
33
+ }
34
+ }