create-agent 0.0.13 → 0.0.14

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 +30 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,9 @@
6
6
 
7
7
  > **Your AI agent has no identity.** It can't prove who it is. It can't sign anything. It can't be trusted.
8
8
 
9
- Instantly generates a cryptographic identity with a [W3C DID document](https://www.w3.org/TR/did-core/) — the emerging standard for autonomous agent identity.
9
+ Instantly generates a cryptographic identity with a [W3C DID document](https://www.w3.org/TR/did-core/) — the foundation for **safe AI agents you can trust**.
10
+
11
+ Use with [aam](https://aam.wtf) to sign and verify skills and agents.
10
12
 
11
13
  ---
12
14
 
@@ -146,6 +148,7 @@ fe70102<pubkey>
146
148
 
147
149
  | Application | Description |
148
150
  |-------------|-------------|
151
+ | **Sign Skills & Agents** | Cryptographically sign AI skills with [aam](https://aam.wtf) |
149
152
  | **AI Agents** | Verifiable identity for autonomous systems |
150
153
  | **Nostr Bots** | Generate keypairs for automated accounts |
151
154
  | **Testing** | Create ephemeral identities for integration tests |
@@ -165,6 +168,31 @@ The CLI outputs private keys to `stderr` only, allowing safe piping of the DID d
165
168
 
166
169
  ---
167
170
 
171
+ ## Next Steps: Sign Your Agents
172
+
173
+ Use your identity to sign skills and agents with [aam](https://aam.wtf):
174
+
175
+ ```bash
176
+ # 1. Generate your identity
177
+ npm init agent
178
+ # Save your privkey (hex format)
179
+
180
+ # 2. Install aam
181
+ npm install -g aam
182
+
183
+ # 3. Sign a skill you've created
184
+ aam skill sign my-skill --privkey <your-privkey> --repo user/repo
185
+
186
+ # 4. Others can verify your signature
187
+ aam skill verify my-skill
188
+ ```
189
+
190
+ This creates a **Nostr event (kind 31337)** cryptographically linking your identity to the skill. No black boxes. No hidden motives. Trust through transparency.
191
+
192
+ Learn more at [aam.wtf](https://aam.wtf)
193
+
194
+ ---
195
+
168
196
  ## Specification
169
197
 
170
198
  This implementation follows the [did:nostr Method Specification](https://nostrcg.github.io/did-nostr/) maintained by the [W3C Nostr Community Group](https://www.w3.org/community/nostr/).
@@ -173,6 +201,7 @@ This implementation follows the [did:nostr Method Specification](https://nostrcg
173
201
 
174
202
  ## Related
175
203
 
204
+ - [aam](https://aam.wtf) — Sign and verify AI skills and agents
176
205
  - [did:nostr Specification](https://nostrcg.github.io/did-nostr/)
177
206
  - [DID:nostr Explorer](https://nostrapps.github.io/did-explorer/)
178
207
  - [nostr-tools](https://github.com/nbd-wtf/nostr-tools)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-agent",
3
3
  "type": "module",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "description": "create an agent",
6
6
  "scripts": {
7
7
  "test": "node --test"