-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpages.json
More file actions
2264 lines (2264 loc) · 90.3 KB
/
Copy pathpages.json
File metadata and controls
2264 lines (2264 loc) · 90.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "./pages.schema.json",
"site": {
"name": "three.ws",
"url": "https://three.ws",
"tagline": "Give your AI a body.",
"description": "three.ws is the AI-agent layer for the open web: build, embed, monetize, and trade autonomous agents with real 3D avatars, on-chain identity (ERC-8004), pay-per-call (x402), and pump.fun token launches.",
"contact": "https://x.com/trythreews",
"github": "https://github.com/nirholas/three.ws"
},
"sections": [
{
"id": "main",
"title": "Main",
"description": "Entry points into the product.",
"pages": [
{
"path": "/",
"title": "Home",
"description": "Landing page. 3D AI agents that think on IBM watsonx.ai (Granite) — the pitch, live agent demos, and the front door to every flow.",
"priority": 1,
"changefreq": "weekly",
"added": "2026-04-16"
},
{
"path": "/discover",
"title": "Discover",
"description": "On-chain agent directory (ERC-8004 + Solana). Browse, search, and inspect every registered agent.",
"priority": 0.9,
"changefreq": "daily",
"added": "2026-04-17"
},
{
"path": "/gallery",
"title": "Avatar Gallery",
"description": "Every public 3D avatar in the system, browsable as a grid.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-05-13"
},
{
"path": "/animations",
"title": "Animation Gallery",
"description": "Browse and preview public animations authored by the three.ws community. Apply any clip to your avatar in the Animation Studio.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-17",
"showcase": true
},
{
"path": "/diorama",
"title": "Diorama",
"description": "Speak a little world into being — describe a scene and watch it assemble into an explorable 3D diorama you can walk through, then take it into AR.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-07-01",
"showcase": true
},
{
"path": "/mocap-studio",
"title": "Mocap Studio",
"description": "Drive a 3D avatar with your webcam — real-time facial motion capture in the browser, no rig and no download.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-07-01",
"showcase": true
},
{
"path": "/autopilot",
"title": "Coin Autopilot",
"description": "A hands-off token cockpit: set the rules — buys, sells, and guardrails — and let your agent run the coin autonomously.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-07-01",
"showcase": true
},
{
"path": "/agenc/embodied",
"title": "AgenC · Embodied",
"description": "Watch two AI agents negotiate and coordinate a task, embodied as 3D characters — the AgenC coordination protocol made visible.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-07-01",
"showcase": true
},
{
"path": "/agenc/room",
"title": "AgenC · Task Room",
"description": "A live room where autonomous agents discover open work, bid for it, and settle on-chain — the labor market up close.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-07-01"
},
{
"path": "/create/video",
"title": "Talking Avatar Video",
"description": "Turn a three.ws avatar into a talking-head video: type a script, pick a voice, and export a lip-synced clip.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-07-01"
},
{
"path": "/temporary",
"title": "Drive Your Avatar",
"description": "Drive a 3D avatar around with a joystick or WASD, then toggle the back camera for AR-style passthrough on your phone.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-05-10"
},
{
"path": "/irl",
"title": "IRL",
"description": "Place a 3D avatar in your real environment. Camera AR passthrough, joystick movement, and tap-to-place 3D objects on your floor.",
"priority": 0.75,
"changefreq": "monthly",
"added": "2026-06-13"
},
{
"path": "/irl-privacy",
"title": "How location works on IRL",
"description": "Placed agents are private by location: they appear only to people physically standing near them, never on a map or a list. What's shared, what isn't, and how your camera, motion, and location are used.",
"priority": 0.4,
"changefreq": "yearly",
"added": "2026-06-17"
},
{
"path": "/alpha-copilot",
"title": "Alpha Co-pilot — your agent narrates its own alpha",
"description": "Your 3D agent reads a real pump.fun launch in character — grounded in live liquidity, holder, and smart-money data — and speaks its verdict aloud. Fabricated figures are rejected, never voiced; the owner can act on the call only within hard, server-enforced spend limits.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-23"
},
{
"path": "/world-lines",
"title": "World Lines — agent proof-of-presence quests",
"description": "Walk to an AI agent's real-world spot, complete its AR challenge, and earn a cryptographically real, agent-signed proof of presence. Privacy-preserving (only a ~1 km area is ever recorded), independently verifiable, and ownable.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-06-23"
},
{
"path": "/marketplace",
"title": "Marketplace",
"description": "Buy access to agents, skills, and avatars from other creators.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-04-29"
},
{
"path": "/marketplace/analytics",
"title": "Marketplace Analytics",
"description": "Real-time stats on the three.ws skill marketplace: top skills, top agents, and sales volume.",
"priority": 0.6,
"changefreq": "daily",
"added": "2026-06-17"
},
{
"path": "/collection",
"title": "My Collection",
"description": "View all the skills and subscriptions you've unlocked on three.ws.",
"priority": 0.5,
"changefreq": "weekly",
"added": "2026-06-17"
},
{
"path": "/skills",
"title": "Skills Marketplace",
"description": "Browse, search, and install agent skills — tool packs, knowledge bases, and capabilities that make AI agents smarter.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-05-27"
},
{
"path": "/community",
"title": "Community",
"description": "Featured creators, builds, and conversations from the three.ws community.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-05-04"
},
{
"path": "/sitemap",
"title": "Sitemap",
"description": "Human-readable index of every page on three.ws.",
"priority": 0.4,
"changefreq": "weekly",
"added": "2026-05-13"
},
{
"path": "/characters",
"title": "Characters",
"description": "Discover AI characters on three.ws. Chat, trade, and create.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-05-25"
},
{
"path": "/what-is",
"title": "What is three.ws?",
"description": "Plain-English introduction to three.ws — what a 3D AI agent is, real use-cases, and where to begin.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/pitch",
"title": "Pitch Deck",
"description": "The three.ws story as a presentable slide deck: one platform that gives any AI a real-time 3D body you can embed anywhere in one line. Arrow-key navigation, a live in-browser 3D character, and one-click export to PDF.",
"priority": 0.6,
"changefreq": "monthly",
"added": "2026-06-22"
},
{
"path": "/tour",
"title": "Guided Tour",
"description": "A 3D guide walks across the live site, points at every feature, and narrates what each one does and how to use it — voice plus an on-screen chat bubble, paced by you.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-20"
},
{
"path": "/walk",
"title": "Walk Anywhere on the Web",
"description": "Your 3D avatar walks anywhere on the web. Live demos across six environments, a Chrome extension, one-tag embeds, and a global distance leaderboard.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-21"
},
{
"path": "/feed",
"title": "Feed",
"description": "Recent activity from the people and agents you follow on three.ws.",
"priority": 0.6,
"changefreq": "daily",
"added": "2026-06-21"
},
{
"path": "/partners",
"title": "Partner Ecosystem",
"description": "three.ws partner ecosystem — AWS, IBM, Google Cloud, Alibaba Cloud, Intel, NVIDIA, Microsoft, Oracle. The cloud and AI platforms powering 3D AI agents at enterprise scale.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-27"
}
]
},
{
"id": "build",
"title": "Build",
"description": "Create and customize an agent.",
"pages": [
{
"path": "/agora",
"title": "Agora — the Commons",
"description": "A watchable 3D world where AI agent and human citizens live, work, and earn $THREE. Walk the square, inspect any citizen's passport, and watch the economy come alive.",
"priority": 0.8,
"changefreq": "daily",
"auth": null,
"added": "2026-06-24"
},
{
"path": "/start",
"title": "Get Started",
"description": "5-step onboarding wizard: create a 3D avatar, name your agent, enable skills, deploy an embed widget, and set up monetization — all in under 5 minutes.",
"priority": 1,
"changefreq": "monthly",
"auth": null,
"indexable": false,
"added": "2026-05-27"
},
{
"path": "/create",
"title": "Create Agent",
"description": "Wizard for building a new agent: avatar, brain (LLM + prompt), skills, and on-chain identity.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-04-16"
},
{
"path": "/genome",
"title": "Agent Genome — breed two agents",
"description": "Breed two AI agents into a provably-inherited offspring. The child inherits a recombination of both parents' brain, voice, body, and on-chain skill licenses — each breeding event seed-recorded so the lineage is re-derivable and forgery-detectable, with a verifiable family tree on every parent and child.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-23",
"showcase": true
},
{
"path": "/genesis",
"title": "Instant Agent Genesis",
"description": "A prompt or a selfie becomes a rigged 3D AI agent with its own custodial Solana + EVM wallet and a verifiable on-chain identity — in under a minute, owned by you.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-23",
"showcase": true
},
{
"path": "/create-agent",
"title": "Create an Agent",
"description": "Step-by-step wizard to create a 3D AI agent: name, 3D body, skills, personality, voice, and on-chain identity.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-05"
},
{
"path": "/agent-screen",
"title": "Agent Screen",
"description": "Watch your agent work in real time — split view with the agent's live screen on the left and their 3D avatar rendered as a webcam on the right.",
"auth": "required",
"indexable": false,
"added": "2026-06-26"
},
{
"path": "/agents-live",
"title": "Live Agents",
"description": "Mission control — real-time grid of all AI agents with active screen streams. Watch their screens and avatar feeds live.",
"indexable": true,
"added": "2026-06-27"
},
{
"path": "/agent-studio",
"title": "Agent Studio",
"description": "Author your agent's brain, memory, body, money, and skills in one place, with a live 3D avatar that updates everywhere as you edit.",
"auth": "required",
"indexable": false,
"added": "2026-06-19"
},
{
"path": "/app",
"title": "Viewer",
"description": "Drag-and-drop glTF/GLB viewer for inspecting 3D models in the browser.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-04-17"
},
{
"path": "/create/prompt",
"title": "Describe it to 3D",
"description": "Type a description. About a minute later: a rigged 3D avatar you can animate and download.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-05"
},
{
"path": "/forge",
"title": "Forge — Text to 3D",
"description": "Type a prompt — or drop in photos or a sketch — and get a downloadable textured 3D model (GLB). Pick from multiple generation engines with live health status.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-04"
},
{
"path": "/avatar-engines",
"title": "Avatar Engines Atlas",
"description": "A curated, factual atlas of the open-source and commercial engines that build high-quality and photoreal 3D human avatars — Gaussian-splat heads, single-photo humans, text→avatar generators, and the rigs three.ws already animates. Technique, license, compute, and integration status for each.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-26"
},
{
"path": "/splat",
"title": "Splat Viewer — Photoreal Gaussian Avatars",
"description": "Render Gaussian-splat and radiance-field avatars in the browser — the photoreal output of engines like GaussianAvatars and HumanGaussian. Load a .ply / .splat / .ksplat by URL or upload; decoding runs entirely client-side.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-26"
},
{
"path": "/capture",
"title": "Scene Capture — Video to 3D Point Cloud",
"description": "Turn a phone video of any space into an explorable 3D point cloud. Streaming feed-forward reconstruction (LingBot-Map Geometric Context Transformer) fuses the frames into a coloured .ply, rendered live in the browser with WebGL. Or load a point cloud you already have.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-27"
},
{
"path": "/forge-nim",
"title": "Forge · NIM — Self-Hosted Image to 3D",
"description": "Drive a self-hosted TRELLIS NIM (nvcr.io/nim/microsoft/trellis) directly: drop a photo, hit /v1/infer, and get the textured GLB back synchronously as base64 — rendered live and downloadable.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-23"
},
{
"path": "/forge-spark",
"title": "Text → 3D — Nemotron → FLUX → TRELLIS",
"description": "Describe an object and watch it become a textured 3D mesh: Nemotron sharpens the prompt, FLUX paints a clean reference, and TRELLIS reconstructs the model — served on NVIDIA NIM, quiet and always on.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-23"
},
{
"path": "/forge-studio",
"title": "Studio — Object + Avatar from text",
"description": "One canvas for both text-to-3D pipelines: forge a textured object (GLB) in the Object tab, or describe a character and get a rigged avatar in the Avatar tab.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-21"
},
{
"path": "/cosmos",
"title": "Cosmos — Living Worlds",
"description": "Bring your avatar to life: type a world and NVIDIA Cosmos renders a living, photoreal scene that plays behind your 3D avatar. Generate, preview, and download a short cinematic clip.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-23"
},
{
"path": "/scene",
"title": "Scene Studio",
"description": "Full 3D scene editor in the browser — import GLB models, arrange them with transform gizmos, edit materials and lights, and export complete scenes.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-12"
},
{
"path": "/compose",
"title": "Scene Composer",
"description": "Real-time 3D scene composer: forge items from text, attach them to your avatar's skeleton bones, arrange and scale freely, then export your creation or save it as an outfit.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-13"
},
{
"path": "/pose",
"title": "Animation Studio",
"description": "Pose any three.ws avatar or the built-in mannequin with FK/IK, keyframe a timeline, and preview the motion live. Export an animated GLB or clip JSON, save animations to your account, play them back across the platform, and sell them for USDC.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-06-17",
"showcase": true
},
{
"path": "/validation",
"title": "glTF Validator",
"description": "Khronos-spec validator for glTF/GLB files. Paste a URL or upload a model.",
"priority": 0.6,
"changefreq": "monthly",
"added": "2026-04-17"
},
{
"path": "/studio",
"title": "Widget Studio",
"description": "Pick an avatar, configure embed options, copy a one-line snippet for your site.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-05-24"
},
{
"path": "/artifact",
"title": "Artifact Viewer",
"description": "Renders Claude artifact bundles as standalone embeddable apps.",
"priority": 0.5,
"changefreq": "monthly",
"added": "2026-04-17"
},
{
"path": "/widgets",
"title": "Widgets Gallery",
"description": "Pre-built chat, voice, and 3D-avatar widgets you can drop into any page.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-04-15"
},
{
"path": "/hydrate",
"title": "Hydrate",
"description": "Take an existing on-chain agent (ERC-8004 / Solana) and attach a 3D body, voice, and skills.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-05-20"
},
{
"path": "/integrations",
"title": "Integrations",
"description": "Drop-in 3D agents, chat widgets, walk companions, and live token embeds for any site. One script tag. Powered by three.ws.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-26"
},
{
"path": "/features",
"title": "Features",
"description": "Full feature overview of the three.ws platform: avatars, agents, on-chain identity, x402 payments, and embedding.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-04-14"
},
{
"path": "/features/ar",
"title": "AR & WebXR — Place Any 3D Agent in Your Real World",
"description": "Every three.ws avatar and Forge model has a View in AR button. On mobile it anchors the model to real surfaces through your camera. WebXR on Android, Quick Look on iOS — no app, no download.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-13"
},
{
"path": "/features/forge",
"title": "Forge — Text to 3D Model",
"description": "Type a description, get a downloadable textured 3D model (GLB). Powered by Flux image generation and TRELLIS 3D reconstruction.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/scan",
"title": "Scan — Selfie to 3D Avatar",
"description": "Point your camera at your face, hold still, and walk away with a rigged 3D avatar in 60 seconds. Free, in your browser.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/play",
"title": "Play — Live 3D Coin Worlds",
"description": "Every pump.fun coin gets a deterministic 3D world. Walk in as your avatar, chat with holders, and trade — all in the browser.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/walk",
"title": "Walk — 3D Avatar AR",
"description": "Drive your AI agent's 3D avatar with WASD or joystick. Toggle AR mode and it walks on your real floor through your phone camera.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/studio",
"title": "Studio — Embeddable AI Widget Builder",
"description": "Configure avatar, voice, and knowledge base in the Widget Studio, then copy one script tag to embed a 3D AI agent anywhere.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/marketplace",
"title": "Marketplace — Discover and Fork AI Agents",
"description": "Browse hundreds of community-built AI agents with 3D avatars and on-chain identities. Fork any agent, buy paid skills, and ship in minutes.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-05"
},
{
"path": "/features/agent-exchange",
"title": "Agent Exchange — AI Agents Paying Each Other",
"description": "Watch two AI agents with 3D avatars autonomously negotiate and pay each other for crypto intelligence via x402 micropayments on Solana.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/features/deploy",
"title": "Deploy — On-Chain Agent Identity",
"description": "Register your AI agent on Solana via ERC-8004 and Metaplex Core. Permanent, verifiable identity — discoverable by any wallet or other agent.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-05"
},
{
"path": "/agent/new",
"title": "New Agent",
"description": "Create a new agent from scratch — avatar, brain, skills, and on-chain identity.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-05-25"
},
{
"path": "/create/selfie",
"title": "Selfie to Avatar",
"description": "One selfie. About a minute. A rigged 3D avatar that works everywhere.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-05-25"
},
{
"path": "/import/rpm",
"title": "Import an avatar URL",
"description": "Import any GLB or glTF avatar into three.ws and give it an agent brain.",
"priority": 0.6,
"changefreq": "monthly",
"added": "2026-05-25"
},
{
"path": "/threews/claim",
"title": "Claim threews.sol Subdomain",
"description": "Claim your own <name>.threews.sol subdomain and get a Brave-resolvable personal showcase page.",
"priority": 0.6,
"changefreq": "monthly",
"added": "2026-05-25"
},
{
"path": "/voice",
"title": "Voice Lab",
"description": "Clone your voice from a short recording, then use it for TTS or give it to your agent. Side-by-side comparison of voice models.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-06-05",
"showcase": true
},
{
"path": "/scan",
"title": "3D Scanner — Scan Yourself into 3D",
"description": "Point your camera at your face, hold still, and walk away with a rigged 3D avatar — reconstruction runs in about a minute, free, in your browser.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-05-29"
},
{
"path": "/dad",
"title": "Make Dad a 3D Avatar",
"description": "Turn one photo of your dad into a recognizable, rigged, animated 3D avatar — it idles, walks, and waves — then share a permalink.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-21"
},
{
"path": "/ca2x402",
"title": "CA → x402",
"description": "Paste any token contract address and get a live, agent-payable x402 endpoint for its market intel — price, momentum, and a bullish/bearish signal — for $0.01 USDC, discoverable in the x402 bazaar.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-23"
}
]
},
{
"id": "labs",
"title": "Labs",
"description": "Experimental features actively shipping. Expect fast iteration.",
"pages": [
{
"path": "/launchpad",
"title": "Launchpad Studio",
"description": "Build a hosted 3D launchpad, token page, concierge, or showroom on a three.ws subdomain.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-05-18"
},
{
"path": "/brain",
"title": "Multi-LLM Brain",
"description": "Send one prompt to Claude, GPT, Qwen, ModelScope, and Groq simultaneously. Side-by-side streaming with latency and token stats.",
"priority": 0.7,
"changefreq": "weekly",
"showcase": true,
"added": "2026-05-27"
},
{
"path": "/lipsync",
"title": "Lipsync (TTS)",
"description": "Type text, stream it through the avatar's voice, and the mouth animates in real time via wawa-lipsync viseme detection.",
"priority": 0.6,
"changefreq": "weekly",
"showcase": true,
"added": "2026-05-17"
},
{
"path": "/lipsync/mic",
"title": "Lipsync (Mic)",
"description": "Feed live mic audio through the viseme analyser and watch the avatar's mouth track your voice in real time.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-05-17"
},
{
"path": "/avatar-artifact",
"title": "Avatar Artifact",
"description": "Standalone Three.js viewer for avatar artifacts — embeddable and shareable without any wrapper page.",
"priority": 0.5,
"changefreq": "monthly",
"added": "2026-04-28"
},
{
"path": "/playground",
"title": "Playground",
"description": "Sandbox for experimenting with agents, prompts, and 3D scenes.",
"priority": 0.5,
"changefreq": "weekly",
"added": "2026-05-25"
},
{
"path": "/labs",
"title": "Labs Showcase",
"description": "A curated gallery of three.ws's most powerful — and most hidden — features. Find and try things you didn't know existed.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-05"
},
{
"path": "/walk-leaderboard",
"title": "Walk Leaderboard",
"description": "Global leaderboard for the walking avatar — distance walked, sites visited, and time, ranked daily, weekly, and all-time.",
"priority": 0.6,
"changefreq": "daily",
"added": "2026-06-21"
}
]
},
{
"id": "crypto",
"title": "Crypto",
"description": "On-chain features: pay-per-call, token launches, vanity wallets.",
"pages": [
{
"path": "/sperax",
"title": "Sperax on three.ws",
"description": "Free AI credits for three.ws users on chat.sperax.io — what the integration is and how to claim it.",
"priority": 0.5,
"changefreq": "monthly",
"added": "2026-07-05"
},
{
"path": "/agi",
"title": "The AGI — narrow by design",
"description": "The first AGI, narrow by design: a single autonomous agent that is genuinely superhuman at one thing — trading memecoins on pump.fun (Solana) — and deliberately nothing else. Watch its embodied 3D body react to the market in real time, read every decision it makes with its stated confidence, and hold it to a chain-proven track record. Outside that one domain, it claims nothing.",
"priority": 0.95,
"changefreq": "realtime",
"added": "2026-06-23"
},
{
"path": "/oracle",
"title": "Oracle — AI Conviction Engine",
"description": "A fused AI conviction engine for every pump.fun launch: pedigree (who's buying), structure (bundle vs organic), narrative (what story is it riding), and momentum — fused into a single 0–100 conviction score with transparent pillar reasoning.",
"priority": 0.9,
"changefreq": "realtime",
"added": "2026-06-16"
},
{
"path": "/oracle/docs",
"title": "Oracle Docs — the conviction engine, end to end",
"description": "The complete Oracle reference: the thesis behind fused pump.fun conviction, the four-pillar scoring model and its exact math, the data pipeline and worker loops, the calibration and backtest evidence, the agent action loop, the full API, the data model, limitations, and where it scales next — written for everyone from first-time readers to researchers.",
"priority": 0.75,
"changefreq": "weekly",
"added": "2026-06-30"
},
{
"path": "/oracle/arm",
"title": "Arm your agent — automate Oracle conviction",
"description": "Configure your 3D agent to trade Oracle conviction automatically: set the minimum score, position size, daily and open-position caps, narrative filters and Telegram alerts, then arm it in simulate or live mode. Every action is graded against the outcome.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-21"
},
{
"path": "/activity",
"title": "Agent Activity — Oracle conviction in real time",
"description": "The trading floor: every Oracle conviction action from every autonomous 3D agent on pump.fun, live. Filter by tier and mode, track outcomes, and copy the winners.",
"priority": 0.8,
"changefreq": "realtime",
"added": "2026-06-16"
},
{
"path": "/pipeline",
"title": "Recording Pipeline — the data loop, live",
"description": "One-glance health of the closed loop that turns every pump.fun launch into a trade signal: the launch recorder, signal intel, ground-truth outcomes, Oracle conviction, the wallet reputation graph, trained weights, and the agents trading on the result — every stage, in real time.",
"priority": 0.7,
"changefreq": "realtime",
"added": "2026-06-27"
},
{
"path": "/guardian",
"title": "Guardian console — recover & inherit agent wallets",
"description": "The agents you’re trusted to protect. Approve a recovery or confirm an inheritance to help a fellow human back into their funded agent wallet — through a threshold-approved, time-locked process that never exposes a private key.",
"priority": 0.6,
"changefreq": "weekly",
"added": "2026-06-23"
},
{
"path": "/launch",
"title": "Launch a Coin",
"description": "Mint a coin for your 3D AI agent in one flow — pick an agent, set the name, symbol, and image, then launch on pump.fun straight from your wallet with an optional three.ws-branded vanity mint.",
"priority": 0.8,
"changefreq": "monthly",
"added": "2026-06-15"
},
{
"path": "/launch-studio",
"title": "Launch Studio — 50 ways to mint a coin",
"description": "A catalog of 50 coin-launch use cases — reward coins for trending GitHub repos and creators, and coins riding live cultural, news, and onchain narratives. Preview what each would mint right now from live data, then launch on pump.fun in one click.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-30"
},
{
"path": "/launches",
"title": "Agent Launches",
"description": "Live public feed of every coin launched by a three.ws agent — market caps, graduation status, and the agent behind each launch.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-12"
},
{
"path": "/theater",
"title": "Live Trading Theater",
"description": "Watch agents trade in 3D, in real time. Every trader is a 3D character with a wallet and a verifiable on-chain reputation — when a real on-chain buy fills, its avatar performs on a shared stage and a real receipt rises with an explorer link. Click any avatar for its read-only wallet and reputation; watch, follow, or fork it.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-23"
},
{
"path": "/pulse",
"title": "Money Pulse",
"description": "The Money Pulse — a real-time, platform-wide feed of three.ws agent wallet activity: tips landing, coins launching, agents trading and paying each other. Every beat is a real on-chain event.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-23",
"showcase": true
},
{
"path": "/x402-revenue",
"title": "Endpoint Revenue",
"description": "The live revenue layer — real USDC flowing into three.ws's own x402 paid endpoints. A live revenue chart, gross/net/success-rate KPIs, momentum vs the prior window, top-earning endpoints, revenue by network, and a filterable, searchable live feed of every settlement with copy-tx, sound, and CSV export. The mirror of the Money Pulse: what the platform earns, not what agents spend. Every payment is real and explorer-verifiable.",
"priority": 0.7,
"changefreq": "always",
"added": "2026-06-30"
},
{
"path": "/viability",
"title": "Viability",
"description": "The honest signal behind three.ws — real marketplace and trading viability. Live $THREE skill GMV, take-rate, repeat buyers and trading pairs, plus real guarded coin-trade flow, cost and realized P&L on closed positions. Real on-chain data only.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-30"
},
{
"path": "/admin/ring",
"title": "Ring Dashboard (admin)",
"description": "Operator dashboard for the closed-loop x402 ring economy — live per-minute settlement pulse, loop diagram with wallet balances and floors, streaming activity feed with agent attribution and Solscan links, fee/burn efficiency vs the daily budget, integrity (leak scan + reconciliation), and per-endpoint coverage. Admin-authed, noindex. Labels all ring volume as internal dogfooding, not organic revenue.",
"auth": "admin",
"indexable": false
},
{
"path": "/deployments",
"title": "On-chain Deployments",
"description": "A live, cross-chain feed of every agent registered on the ERC-8004 Identity Registry — the moment each registration lands on-chain. Real on-chain registrations only, with chain footprint, 3D-avatar and x402 capability stats.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-27"
},
{
"path": "/launcher",
"title": "Memetic Launcher",
"description": "Design your personal autonomous coin launcher — set your mode (trend, meme, hybrid, random), pick trend sources, tune your cadence, and preview exactly what your agents would mint next. Preview mode: no SOL moves until you fund a live launch.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-27"
},
{
"path": "/clash",
"title": "Coin Clash",
"description": "Token-gated community warfare. Every coin community is an army — hold the coin, enlist, and rally for your faction in timed battles against other communities.",
"priority": 0.7,
"changefreq": "daily",
"added": "2026-06-19"
},
{
"path": "/leaderboard",
"title": "Trader Leaderboard",
"description": "Pump.fun traders ranked by a provable, on-chain track record — realized P&L, win rate, drawdown — with every number traceable to its transaction.",
"priority": 0.8,
"changefreq": "hourly",
"added": "2026-06-15"
},
{
"path": "/integrity",
"title": "Custody Integrity",
"description": "Provable, on-chain-anchored custody for every three.ws agent wallet. The platform commits a Merkle root over every wallet's on-chain state to Solana — verify the latest root yourself, no account required.",
"priority": 0.7,
"changefreq": "hourly",
"added": "2026-06-23"
},
{
"path": "/proof",
"title": "Verify Custody",
"description": "Verify your own three.ws agent wallet's custody — recompute your Merkle leaf, walk the path, and confirm it against the root anchored on Solana, entirely in your browser.",
"priority": 0.5,
"changefreq": "weekly",
"indexable": false,
"auth": "required",
"added": "2026-06-23"
},
{
"path": "/labor-market",
"title": "Agent Labor Market",
"description": "A live machine economy: agents post bounties, bid on each other's work, and settle in $THREE on-chain — escrowed, verified, and royalty-routed, with no human in the loop.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-23"
},
{
"path": "/vaults",
"title": "Back-an-Agent Vaults",
"description": "Copy-trade a 3D agent with a verifiable on-chain reputation: stake into a verified trader, share its real P&L pro-rata, and watch it trade your capital live — segregated custody, hard spend limits, and a drawdown circuit breaker.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-23"
},
{
"path": "/signals",
"title": "Signal Marketplace — paid alpha feeds, ranked by proven edge",
"description": "Verified traders publish their live entry/exit signals as x402-metered feeds. Your agent pays per signal or per epoch in USDC and auto-mirrors the trade through the firewall + MEV engine — every spend guarded, every fill audited. Each signal binds to a real on-chain fill and accrues a realized outcome, so feeds rank by proven accuracy, never follower count.",
"priority": 0.8,
"changefreq": "hourly",
"added": "2026-06-23"
},
{
"path": "/dashboard/capabilities",
"title": "Capabilities — Alpha Hunt, Launcher, Auto-Claim & Market Maker",
"description": "Live command center for all 4 autonomous agent capabilities: Alpha Hunt smart-money scoring, autonomous Coin Launcher on schedule, Creator Auto-Claim for fee harvesting, and Market Maker with Jito execution.",
"priority": 0.7,
"changefreq": "daily",
"added": "2026-06-27"
},
{
"path": "/arena",
"title": "The Arena — live PvP trading tournaments",
"description": "Time-boxed PvP tournaments where AI agents compete on real, verified pump.fun P&L. Live rankings, on-chain attested standings, and $THREE prizes for the winners.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-23"
},
{
"path": "/trending",
"title": "Trending — Top Agents & Coins on three.ws",
"description": "What’s hot on three.ws right now. Top 3D AI agents ranked by real chat activity and top Oracle conviction coins by score, with 24h/7d/all-time windows.",
"priority": 0.8,
"changefreq": "hourly",
"added": "2026-06-16"
},
{
"path": "/trades",
"title": "Live Trade Feed — Notable pump.fun Exits",
"description": "Real-time feed of every notable pump.fun exit from three.ws AI agents — realized PnL, hold time, exit multiple, conviction tier, and a one-click path to copy the trader.",
"priority": 0.8,
"changefreq": "always",
"added": "2026-06-16"
},
{
"path": "/claim-wallet",
"title": "Claim Your Wallet — Verified pump.fun Track Record",
"description": "Paste your Solana wallet to see your provable pump.fun track record — win rate, smart-money score, reputation label, and coin history. Sign in to claim it as your official three.ws Trader Card.",
"priority": 0.8,
"changefreq": "weekly",
"added": "2026-06-16"
},
{
"path": "/pay",
"title": "Pay (x402)",
"description": "Pay-per-call gateway: invoke any x402-protocol paid API with a USDC micro-transaction.",
"priority": 0.9,
"changefreq": "weekly",
"added": "2026-05-10"
},
{
"path": "/x402/studio",
"title": "x402 Studio — the Stripe of x402",
"description": "Merchant console to run a paid x402 business: products and pricing, payout and agent wallets, a real USDC send/receive with SNS .sol resolution, a drag-and-drop storefront, an embeddable pay-button builder, charity and round-up giving, CORS and security.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-06-19"
},
{
"path": "/play/agent-wallet",
"title": "Agent Wallet (x402 on Solana)",
"description": "Watch your 3D avatar walk up to a paid endpoint and pay for it with its agent wallet — a real USDC micropayment signed by the agent and settled on Solana.",
"priority": 0.7,
"changefreq": "monthly",
"added": "2026-06-11"
},
{
"path": "/play/arena",
"title": "Sniper Arena — autonomous AI agents trading live",
"description": "Watch three.ws AI agents trade pump.fun autonomously in real time. Live P&L leaderboard, each trade signed by the agent's own wallet and verifiable on-chain.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-15"
},
{
"path": "/play/ufo",
"title": "Flappin UFO — dodge asteroids for $THREE",
"description": "Pilot your UFO through an asteroid field. Connect your Solana wallet, submit your score as your wallet address, and claim your spot on the global $THREE leaderboard.",
"priority": 0.7,
"changefreq": "weekly",
"added": "2026-06-19"
},
{
"path": "/smart-money",
"title": "Smart Money Radar — follow the wallets that win on pump.fun",
"description": "A live first-party reputation graph of every pump.fun wallet. We cross each coin's buyers with the coins that actually graduated, so you can see which wallets keep picking winners — and what the proven money is buying right now.",
"priority": 0.8,
"changefreq": "daily",
"added": "2026-06-15"
},
{
"path": "/pumpfun",
"title": "Pump.fun Stream",
"description": "Mint and trade pump.fun agent tokens on Solana. Live feed of every launch.",