vestauth 0.5.1 → 0.5.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/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/vestauth/vestauth/compare/v0.5.0...main)
5
+ [Unreleased](https://github.com/vestauth/vestauth/compare/v0.5.2...main)
6
+
7
+ ## [0.5.2](https://github.com/vestauth/vestauth/compare/v0.5.0...v0.5.2) (2026-02-02)
8
+
9
+ ### Changed
10
+
11
+ * Add detail when no changes for `vestauth agent init`
6
12
 
7
13
  ## [0.5.0](https://github.com/vestauth/vestauth/compare/v0.4.9...v0.5.0) (2026-02-02)
8
14
 
package/README.md CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
  * identity
6
6
  * authentication
7
- * messaging (coming soon)
8
7
 
9
8
   
10
9
 
@@ -12,6 +11,9 @@
12
11
 
13
12
  ```sh
14
13
  curl -sfS https://vestauth.sh | sh
14
+ ```
15
+
16
+ ```sh
15
17
  vestauth agent init
16
18
  vestauth agent curl https://api.vestauth.com/whoami
17
19
  ```
@@ -30,7 +32,23 @@ npm install vestauth --save
30
32
 
31
33
  </details>
32
34
 
33
- ## Technical
35
+ ## Identity
36
+
37
+ ```sh
38
+ $ vestauth agent init
39
+ ✔ agent created (.env/AGENT_ID=agent-8eb8c03412069a1de525fc9b)
40
+ ⮕ next run: [vestauth agent curl https://api.vestauth.com/whoami]
41
+ ```
42
+
43
+ ## Authentication
44
+
45
+ ```sh
46
+ $ vestauth provider verify GET https://api.vestauth.com/whoami
47
+ TODO
48
+ ```
49
+
50
+ ## More Details
34
51
 
35
52
  * `vestauth` implements [RFC 9421 HTTP Message Signatures](https://datatracker.ietf.org/doc/rfc9421/)
36
53
  * `vestauth` implements [Web-Bot-Auth](https://datatracker.ietf.org/doc/html/draft-meunier-web-bot-auth-architecture)
54
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vestauth",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "auth for agents–from the creator of dotenvx",
5
5
  "keywords": [
6
6
  "vestauth"
@@ -11,10 +11,10 @@ async function init () {
11
11
  if (output.isNew) {
12
12
  logger.success(`✔ agent created (${output.path}/AGENT_ID=${output.AGENT_ID})`)
13
13
  } else {
14
- logger.info(`agent exists (${output.path}/AGENT_ID=${output.AGENT_ID})`)
14
+ logger.info(`• agent exists (${output.path}/AGENT_ID=${output.AGENT_ID})`)
15
15
  }
16
16
 
17
- logger.help('⮕ next run: [vestauth agent curl https://api.vestauth.com/whoami]')
17
+ logger.help('⮕ next run: [vestauth agent curl https://api.vestauth.com/whoami]')
18
18
  }
19
19
 
20
20
  module.exports = init