@spencer-kit/coder-studio 0.1.3

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,24 @@
1
+ # @spencer-kit/coder-studio
2
+
3
+ CLI runtime manager for Coder Studio.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @spencer-kit/coder-studio
9
+ ```
10
+
11
+ ## Common Commands
12
+
13
+ ```bash
14
+ coder-studio start
15
+ coder-studio stop
16
+ coder-studio restart
17
+ coder-studio status
18
+ coder-studio logs -f
19
+ coder-studio open
20
+ coder-studio doctor
21
+ coder-studio config show
22
+ coder-studio config validate
23
+ coder-studio auth status
24
+ ```
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // @ts-nocheck
3
+ import { runCli } from '../lib/cli.mjs';
4
+ runCli().then((code) => {
5
+ process.exitCode = code;
6
+ }).catch((error) => {
7
+ const message = error instanceof Error ? error.message : String(error);
8
+ console.error(`coder-studio error: ${message}`);
9
+ process.exitCode = 1;
10
+ });