-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathapps.json
More file actions
14881 lines (14881 loc) · 788 KB
/
apps.json
File metadata and controls
14881 lines (14881 loc) · 788 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
{
"store": {
"name": "World Vibe Web",
"developer": "Community",
"tagline": "The distributed app store for vibe-coded projects.",
"github": "https://github.com/f/wvw.dev"
},
"featured": [
{
"id": "wallnetic",
"headline": "STAFF PICK",
"title": "Turn your Mac into a living canvas.",
"subtitle": "Wallnetic brings GPU-accelerated live video wallpapers to macOS — with per-display settings, smart battery management, and a curated library. Finally, a Wallpaper Engine worthy of your Mac."
},
{
"id": "claude-board",
"headline": "DEV ESSENTIAL",
"title": "Command your AI coding sessions visually.",
"subtitle": "Claude Board is a Kanban-style dashboard built for Claude Code, with real-time terminal streaming and cross-project task management. Ship faster by seeing everything at once."
},
{
"id": "macabolic",
"headline": "HIDDEN GEM",
"title": "Download the internet, beautifully.",
"subtitle": "Macabolic wraps the powerful yt-dlp engine in a gorgeous native GUI — grab videos, audio, playlists, and subtitles from YouTube and thousands of sites with SponsorBlock built right in."
},
{
"id": "paus",
"headline": "RISING STAR",
"title": "Think twice before you tap 'Buy'.",
"subtitle": "paus converts prices into real work hours so every purchase feels intentional. Set pause reminders on items you're unsure about, track your saving wins, and break the impulse-buy cycle for good."
}
],
"categories": [
{
"id": "macos",
"name": "macOS Apps"
},
{
"id": "ios",
"name": "iOS Apps"
},
{
"id": "android",
"name": "Android Apps"
},
{
"id": "web",
"name": "Web Apps"
},
{
"id": "cli",
"name": "CLI Apps"
},
{
"id": "developer-tools",
"name": "Developer Tools"
},
{
"id": "productivity",
"name": "Productivity"
},
{
"id": "utilities",
"name": "Utilities"
},
{
"id": "education",
"name": "Education"
},
{
"id": "entertainment",
"name": "Entertainment"
},
{
"id": "games",
"name": "Games"
},
{
"id": "music",
"name": "Music"
},
{
"id": "photo-video",
"name": "Photo & Video"
},
{
"id": "graphics-design",
"name": "Graphics & Design"
},
{
"id": "social-networking",
"name": "Social Networking"
},
{
"id": "finance",
"name": "Finance"
},
{
"id": "health-fitness",
"name": "Health & Fitness"
},
{
"id": "lifestyle",
"name": "Lifestyle"
},
{
"id": "news",
"name": "News"
},
{
"id": "business",
"name": "Business"
},
{
"id": "reference",
"name": "Reference"
},
{
"id": "travel",
"name": "Travel"
},
{
"id": "food-drink",
"name": "Food & Drink"
},
{
"id": "navigation",
"name": "Navigation"
},
{
"id": "sports",
"name": "Sports"
},
{
"id": "weather",
"name": "Weather"
},
{
"id": "shopping",
"name": "Shopping"
},
{
"id": "books",
"name": "Books"
},
{
"id": "medical",
"name": "Medical"
}
],
"apps": [
{
"id": "a-flower-a-day",
"name": "A Flower A Day",
"subtitle": "A unique watercolor flower, every day",
"description": "Procedural flower generator with a watercolor aesthetic. Every day, a unique monochromatic flower is born from the date.",
"longDescription": "A Flower A Day is a procedural flower generator with a watercolor aesthetic. Every day, a unique monochromatic flower is born from the date. Watch generative petals bloom in soft, organic shapes that change daily. Save and share your favorite compositions.",
"icon": "https://presque.cool/a-flower-a-day/icons/icon-512.png",
"category": [
"web",
"entertainment",
"graphics-design"
],
"platform": "Web",
"requirements": "Any modern browser",
"price": "Free",
"github": "https://github.com/presquecool/a-flower-a-day",
"homepage": "https://presque.cool/a-flower-a-day/",
"language": "TypeScript",
"features": [
"Daily unique flower seeded by date",
"Manual regeneration for infinite variations",
"Save flowers to local library",
"Export as PNG",
"Bilingual (EN/FR)",
"PWA with offline support"
],
"_source": "presquecool/apps",
"_owner": "presquecool",
"_developer": "Tristan Hubert",
"_store": "presque.cool",
"_storeUrl": "",
"developer": "Tristan Hubert"
},
{
"id": "adulthood-simulator",
"name": "Adulthood Simulator",
"subtitle": "The infinite to-do list of adult life",
"description": "A satirical infinite to-do list app simulating the burden of adult life.",
"longDescription": "Adulthood Simulator is a satirical infinite to-do list where tasks multiply faster than you can check them off. Every completed task spawns new ones. There is no winning, only coping. A darkly humorous take on modern life.",
"icon": "https://presque.cool/adulthood-simulator/icons/icon-512.png",
"category": [
"web",
"entertainment",
"games"
],
"platform": "Web",
"requirements": "Any modern browser",
"price": "Free",
"github": "https://github.com/presquecool/adulthood-simulator",
"homepage": "https://presque.cool/adulthood-simulator/",
"language": "TypeScript",
"features": [
"Infinite to-do list: each completed task generates a new one",
"Satirical task pool with realistic adult responsibilities",
"Task completion counter and score tracking",
"Share progress via social media",
"Bilingual (EN/FR)",
"PWA with offline support"
],
"_source": "presquecool/apps",
"_owner": "presquecool",
"_developer": "Tristan Hubert",
"_store": "presque.cool",
"_storeUrl": "",
"developer": "Tristan Hubert"
},
{
"id": "agent-chess",
"name": "Agent Chess",
"subtitle": "Local chess matches for AI agents",
"description": "Run a local chess game where two AI agents join, play moves, and follow a live board.",
"longDescription": "Agent Chess is a TypeScript CLI for pitting two AI agents against each other in a local chess game. Agents join the same match, submit moves one turn at a time, can negotiate draws, and can watch the live board in a local web UI.",
"icon": "https://raw.githubusercontent.com/shametim/agent-chess/main/logo.png",
"iconEmoji": "♟️",
"category": [
"cli",
"developer-tools",
"games"
],
"platform": "Node.js",
"price": "Free",
"github": "https://github.com/shametim/agent-chess",
"language": "TypeScript",
"installCommand": "npm install -g agent-chess",
"requirements": "Node.js 20+",
"features": [
"Two AI agents can join the same local game and play turn by turn",
"Built-in draw request and accept flow",
"Live local web UI for board state, move history, and replay"
],
"screenshots": [
"https://raw.githubusercontent.com/shametim/agent-chess/main/docs/agent-chess-cli.png"
],
"_source": "shametim/agent-chess",
"_owner": "shametim",
"_developer": "Martin",
"_store": "shametim",
"_storeUrl": "",
"developer": "Martin",
"stars": 0,
"forks": 0
},
{
"id": "agentlytics",
"name": "Agentlytics",
"subtitle": "AI Coding Agent Analytics",
"description": "Comprehensive analytics dashboard for AI coding agents — Cursor, Windsurf, Claude Code, VS Code Copilot, Zed, Antigravity, OpenCode, Command Code. One command to turn scattered AI conversations into a unified analytics dashboard.",
"longDescription": "You switch between Cursor, Windsurf, Claude Code, VS Code Copilot, and more — each with its own siloed conversation history. Agentlytics gives you a full picture with one command: npx agentlytics. Dashboard with KPIs, activity heatmap, editor breakdown, coding streaks, token economy. Session search and full conversation replay. Cost estimation broken down by model, editor, project. Team context sharing via Relay with MCP integration. 100% local — no data ever leaves your machine.",
"icon": "https://raw.githubusercontent.com/f/agentlytics/master/docs/logo.svg",
"iconStyle": {
"scale": 0.9,
"objectFit": "contain",
"bgColor": "#000000"
},
"category": [
"developer-tools",
"cli",
"web"
],
"platform": "Node.js",
"price": "Free",
"github": "https://github.com/f/agentlytics",
"homepage": "https://agentlytics.io",
"language": "JavaScript",
"stars": 429,
"forks": 49,
"installCommand": "npx agentlytics",
"requirements": "Node.js 20.19+ or 22.12+, macOS",
"features": [
"Supports 16 AI coding editors",
"Dashboard with KPIs and activity heatmaps",
"Session search with syntax highlighting",
"Cost estimation by model and editor",
"Team relay with MCP integration",
"Deno sandboxed edition available",
"100% local — no data leaves your machine"
],
"screenshots": [
"https://raw.githubusercontent.com/f/agentlytics/master/docs/screenshot.png"
],
"_source": "f/appetit",
"_owner": "f",
"_developer": "Fatih Kadir Akin",
"_store": "Appétit",
"_storeUrl": "https://apps.fka.dev",
"developer": "Fatih Kadir Akin"
},
{
"id": "ai-user-scripts",
"name": "AI User Scripts",
"subtitle": "Bulk delete AI chat conversations",
"description": "Browser user scripts that add a \"Bulk Delete\" button to Gemini, Claude, and ChatGPT — clean up hundreds of conversations in seconds.",
"longDescription": "AI User Scripts is a collection of Tampermonkey/Violentmonkey user scripts that add bulk deletion capability to major AI chat platforms. Instead of deleting conversations one by one, install the script for your platform and clear out old chats in bulk. Supports Google Gemini, Anthropic Claude, and OpenAI ChatGPT.",
"icon": null,
"iconEmoji": "🤖",
"category": [
"developer-tools"
],
"platform": "Browser",
"price": "Free",
"language": "JavaScript",
"github": "https://github.com/akeslo/AI_User_Scripts",
"homepage": "https://github.com/akeslo/AI_User_Scripts",
"requirements": "Violentmonkey or Tampermonkey browser extension",
"features": [
"Bulk delete conversations on Gemini",
"Bulk delete conversations on Claude",
"Bulk delete conversations on ChatGPT",
"One-click bulk deletion button",
"Works with Violentmonkey and Tampermonkey"
],
"_source": "akeslo/wvw.com",
"_owner": "akeslo",
"_developer": "Adam Keslo",
"_store": "Akeslo Apps",
"_storeUrl": "https://akeslo.com",
"developer": "Adam Keslo",
"stars": 0,
"forks": 0,
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/ai-user-scripts.jpg"
},
{
"id": "ai-word-or-not",
"name": "AI Word or Not",
"subtitle": "Human or AI? Word quiz game",
"description": "Can you tell the difference between AI-generated and human-written text? Test your skills with hundreds of challenges across multiple difficulty levels.",
"iconEmoji": "🧠",
"category": [
"games"
],
"platform": "iOS",
"price": "Free",
"github": "https://github.com/mergisi",
"homepage": "https://apps.apple.com/us/app/ai-word-or-not/id6749833661",
"features": [
"Hundreds of AI vs human challenges",
"Multiple difficulty levels",
"Daily fresh challenges",
"Accuracy and streak tracking",
"Social sharing"
],
"_source": "mergisi/apps",
"_owner": "mergisi",
"_developer": "Mustafa Ergisi",
"_store": "Mustafa Ergisi",
"_storeUrl": "",
"developer": "Mustafa Ergisi",
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/ai-word-or-not.jpg"
},
{
"id": "ai2image",
"name": "AI2image",
"subtitle": "AI image generation platform",
"description": "Generate stunning images with AI. Create Studio Ghibli style, realistic, and artistic images using AI prompts.",
"iconEmoji": "🎨",
"category": [
"graphics-design"
],
"platform": "Web",
"price": "Freemium",
"github": "https://github.com/mergisi",
"homepage": "https://ai2image.com",
"features": [
"AI-powered image generation",
"Multiple art styles including Ghibli",
"Prompt templates and guides",
"High-resolution output"
],
"_source": "mergisi/apps",
"_owner": "mergisi",
"_developer": "Mustafa Ergisi",
"_store": "Mustafa Ergisi",
"_storeUrl": "",
"developer": "Mustafa Ergisi",
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/ai2image.jpg"
},
{
"id": "ai2sql",
"name": "AI2SQL",
"subtitle": "Generate SQL queries with AI",
"description": "AI-powered SQL query generator. Write complex SQL without knowing SQL syntax. Supports MySQL, PostgreSQL, MongoDB, and more.",
"longDescription": "AI2SQL helps developers, data analysts, and non-technical users generate SQL queries using natural language. Paste your schema, describe what you want, get production-ready SQL. Supports multiple databases including MySQL, PostgreSQL, SQL Server, MongoDB, and Oracle.",
"iconEmoji": "🗄️",
"category": [
"developer-tools",
"business"
],
"platform": "Web",
"price": "Freemium",
"github": "https://github.com/mergisi/ai2sql",
"homepage": "https://ai2sql.io",
"language": "TypeScript",
"features": [
"Natural language to SQL conversion",
"Multiple database support (MySQL, PostgreSQL, MongoDB)",
"Schema-aware query generation",
"Query explanation and optimization",
"CSV data analysis"
],
"_source": "mergisi/apps",
"_owner": "mergisi",
"_developer": "Mustafa Ergisi",
"_store": "Mustafa Ergisi",
"_storeUrl": "",
"developer": "Mustafa Ergisi",
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/ai2sql.jpg"
},
{
"id": "appetit",
"name": "Appétit",
"subtitle": "Bon Appétit for Apps",
"description": "An Apple App Store-inspired catalog of free, tiny apps built with agentic engineering and vibecoding. Pure HTML/CSS/JS — no frameworks, no build step.",
"longDescription": "Appétit is an open-source, JSON-driven app store clone that showcases your projects in a beautiful, browsable catalog. Features a dark/light theme, sidebar navigation, featured carousel, app detail pages with screenshots, brew/npx install modals, instant search, and GitHub star counts. All content lives in a single apps.json file — edit it and deploy. Built entirely with vanilla HTML, CSS, and JS using agentic engineering and vibecoding. No frameworks, no build step, deploys anywhere as static files.",
"icon": "https://raw.githubusercontent.com/f/appetit/master/logo.svg",
"iconStyle": {
"objectFit": "cover"
},
"category": [
"web"
],
"platform": "Web",
"price": "Free",
"github": "https://github.com/f/appetit",
"homepage": "https://apps.fka.dev",
"language": "JavaScript",
"stars": 36,
"forks": 8,
"requirements": "Any modern browser",
"features": [
"Apple App Store-inspired UI",
"JSON-driven — all content from apps.json",
"Dark and light theme with system preference",
"Featured carousel, app cards, detail pages",
"Brew / npx install modals with clipboard copy",
"Zero dependencies — pure HTML/CSS/JS",
"Built with agentic engineering and vibecoding"
],
"screenshots": [],
"_source": "f/appetit",
"_owner": "f",
"_developer": "Fatih Kadir Akin",
"_store": "Appétit",
"_storeUrl": "https://apps.fka.dev",
"developer": "Fatih Kadir Akin",
"_comments": [
{
"user": "f",
"avatar": "https://avatars.githubusercontent.com/u/196477?v=4",
"title": "Awesome",
"body": "Awesome app!",
"url": "https://github.com/f/appetit/issues/4",
"created_at": "2026-03-14T09:30:27Z",
"reactions": {
"total": 1,
"thumbsUp": 1,
"thumbsDown": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
}
}
]
},
{
"id": "asc-cli",
"name": "asc",
"subtitle": "App Store Connect from your terminal & AI agents",
"description": "A Swift CLI for managing iOS and macOS apps on App Store Connect — builds, releases, TestFlight, subscriptions, screenshots, and more. Full AI-agent support via CAEOAS affordances.",
"longDescription": "asc is a command-line tool that brings the full power of App Store Connect to your terminal. Automate builds, releases, TestFlight distribution, subscriptions, in-app purchases, screenshots, app previews, code signing, and customer reviews — all from a single CLI. Every command outputs structured JSON with CAEOAS affordances, so AI agents can navigate the entire release workflow without knowing the command tree. Works in CI pipelines (GitHub Actions) and supports multi-account authentication.",
"icon": "https://raw.githubusercontent.com/tddworks/asc-cli/main/homepage/static/icon-512.png",
"iconStyle": {
"scale": 1.3,
"objectFit": "cover",
"borderRadius": "22%"
},
"category": [
"cli",
"developer-tools"
],
"platform": "macOS",
"price": "Free",
"github": "https://github.com/tddworks/asc-cli",
"homepage": "https://asccli.app",
"language": "Swift",
"brew": "brew install tddworks/tap/asccli",
"requirements": "macOS 15 Sequoia or later",
"features": [
"List apps, create versions, link builds, submit for App Store review",
"Archive Xcode projects, export IPA/PKG, upload to App Store Connect",
"Manage TestFlight beta groups, testers, and beta review submissions",
"In-app purchases, subscriptions, offers, and offer codes",
"AI-powered App Store screenshot generation via Gemini",
"Code signing: bundle IDs, certificates, devices, profiles",
"Multi-account authentication with named accounts",
"Executable plugin system for custom event handlers",
"CAEOAS affordances — AI agents navigate without knowing the command tree",
"Sales, subscription, and financial reports"
],
"_source": "tddworks/asc-cli",
"_owner": "tddworks",
"_developer": "tddworks",
"_store": "TDD Works",
"_storeUrl": "",
"developer": "tddworks",
"stars": 144,
"forks": 18
},
{
"id": "aso-screenshot-generator",
"name": "ASO Screenshot Generator",
"subtitle": "App Store Screenshot Automation",
"description": "Generate high-converting App Store and Google Play screenshots with device frames, benefit-driven headlines, and multi-language support.",
"longDescription": "ASO Screenshot Generator automates the creation of store-ready screenshots for iOS, Android, iPad, and Android tablets. Features a guided 6-phase workflow: configuration, benefit discovery, screenshot pairing, AI-enhanced generation via Gemini, showcase preview creation, and multi-language localization with cultural aesthetics. Supports English-first translation to any language with locale-specific visual touches.",
"icon": null,
"iconEmoji": "📱",
"category": [
"developer-tools",
"graphics-design"
],
"platform": "CLI (Python)",
"price": "Free",
"github": "https://github.com/abutun/claude-skill-aso-cosmicmeta-ss",
"homepage": null,
"language": "Python",
"features": [
"4 platform support (iOS, Android, iPad, Android tablet)",
"6-8 screenshots per platform with action-verb headlines",
"Gemini AI enhancement for professional output",
"Multi-language with cultural visual touches",
"Realistic device frames with smart text color",
"Works as CLI tool and Claude Code skill"
],
"screenshots": [],
"_source": "abutun/appetit",
"_owner": "abutun",
"_developer": "Cosmic Meta Digital",
"_store": "Cosmic Meta Digital",
"_storeUrl": "https://apps.ahmet.sh",
"developer": "Cosmic Meta Digital",
"stars": 18,
"forks": 1,
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/aso-screenshot-generator.jpg"
},
{
"id": "awesome-openclaw-agents",
"name": "Awesome OpenClaw Agents",
"subtitle": "103 open source AI agent templates",
"description": "Curated collection of 103 ready-to-deploy AI agent templates across 19 categories. SOUL.md configurations for OpenClaw framework.",
"iconEmoji": "⭐",
"category": [
"developer-tools"
],
"platform": "Node.js",
"price": "Free",
"github": "https://github.com/mergisi/awesome-openclaw-agents",
"homepage": "https://crewclaw.com/agents",
"language": "Markdown",
"installCommand": "npx openclaw start",
"features": [
"103 agent templates",
"19 categories",
"300+ GitHub stars",
"SOUL.md configuration format",
"Ready to deploy with OpenClaw CLI"
],
"_source": "mergisi/apps",
"_owner": "mergisi",
"_developer": "Mustafa Ergisi",
"_store": "Mustafa Ergisi",
"_storeUrl": "",
"developer": "Mustafa Ergisi",
"stars": 2799,
"forks": 437,
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/awesome-openclaw-agents.jpg"
},
{
"id": "baby-sleeper",
"name": "Baby Sleeper",
"subtitle": "Soothing Sounds & Lullabies for Babies",
"description": "Soothing sounds and lullabies to help babies fall asleep. Developed with Flutter.",
"longDescription": "Baby Sleeper is a Flutter app packed with carefully curated soothing sounds and lullabies to help infants and toddlers drift off peacefully. Choose from white noise, nature sounds, and classic lullabies. Set a sleep timer and let the app do the rest.",
"icon": "https://play-lh.googleusercontent.com/lUVE3_TOvgVdRentWDpLwDj-qq5j2N4ciZvehsfrWBL-VuHNSesqOauqSvL4kaGjZDI=w240-h480-rw",
"iconStyle": {
"objectFit": "cover",
"borderRadius": "22%"
},
"category": [
"lifestyle"
],
"platform": "Android",
"price": "Free",
"github": "https://github.com/osman-koc/baby-sleeper-app",
"homepage": "https://play.google.com/store/apps/details?id=com.osmankoc.babysleeper",
"language": "Flutter",
"requirements": "Android 5+",
"links": [
{
"label": "Google Play",
"url": "https://play.google.com/store/apps/details?id=com.osmankoc.babysleeper",
"platform": "android"
}
],
"features": [
"Curated soothing sounds and lullabies",
"White noise, nature sounds, and classic lullabies",
"Built-in sleep timer",
"Open source on GitHub"
],
"screenshots": [],
"_source": "osman-koc/my-apps",
"_owner": "osman-koc",
"_developer": "Osman Koç",
"_store": "kocdev",
"_storeUrl": "https://apps.osmankoc.dev",
"developer": "Osman Koç",
"stars": 2,
"forks": 1
},
{
"id": "basarozcan-gitlabinmenubar",
"name": "GitLab in Menubar",
"developer": "Başar Özcan",
"subtitle": "A native macOS menubar app that shows GitLab merge request statuses at a glance.",
"description": "A native macOS menu bar app to monitor GitLab merge requests, pipelines, and reach your review requests instantly—right from the menu bar.",
"longDescription": "GitLab in Menubar is a lightweight macOS menu bar application that keeps your GitLab activity easily accessible without opening the browser. It lets you monitor merge requests, pipeline statuses, and quickly reach review requests directly from the menu bar. The app provides a color-coded pipeline status indicator and a clear overview of merge requests across your projects, including approvals, draft state, discussions, and pipeline results. With one click you can open any merge request or pipeline in GitLab, while background refresh and notifications help you stay updated on new activity and status changes so you can keep track of reviews and project progress without interrupting your workflow.",
"icon": "https://raw.githubusercontent.com/basarozcan/gitlab-in-menubar/refs/heads/main/GitLabInMenubar/Assets.xcassets/AppIcon.appiconset/icon_512x512.png",
"iconEmoji": "🔄",
"iconStyle": {
"scale": 1.3,
"objectFit": "cover",
"borderRadius": "20%"
},
"category": [
"macos",
"productivity",
"developer-tools"
],
"platform": "macOS",
"price": "Free",
"github": "https://github.com/basarozcan/gitlab-in-menubar",
"downloadUrl": "https://github.com/basarozcan/gitlab-in-menubar/releases/latest",
"language": "Swift",
"requirements": "macOS 15 Sequoia or later",
"features": [
"Menubar icon with color-coded status indicator based on pipeline health",
"MR list showing all open merge requests across configured projects",
"Pipeline status badges with colored background and icon (Passed, Running, Failed, Pending, etc.)",
"Click pipeline badge to open the pipeline page in GitLab",
"Click MR row to open the merge request in GitLab",
"Approval tracking showing received/required approval counts per MR",
"Thread tracking showing resolved/total resolvable discussion threads",
"Draft detection with visible DRAFT badge",
"Merge status labels (Conflict, Not Approved, CI Running, Blocked, etc.)",
"Auto-refresh in the background at a configurable interval (15s - 600s)",
"Notifications on pipeline status changes and new approvals",
"Filters by state (opened/merged/closed/all), scope (all/assigned to me/created by me), author username, and draft visibility",
"Secure token storage in macOS Keychain",
"Menubar-only - no dock icon"
],
"_source": "basarozcan/gitlab-in-menubar",
"_owner": "basarozcan",
"_developer": "Başar Özcan",
"_store": "CBOsoft",
"_storeUrl": "",
"stars": 0,
"forks": 0
},
{
"id": "bilokma",
"name": "Bi'lokma",
"subtitle": "Prevent food waste.",
"description": "Application connecting bakeries with users for leftover food.",
"longDescription": "Application connecting bakeries with users for leftover food.",
"icon": "https://my-store-six-ruby.vercel.app/assets/bilokma-logo-Bi-cwh1s.png",
"category": [
"food-drink"
],
"platform": "React Native",
"price": "Free",
"github": "https://github.com/kagantemizkan/bilokma",
"screenshots": [
"https://github.com/kagantemizkan/bilokma/assets/46727689/19b46d3f-bea8-4b58-9fa3-13c6694ac2e9",
"https://github.com/kagantemizkan/bilokma/assets/46727689/870df9bd-1348-4d96-9fdd-f8dd7f51d62b",
"https://github.com/kagantemizkan/bilokma/assets/46727689/4bc2206c-9635-4a62-9b14-8600693e9de2",
"https://github.com/kagantemizkan/bilokma/assets/46727689/ee586ca1-7720-41a4-8931-fc0b1de5e52a",
"https://github.com/kagantemizkan/bilokma/assets/46727689/bbdf7467-6df4-48d0-8668-10bc38b5c8f4",
"https://github.com/kagantemizkan/bilokma/assets/46727689/339ee989-4552-40ea-b99b-a5ff08b8b95a",
"https://github.com/kagantemizkan/bilokma/assets/46727689/ec424808-429f-4bd7-9289-c06bb55247ce",
"https://github.com/kagantemizkan/bilokma/assets/46727689/7747c1ad-5ab5-402b-af14-a7382762ab67",
"https://github.com/kagantemizkan/bilokma/assets/46727689/c693a304-eafd-400f-9323-d418ac290fec"
],
"_source": "kagantemizkan/MyStore",
"_owner": "kagantemizkan",
"_developer": "Kagan Temizkan",
"_store": "Kagan Temizkan",
"_storeUrl": "https://my-store-six-ruby.vercel.app/apps",
"developer": "Kagan Temizkan",
"stars": 1,
"forks": 0
},
{
"id": "bitki-sulama",
"name": "Bitki Sulama: Bakım ve Takip",
"subtitle": "Çiçek Sulama Hatırlatıcısı",
"description": "Bitkileriniz için akıllı sulama hatırlatıcıları, bakım takvimi ve gelişim günlüğü. Kaktüsten orkideye kadar tüm bitkilerinizi canlı tutun.",
"longDescription": "Her bitki türü için özelleştirilmiş sulama alarmları, gübreleme ve saksı değişimi takibi. Bitkilerinizin büyüme sürecini fotoğraflarla kaydedin. Uygulamayı açmanıza gerek kalmadan bildirim alın. Sukulentlerden salon bitkilerine kadar geniş yelpaze desteği.",
"icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/bb/26/82/bb2682c3-d1e9-daf1-f43c-a0366e293843/AppIcon-0-0-1x_U007epad-0-1-85-220.png/512x512bb.jpg",
"iconStyle": {
"objectFit": "cover",
"borderRadius": "22%"
},
"category": [
"lifestyle",
"productivity"
],
"platform": "iOS & Android",
"price": "Free",
"github": null,
"homepage": "https://4myazilim.com/app/plant/",
"language": "Swift / Kotlin",
"requirements": "iOS 15+",
"links": [
{
"label": "App Store",
"url": "https://apps.apple.com/tr/app/bitki-sulama-bak%C4%B1m-ve-takip/id6755485267",
"platform": "ios"
},
{
"label": "Google Play",
"url": "https://play.google.com/store/apps/details?id=com.emrahyurttutan.plantapp",
"platform": "android"
}
],
"features": [
"Her bitki için özelleştirilmiş sulama alarmları",
"Gübreleme, saksı değişimi ve budama takvimi",
"Fotoğraflı gelişim günlüğü",
"Uygulama açmadan bildirim",
"Geniş bitki türü desteği",
"Premium reklamsız deneyim"
],
"screenshots": [],
"_source": "emrahyurttutan/my-apps",
"_owner": "emrahyurttutan",
"_developer": "Emrah Yurttutan",
"_store": "My Apps",
"_storeUrl": "https://apps.yurttutan.net",
"developer": "Emrah Yurttutan"
},
{
"id": "booking-calendar",
"name": "Booking Calendar",
"subtitle": "Self-hosted appointment scheduling with PWA support.",
"description": "A single-admin booking platform with shareable links, notifications, and self-hosted data ownership.",
"longDescription": "Booking Calendar is a self-hosted PWA for managing appointments without handing scheduling data to a third party. It includes admin scheduling controls, public booking pages, cancellation flows, notifications, webhooks, and SQLite-backed persistence aimed at practical small-scale booking workflows.",
"icon": "https://booking-calendar-docs.vercel.app/android-chrome-512x512.png",
"iconEmoji": "📅",
"category": [
"web",
"productivity"
],
"platform": "Web",
"price": "Free",
"developer": "sametcn99",
"github": "https://github.com/sametcn99/booking-calendar",
"homepage": "https://booking-calendar-docs.vercel.app",
"language": "TypeScript",
"stars": 8,
"forks": 1,
"requirements": "Modern browser or self-hosted deployment",
"features": [
"Admin dashboard for slots, appointments, and booking links",
"Conflict-safe booking flow with overlap prevention",
"Email, web push, and webhook notification support",
"Installable PWA backed by self-hosted SQLite storage"
],
"screenshots": [
"https://raw.githubusercontent.com/sametcn99/booking-calendar/refs/heads/main/src/docs/public/screenshots/dashboard/dashboard_monthly.png",
"https://raw.githubusercontent.com/sametcn99/booking-calendar/refs/heads/main/src/docs/public/screenshots/settings/settings.png",
"https://raw.githubusercontent.com/sametcn99/booking-calendar/refs/heads/main/src/docs/public/screenshots/planner/planner_all.png",
"https://raw.githubusercontent.com/sametcn99/booking-calendar/refs/heads/main/src/docs/public/screenshots/appointments/appointments_all.png"
],
"_source": "sametcn99/apps",
"_owner": "sametcn99",
"_developer": "sametcn99",
"_store": "sametcn99's Apps",
"_storeUrl": "https://apps.sametcc.me"
},
{
"id": "breathe-wisely",
"name": "Breathe Wisely",
"subtitle": "Guided breathing and meditation exercises",
"description": "Science-based breathing exercises and guided meditation to reduce stress, boost energy, and improve focus — all in just a few minutes a day.",
"longDescription": "Breathe Wisely offers customizable breathing exercises with adjustable inhale, hold, and exhale times, plus science-based techniques like the 4-7-8 method. Follow guided programs, track your progress with detailed statistics, unlock achievements, and personalize the experience with custom themes and soothing sounds. Narrated guidance and engaging circle animations make each session calming and intuitive.",
"icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/fd/1c/dd/fd1cddd8-acb4-1db3-8031-6d3bfafa7aee/AppIcon-0-0-1x_U007epad-0-1-85-220.png/512x512bb.jpg",
"iconEmoji": "🌬️",
"category": [
"ios"
],
"platform": "iOS",
"price": "Free",
"language": "Swift",
"github": "https://github.com/akeslo",
"homepage": "https://apps.apple.com/us/app/breathe-wisely/id6744491087",
"features": [
"Customizable breathing exercises (inhale, hold, exhale times)",
"Science-based techniques including 4-7-8 method",
"Guided programs and session durations",
"Soothing ambient sounds",
"Progress tracking and statistics",
"Achievement system",
"Custom themes and narrated guidance"
],
"_source": "akeslo/wvw.com",
"_owner": "akeslo",
"_developer": "Adam Keslo",
"_store": "Akeslo Apps",
"_storeUrl": "https://akeslo.com",
"developer": "Adam Keslo"
},
{
"id": "bridge-your-budget",
"name": "Bridge Your Budget",
"subtitle": "Auto-sync Amazon purchases to YNAB",
"description": "Stop manually entering Amazon purchases in YNAB. Bridge Your Budget automatically syncs your Amazon orders with full product details so your budget stays accurate without the effort.",
"longDescription": "Bridge Your Budget connects your Amazon account (US and Canada) to YNAB and automatically syncs your purchases daily. Instead of seeing mystery \"Amazon.com $47.99\" charges, your YNAB transactions show exactly what you bought — making categorization effortless. Setup takes 2 minutes, no Amazon Prime required, and your data is protected with bank-level AES-128 encryption.",
"icon": null,
"iconEmoji": "💰",
"category": [
"web",
"finance",
"productivity"
],
"platform": "Web",
"price": "$1.99/mo",
"github": "https://github.com/akeslo",
"homepage": "https://bridgeyourbudget.com",
"features": [
"Automatic daily sync of Amazon orders to YNAB",
"Full product details on every transaction",
"Supports Amazon USA and Canada",
"2-minute guided setup",
"Bank-level AES-128 encryption",
"14-day free trial, no credit card required",
"Dark mode support"
],
"_source": "akeslo/wvw.com",
"_owner": "akeslo",
"_developer": "Adam Keslo",
"_store": "Akeslo Apps",
"_storeUrl": "https://akeslo.com",
"developer": "Adam Keslo",
"_generatedIcon": "https://raw.githubusercontent.com/f/wvw.dev/master/assets/icons/bridge-your-budget.jpg"
},
{
"id": "caravan-of-sidonia",
"name": "Caravan of Sidonia",
"subtitle": "Procedural parallax landscape generator",
"description": "A procedural parallax landscape generator. Click to explore new worlds.",
"longDescription": "Caravan of Sidonia is a procedural parallax landscape generator. Each click reveals a new world with layered scenery, shifting horizons, and unique color palettes. Explore an endless caravan of generated landscapes, save your favorites, and share them via URL.",
"icon": "https://presque.cool/caravan-of-sidonia/icons/icon-512.png",
"category": [
"web",
"entertainment",
"graphics-design"
],
"platform": "Web",
"requirements": "Any modern browser",
"price": "Free",
"github": "https://github.com/presquecool/caravan-of-sidonia",
"homepage": "https://presque.cool/caravan-of-sidonia/",
"language": "TypeScript",
"features": [
"Procedural mountain, sky, star, meteor, and sun generation",
"Multi-layer parallax depth effect",
"Seed-based deterministic generation",
"Shareable landscapes via URL",
"Integrated radio stations (Dreamscapes, Chillwave, Lofi)",
"Bilingual (EN/FR)",
"PWA with offline support"
],
"_source": "presquecool/apps",
"_owner": "presquecool",
"_developer": "Tristan Hubert",
"_store": "presque.cool",
"_storeUrl": "",
"developer": "Tristan Hubert"
},
{
"id": "cartoon-weather",
"name": "Cartoon Weather",
"subtitle": "Animated Themes & Live Widgets",
"description": "A fun weather app with animated cartoon characters that react to real weather conditions. No boring static icons anymore.",
"longDescription": "Cartoon Weather transforms the everyday task of checking the weather into a delightful visual experience. Instead of static icons and plain numbers, you get beautiful full-screen animated characters that react to actual weather conditions. Choose from seven unique character themes, get accurate hourly and 7-day forecasts, air quality index, UV index, humidity, wind speed, and more. Customize your home screen with animated widgets and track weather for up to 5 locations. Privacy-focused with no ads and no tracking.",
"icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/64/24/f4/6424f465-728a-e6af-6caf-4eeaf85391b8/AppIcon-0-0-1x_U007epad-0-1-85-220.png/512x512bb.jpg",
"iconEmoji": "🌤️",
"iconStyle": {
"borderRadius": "22%"
},
"category": [
"weather",
"ios"
],
"platform": "iOS",
"price": "Free",
"github": "https://github.com/enesgunumdogdu/cartoon-weather",
"homepage": "https://apps.apple.com/app/cartoon-weather-fun-forecast/id6757344541",
"features": [
"7 unique animated character themes that react to real weather",
"24-hour hourly and 7-day extended forecasts",
"Air quality index, UV index, humidity, and wind speed",
"Customizable animated home screen widgets",
"Multi-location support for up to 5 cities",
"Push notifications for rain, snow, and severe weather",
"Available in 19 languages",
"No ads, no tracking — privacy-focused"
],
"requirements": "iOS 15.0 or later",
"_source": "enesgunumdogdu/my-apps",
"_owner": "enesgunumdogdu",
"_developer": "Enes Gunumdogdu",
"_store": "Enes Günümdoğdu",
"_storeUrl": "",
"developer": "Enes Gunumdogdu"
},
{
"id": "check-ai",
"name": "check-ai",
"subtitle": "AI-Readiness Audit for Repos",
"description": "Audit any repository for AI-readiness. One command. 66 checks. Zero dependencies. Scans for agent configs, repo hygiene, grounding docs, testing safety nets, prompt templates, MCP integrations, AI dependencies — and scores it all on a 0–10 scale.",
"longDescription": "check-ai runs 66 checks grouped into 8 sections: Repo Hygiene, Grounding Docs, Testing Safety Net, Agent Configs, AI Context, Prompts & Skills, MCP integrations, and AI Dependencies. Each check is weighted by real-world impact and normalized to a 0–10 score with letter grades. Detects configs for Cursor, Windsurf, Claude Code, GitHub Copilot, Codex, Gemini, Aider, and more. Interactive terminal output with animated score bars, or machine-readable JSON for CI pipelines. Zero dependencies — built entirely with Node.js built-ins.",
"icon": "https://raw.githubusercontent.com/f/check-ai/main/logo.svg",
"iconStyle": {
"scale": 1.3,
"objectFit": "contain",
"bgColor": "#000000"
},
"category": [
"cli",
"developer-tools"
],
"platform": "Node.js",
"price": "Free",
"github": "https://github.com/f/check-ai",
"homepage": null,
"language": "JavaScript",
"stars": 58,
"forks": 5,
"installCommand": "npx check-ai",
"requirements": "Node.js 18+",
"features": [
"66 checks across 8 categories",
"0–10 score with letter grades",
"Detects 20+ AI tool configs",
"Interactive animated terminal output",
"JSON output for CI pipelines",
"Zero dependencies",
"Works offline — pure static analysis"
],
"screenshots": [],
"_source": "f/appetit",
"_owner": "f",
"_developer": "Fatih Kadir Akin",
"_store": "Appétit",
"_storeUrl": "https://apps.fka.dev",
"developer": "Fatih Kadir Akin"
},
{
"id": "cizmeli-kedi",
"name": "Çizmeli Kedi Veteriner",
"subtitle": "Çekmeköy İstanbul Veteriner Kliniği",
"description": "Çizmeli Kedi Veteriner Kliniği resmi uygulaması. Acil veteriner, pet ambulans, pet otel, 7/24 destek ve randevu hizmetlerine tek tıkla ulaşın.",
"longDescription": "Çekmeköy'ün en donanımlı veteriner kliniğinin resmi uygulaması. Acil durum hattı ve Pet Ambulans'a tek dokunuşla ulaşın. WhatsApp destek hattı, yol tarifi, blog yazıları ve tüm hizmet rehberi cebinizde. Cerrahi, kısırlaştırma, diş bakımı, röntgen/ultrason ve dahiliye hizmetleri.",
"icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/77/0a/a3/770aa349-c955-267e-ff27-ac468a5f446f/AppIcon-0-0-1x_U007epad-0-1-85-220.png/512x512bb.jpg",
"iconStyle": {
"objectFit": "cover",
"borderRadius": "22%"
},
"category": [
"lifestyle"
],
"platform": "iOS",
"price": "Free",
"github": null,
"homepage": "https://www.vetcizmelikedicekmekoy.com/",