getprismo 0.1.35 → 0.1.36

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.
@@ -15,7 +15,7 @@ module.exports = function createAgent(deps) {
15
15
  openUrl,
16
16
  } = deps;
17
17
 
18
- const DEFAULT_WORKSPACE_URL = "https://app.getprismo.dev/dashboard/dev";
18
+ const DEFAULT_WORKSPACE_URL = "https://getprismo.dev/dashboard/dev";
19
19
 
20
20
  const DEFAULT_API_URL = "https://api.getprismo.dev";
21
21
  const TERMINAL_STATUSES = new Set(["completed", "failed", "cancelled"]);
@@ -323,7 +323,7 @@ function createCli(deps) {
323
323
  limit: parsePositiveInt(limitIndex >= 0 ? rest[limitIndex + 1] : null, 20),
324
324
  });
325
325
  if (result.connected && (rest.includes("--open") || !rest.includes("--no-open"))) {
326
- openUrl("https://app.getprismo.dev/dashboard/dev");
326
+ openUrl("https://getprismo.dev/dashboard/dev");
327
327
  }
328
328
  if (json) console.log(JSON.stringify(result, null, 2));
329
329
  else console.log(renderConnectTerminal(result));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getprismo",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "description": "Local AI coding workflow scanner for Codex, Claude Code, Cursor, and token-waste diagnostics.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/shanirsh/prismodev#readme",