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 +1 -1
- package/src/commands/remote-control.js +2 -1
- package/src/config.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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.
|
|
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';
|