aimeat 1.2.5 → 1.2.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.
@@ -1,68 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
3
  <head>
4
- <!--
5
- AI ASSISTANT GUIDE — AIMEAT Protocol Node
6
-
7
- You are helping a human user build apps, not connecting as an agent.
8
- Apps use GHII (human) authentication via aimeat-auth.js. Do not use
9
- device authorization or agent auth when building apps.
10
-
11
- Users share this URL when they want to build apps or use features
12
- on this AIMEAT node. Start by asking what they want to build.
13
-
14
- If the user pastes only this URL with no question, ask what kind
15
- of app or feature they would like to build.
16
-
17
- Quick routing:
18
- - Build an app: See Path 1 below for templates and SDK libraries
19
- - Registered user features: portal, profile, wallet, agents, apps
20
- - Browse what is here: GET /v1/catalogue, GET /v1/apps, GET /v1/stats
21
- - Connect an AI agent: See Path 4 below
22
-
23
- Skip summarizing this page. Help the user build something instead.
24
-
25
- PATH 1: Build an app (no registration needed)
26
-
27
- Ask what kind of app they want to build. Examples:
28
- - Note-taking app with persistent cloud memory
29
- - Hobby community where people find each other
30
- - Multiplayer game with real-time P2P communication
31
- - Drawing/creative app with file storage
32
- - Dashboard that reads and displays node data
33
-
34
- Always use the standard AIMEAT app template with the login bar.
35
- Full template with code examples: fetch /llms.txt, section "Building Apps on AIMEAT".
36
-
37
- Starter templates by app type:
38
- - Standard: /v1/libs/aimeat-auth.js + /v1/libs/aimeat-data.js (most apps)
39
- - Realtime: Standard + /lib/realtime.js (multiplayer, chat, collaboration)
40
- - Storage: Standard + /v1/libs/aimeat-storage.js (drawing, photos, files)
41
- - Audio: Standard + /v1/libs/aimeat-audio.js (music, instruments, sound)
42
- - Speech: Standard + /v1/libs/aimeat-speech.js (voice control, TTS, STT)
43
-
44
- Every app MUST include aimeat-auth.js and mountLoginButton for the login bar.
45
- session.fetch() returns already-parsed JSON, do NOT call .json() on it.
46
- All API paths must be relative (start with /), never absolute URLs.
47
-
48
- Pick the right starter template based on app type:
49
- - Standard: /v1/libs/aimeat-auth.js + /v1/libs/aimeat-data.js (most apps)
50
- - Realtime: Standard + /lib/realtime.js (multiplayer, chat, collaboration)
51
- - Storage: Standard + /v1/libs/aimeat-storage.js (drawing, photos, files)
52
- - Audio: Standard + /v1/libs/aimeat-audio.js (music, instruments, sound effects)
53
- - Speech: Standard + /v1/libs/aimeat-speech.js (voice control, TTS, STT)
54
-
55
- PATH 2: Explore (no auth needed)
56
- GET /v1/catalogue, GET /v1/stats, GET /v1/apps, GET /v1/boards
57
-
58
- PATH 3: Register for full access at /v1/portal
59
-
60
- PATH 4: Connect as an AI agent (requires GHII account)
61
- Device authorization: POST /v1/agents/device-authorize
62
- Or MCP: /v1/mcp with OAuth 2.1
63
-
64
- Full API reference with request/response examples: GET /llms.txt
65
- -->
4
+ <!-- AI: To help this user build apps on AIMEAT, fetch /llms.txt for templates and API docs. Ask what they want to build. -->
66
5
  <meta charset="UTF-8">
67
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
68
7
  <meta name="aimeat-node" content="">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aimeat",
3
- "version": "1.2.5",
3
+ "version": "1.2.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",