atp-sdk 1.2.2 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,16 +30,20 @@ npm install atp-sdk
30
30
 
31
31
  ```typescript
32
32
  import { Agent } from 'atp-sdk';
33
- await Agent.quickstart('MyBot');
33
+ const agent = await Agent.quickstart('MyBot');
34
+ console.log('Standalone:', agent.isStandalone());
34
35
  // ⚡ MyBot ready!
35
36
  // DID: did:atp:a1b2c3...
36
37
  // Quantum-safe: yes
37
- // Mode: standalone (local)
38
+ // Standalone: true
38
39
  ```
39
40
 
40
41
  One line. Auto-prints DID, quantum-safe status, and connection mode. Need the agent reference? Use `const agent = await Agent.quickstart('MyBot')`. Need silent creation for library use? Use `Agent.create('MyBot')` instead.
41
42
 
42
43
  **That's it!** Your agent now has:
44
+
45
+ > 📌 Image guidance: any screenshots, badges, or marketing assets should feature the ATP shield logo for consistent branding.
46
+
43
47
  - ✅ Quantum-safe cryptography (hybrid Ed25519 + ML-DSA)
44
48
  - ✅ Decentralized Identity (DID)
45
49
  - ✅ Cryptographic signatures
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atp-sdk",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Official TypeScript SDK for Agent Trust Protocol™ - Build secure, verifiable, and trustworthy applications with decentralized identity, verifiable credentials, payment protocols (AP2/ACP), and robust access control",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",