mindvest-atlas 0.4.1 → 0.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindvest-atlas",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Atlas CLI \u2014 OAuth login, tool calls, and live alert/flow streaming for the Atlas trading API",
5
5
  "type": "module",
6
6
  "bin": {
@@ -126,7 +126,8 @@ export async function remoteControlCommand(args) {
126
126
  eprintln(color.dim(`${computerName()} — Atlas can run jobs here. Workspace: ${workspaceRoot(root)}`));
127
127
  eprintln(color.dim('Nothing runs while this is closed. Ctrl-C to stop.'));
128
128
 
129
- return runStream(API.remoteJobs, {
129
+ const jobsPath = `${API.remoteJobs}?computer=${encodeURIComponent(computerName())}`;
130
+ return runStream(jobsPath, {
130
131
  label: 'remote-control',
131
132
  reconnect: flags.reconnect !== false,
132
133
  // On (re)connect, take anything queued while this computer was away. The
package/src/config.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import path from 'node:path';
3
3
  import os from 'node:os';
4
4
 
5
- export const VERSION = '0.4.1';
5
+ export const VERSION = '0.4.2';
6
6
  export const DEFAULT_BASE_URL = 'https://atlasmcp.finmanagerai.com';
7
7
  export const DEFAULT_SCOPE = 'atlas broker';
8
8
  export const CLIENT_NAME = 'Atlas CLI';