atris 1.4.4 → 1.4.5
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 +1 -1
- package/bin/atris.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ Takes ~10 minutes. Works for code, product, sales, research—any system.
|
|
|
33
33
|
atris update
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
Updates local files (atris.md, PERSONA.md, GETTING_STARTED.md, agent templates) to latest version from npm package.
|
|
37
37
|
|
|
38
38
|
## Talk to agents
|
|
39
39
|
|
package/bin/atris.js
CHANGED
|
@@ -26,8 +26,7 @@ function showHelp() {
|
|
|
26
26
|
console.log(' visualize - Break down ideas from inbox with 3-4 sentences + ASCII diagram');
|
|
27
27
|
console.log(' log - View or append to today\'s log');
|
|
28
28
|
console.log(' log sync - Sync today\'s log to Atris journal');
|
|
29
|
-
console.log(' update - Update local
|
|
30
|
-
console.log(' sync - Alias for update');
|
|
29
|
+
console.log(' update - Update local files from package to latest version');
|
|
31
30
|
console.log(' version - Show ATRIS version');
|
|
32
31
|
console.log(' login - Authenticate with AtrisOS (optional, enables cloud sync)');
|
|
33
32
|
console.log(' logout - Remove stored credentials');
|
|
@@ -59,7 +58,7 @@ if (command === 'init') {
|
|
|
59
58
|
}
|
|
60
59
|
} else if (command === 'activate') {
|
|
61
60
|
activateAtris();
|
|
62
|
-
} else if (command === 'update'
|
|
61
|
+
} else if (command === 'update') {
|
|
63
62
|
syncAtris();
|
|
64
63
|
} else if (command === 'chat') {
|
|
65
64
|
chatAtris()
|