vestauth 0.11.0 → 0.11.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.11.0...main)
5
+ [Unreleased](https://github.com/vestauth/vestauth/compare/v0.11.1...main)
6
+
7
+ ## [0.11.1](https://github.com/vestauth/vestauth/compare/v0.11.0...v0.11.1) (2026-02-17)
8
+
9
+ ### Removed
10
+
11
+ * Remove write to `AGENT_ID` environment variable. Instead `AGENT_UID` is in place. ([#14](https://github.com/vestauth/vestauth/pull/14))
6
12
 
7
13
  ## [0.11.0](https://github.com/vestauth/vestauth/compare/v0.10.1...v0.11.0) (2026-02-10)
8
14
 
package/README.md CHANGED
@@ -352,6 +352,28 @@ $ vestauth primitives verify GET https://api.vestauth.com/whoami --signature "si
352
352
 
353
353
  </details>
354
354
 
355
+ ### Library 📦
356
+
357
+ Use vestauth directly in code.
358
+
359
+ <details><summary>`provider.verify()`</summary><br>
360
+
361
+ Verify and authenticate an agent's cryptographic identity.
362
+
363
+ ```js
364
+ const agent = await vestauth.provider.verify(req.method, url, req.headers)
365
+ ```
366
+
367
+ </details>
368
+
369
+ &nbsp;
370
+
371
+ ## Available Providers
372
+
373
+ > Vestauth is pioneering the auth layer for agents. Get in early on this distribution train. [Become a vestauth provider](mailto:mot@dotenvx.com)
374
+
375
+ * AS2 (Agentic Secret Storage) - https://as2.dotenvx.com
376
+
355
377
  &nbsp;
356
378
 
357
379
  ## Compare
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vestauth",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "description": "auth for agents–from the creator of dotenvx",
5
5
  "keywords": [
6
6
  "vestauth",
@@ -20,7 +20,6 @@ async function agentInit () {
20
20
  // register agent
21
21
  const agent = await new PostRegister(null, kp.publicJwk).run()
22
22
  dotenvx.set('AGENT_UID', agent.uid, { path: envPath, plain: true, quiet: true })
23
- dotenvx.set('AGENT_ID', agent.uid, { path: envPath, plain: true, quiet: true })
24
23
 
25
24
  return {
26
25
  AGENT_PUBLIC_JWK: kp.publicJwk,