@oodarun/cli 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Design on your codebase in the cloud, no local setup required.
4
4
 
5
- [ooda.computer](https://ooda.computer)
5
+ [ooda.run](https://ooda.run)
6
6
 
7
7
  Ooda launches [Claude Code](https://claude.ai/claude-code) on cloud sandboxes. Each project runs in its own isolated cloud environment with a public URL — no local dependencies, no Docker, no setup headaches.
8
8
 
@@ -59,10 +59,10 @@ Work on multiple projects simultaneously by opening additional terminals:
59
59
  npx @oodarun/cli
60
60
 
61
61
  # Terminal 2 — connect directly to another project
62
- npx @oodarun/cli connect marketing-redesign
62
+ ooda connect marketing-redesign
63
63
 
64
64
  # Terminal 3 — and another
65
- npx @oodarun/cli connect shader-tool
65
+ ooda connect shader-tool
66
66
  ```
67
67
 
68
68
  `ooda connect <name>` skips the dashboard and connects straight to the named project. It uses prefix matching, so `ooda connect market` will match `marketing-redesign-m3np`.
@@ -120,6 +120,6 @@ ooda --port 3000 # Custom dashboard port (default: 4444)
120
120
 
121
121
  ## More info
122
122
 
123
- - [ooda.computer](https://ooda.computer) — marketing site
124
- - [ooda.computer/docs](https://ooda.computer/docs) — documentation
123
+ - [ooda.run](https://ooda.run) — marketing site
124
+ - [ooda.run/docs](https://ooda.run/docs) — documentation
125
125
  - [npm](https://www.npmjs.com/package/@oodarun/cli) — package registry
package/dist/cli.js CHANGED
@@ -3187,7 +3187,7 @@ async function provisionFromGitHub(parsed, projectName, token, onProgress, githu
3187
3187
  `
3188
3188
  );
3189
3189
  }
3190
- await exec(`cd ${projectRoot} && git config user.name "ooda" && git config user.email "dev@ooda.computer"`);
3190
+ await exec(`cd ${projectRoot} && git config user.name "ooda" && git config user.email "dev@ooda.run"`);
3191
3191
  onProgress({ step: "Detecting project..." });
3192
3192
  const project = await detectProjectRemote(projectName, token, projectRoot);
3193
3193
  console.log(`[project-provisioner] Detected: framework=${project.framework}, pm=${project.packageManager}`);
@@ -3201,7 +3201,7 @@ async function provisionFromGitHub(parsed, projectName, token, onProgress, githu
3201
3201
  originUrl: `https://github.com/${parsed.owner}/${parsed.repo}.git`,
3202
3202
  githubRepo: `${parsed.owner}/${parsed.repo}`,
3203
3203
  userName: "ooda",
3204
- userEmail: "dev@ooda.computer"
3204
+ userEmail: "dev@ooda.run"
3205
3205
  };
3206
3206
  await deployClaudeConfig(projectName, token, projectRoot, project.framework, onProgress, gitInfo, workingBranch);
3207
3207
  const gitWorkflowPatch = `
@@ -5292,7 +5292,7 @@ async function deployFromGitHubFlow(target, apiToken, claudeToken) {
5292
5292
  }
5293
5293
 
5294
5294
  // src/cli/index.ts
5295
- var CLI_VERSION = "0.1.0";
5295
+ var CLI_VERSION = "0.1.1";
5296
5296
  function formatMutationError(result) {
5297
5297
  const parts = [];
5298
5298
  if (result.status !== void 0) parts.push(String(result.status));
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@oodarun/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Launch Claude Code on cloud dev environments",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
7
- "homepage": "https://ooda.computer",
7
+ "homepage": "https://ooda.run",
8
8
  "bin": {
9
9
  "ooda": "dist/cli.js"
10
10
  },