@jxtools/atlas 3.0.0 → 3.1.3
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/CHANGELOG.md +18 -0
- package/README.md +6 -8
- package/atlas.sh +1 -1
- package/package.json +2 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.1.3] - 2026-02-14
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **CI pipeline stabilized**: Trusted Publishing requires `repository.url` and `--provenance`; both restored
|
|
12
|
+
- **README Update section**: Show `atlas update` instead of raw npm command
|
|
13
|
+
|
|
14
|
+
## [3.1.1] - 2026-02-14
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **Provenance publishing**: Restored `repository.url` required by NPM provenance verification
|
|
18
|
+
|
|
19
|
+
## [3.1.0] - 2026-02-14
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- **CI: Trusted Publishing**: NPM publish via OIDC (no tokens needed)
|
|
23
|
+
- **Removed homepage link** from NPM package page
|
|
24
|
+
- **README**: Install and Update sections together at the top
|
|
25
|
+
|
|
8
26
|
## [3.0.0] - 2026-02-13
|
|
9
27
|
|
|
10
28
|
### Changed
|
package/README.md
CHANGED
|
@@ -28,6 +28,12 @@ Atlas is an **A**utonomous **T**ask **L**oop **A**gent **S**ystem that processes
|
|
|
28
28
|
npm install -g @jxtools/atlas
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
## Update
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
atlas update
|
|
35
|
+
```
|
|
36
|
+
|
|
31
37
|
### Requirements
|
|
32
38
|
|
|
33
39
|
- **Node.js 18+** (for npm installation)
|
|
@@ -267,14 +273,6 @@ Atlas reads CLAUDE.md before each task.
|
|
|
267
273
|
|
|
268
274
|
---
|
|
269
275
|
|
|
270
|
-
## Update
|
|
271
|
-
|
|
272
|
-
```bash
|
|
273
|
-
npm update -g @jxtools/atlas
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
---
|
|
277
|
-
|
|
278
276
|
## License
|
|
279
277
|
|
|
280
278
|
ISC
|
package/atlas.sh
CHANGED
|
@@ -14,7 +14,7 @@ PROJECT_NAME="$(basename "$PROJECT_DIR")"
|
|
|
14
14
|
NOTIFY_TELEGRAM="${ATLAS_NOTIFY_TELEGRAM:-true}"
|
|
15
15
|
|
|
16
16
|
# Atlas version
|
|
17
|
-
ATLAS_VERSION="3.
|
|
17
|
+
ATLAS_VERSION="3.1.3"
|
|
18
18
|
|
|
19
19
|
# AI Provider configuration (claudecode | opencode | codex)
|
|
20
20
|
# Priority: --cli flag > ATLAS_CLI env var > default (claudecode)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jxtools/atlas",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "Autonomous Task Loop Agent System - automates task processing using AI coding agents",
|
|
5
5
|
"bin": {
|
|
6
6
|
"atlas": "atlas.sh"
|
|
@@ -37,11 +37,7 @@
|
|
|
37
37
|
],
|
|
38
38
|
"repository": {
|
|
39
39
|
"type": "git",
|
|
40
|
-
"url": "
|
|
41
|
-
},
|
|
42
|
-
"homepage": "https://github.com/juancruzrossi/atlas#readme",
|
|
43
|
-
"bugs": {
|
|
44
|
-
"url": "https://github.com/juancruzrossi/atlas/issues"
|
|
40
|
+
"url": "https://github.com/juancruzrossi/atlas"
|
|
45
41
|
},
|
|
46
42
|
"license": "ISC",
|
|
47
43
|
"engines": {
|