@atlas-coder/atlas-agent 0.1.0 → 0.1.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/README.md +6 -6
- package/bin/atlas-coder.js +1 -1
- package/package.json +2 -2
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Atlas Agent — terminal-first AI coding assistant.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install -g @atlas-coder/atlas-agent
|
|
9
|
-
atlas-
|
|
9
|
+
atlas-agent
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
On install, the matching native binary for your OS/arch is downloaded from the
|
|
@@ -16,11 +16,11 @@ matches this package version.
|
|
|
16
16
|
## Usage
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
atlas-
|
|
20
|
-
atlas-
|
|
21
|
-
atlas-
|
|
22
|
-
atlas-
|
|
23
|
-
atlas-
|
|
19
|
+
atlas-agent # interactive mode
|
|
20
|
+
atlas-agent run "your task" # non-interactive
|
|
21
|
+
atlas-agent --help # CLI help
|
|
22
|
+
atlas-agent models # list models
|
|
23
|
+
atlas-agent dirs # show config paths
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Supported platforms
|
package/bin/atlas-coder.js
CHANGED
|
@@ -10,7 +10,7 @@ function binaryPath() {
|
|
|
10
10
|
const platform = PLATFORM_MAP[process.platform] || process.platform;
|
|
11
11
|
const arch = process.arch;
|
|
12
12
|
const ext = process.platform === 'win32' ? '.exe' : '';
|
|
13
|
-
const name = `atlas-
|
|
13
|
+
const name = `atlas-agent-${platform}-${arch}${ext}`;
|
|
14
14
|
return path.join(__dirname, '..', 'bin', name);
|
|
15
15
|
}
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlas-coder/atlas-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Atlas Agent — terminal-first AI coding assistant. Downloads the native binary on install.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
7
7
|
"preferGlobal": true,
|
|
8
8
|
"bin": {
|
|
9
|
-
"atlas-
|
|
9
|
+
"atlas-agent": "bin/atlas-coder.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"bin/",
|
package/scripts/postinstall.js
CHANGED
|
@@ -9,7 +9,7 @@ const PLATFORM_MAP = { win32: 'windows', darwin: 'darwin', linux: 'linux' };
|
|
|
9
9
|
const platform = PLATFORM_MAP[process.platform] || process.platform;
|
|
10
10
|
const arch = process.arch; // 'x64' | 'arm64'
|
|
11
11
|
const ext = process.platform === 'win32' ? '.exe' : '';
|
|
12
|
-
const assetName = `atlas-
|
|
12
|
+
const assetName = `atlas-agent-${platform}-${arch}${ext}`;
|
|
13
13
|
|
|
14
14
|
const REPO = 'Omerfaruk-aydn/Atlas-Agent';
|
|
15
15
|
const VERSION = require('../package.json').version;
|