@jxtools/atlas 3.0.0 → 3.1.1

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 CHANGED
@@ -5,6 +5,18 @@ 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.1] - 2026-02-14
9
+
10
+ ### Fixed
11
+ - **Provenance publishing**: Restored `repository.url` required by NPM provenance verification
12
+
13
+ ## [3.1.0] - 2026-02-14
14
+
15
+ ### Changed
16
+ - **CI: Trusted Publishing**: NPM publish via OIDC (no tokens needed)
17
+ - **Removed homepage link** from NPM package page
18
+ - **README**: Install and Update sections together at the top
19
+
8
20
  ## [3.0.0] - 2026-02-13
9
21
 
10
22
  ### 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
+ npm update -g @jxtools/atlas
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.0.0"
17
+ ATLAS_VERSION="3.1.1"
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.0.0",
3
+ "version": "3.1.1",
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": "git+https://github.com/juancruzrossi/atlas.git"
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": {