aimeat 1.3.5 → 1.3.6

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 +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -260,10 +260,12 @@ Each node runs independently with its own identity and portal. Operators customi
260
260
 
261
261
  ### Quick start with npx
262
262
 
263
- Requires Node.js 24+. This runs the server directly without cloning:
263
+ Requires Node.js 24+. Runs without cloning the repo:
264
264
 
265
265
  ```bash
266
- npx aimeat start
266
+ npx aimeat init # interactive setup, generates .env
267
+ npx aimeat start # start the server
268
+ npx aimeat seed # seed example packages (in another terminal, server must be running)
267
269
  ```
268
270
 
269
271
  ### From source
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aimeat",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "AIME AT - AI Memory Exchange and Action Transfer - reference implementation",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",