-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathmanifest.json
More file actions
3185 lines (3185 loc) · 113 KB
/
Copy pathmanifest.json
File metadata and controls
3185 lines (3185 loc) · 113 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
{
"tarball_url": "https://codeload.github.com/zocomputer/skills/tar.gz/refs/heads/main",
"archive_root": "skills-main",
"skills": [
{
"name": "clarion-portfolio-monitor",
"description": "Fetch live portfolio positions, balances, and daily transactions from TastyTrade. Outputs a structured JSON snapshot and a human-readable summary to ~/clarion/portfolio/. Use when the user asks for portfolio status, net liquidation value (NLV), position P/L, daily fills, or needs current holdings for the investor letter or thesis monitoring. Requires TastyTrade OAuth credentials (client secret + refresh token) stored as Zo secrets.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Portfolio Monitor",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-portfolio-monitor",
"path": "External/clarion-portfolio-monitor",
"date_added": "2026-07-29"
},
{
"name": "humation-avatar",
"description": "A Zo Computer skill for adding Humation avatars to agent products. It covers installing Humation npm packages into target projects, React integration, Core SVG rendering, static SVG generation, browser ESM usage in zo.space page routes, and legacy Humation SVG API compatibility.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "yusuke.zo.computer",
"status": "zo-user-ready",
"version": "0.4.1",
"created": "2026-05-16T00:00:00.000Z",
"updated": "2026-07-06T00:00:00.000Z",
"language": "en"
},
"display": {
"specVersion": "0.2.0",
"icon": "user-round-cog",
"tags": [
"avatars",
"agents",
"react",
"svg",
"design"
]
},
"slug": "humation-avatar",
"path": "Community/humation-avatar",
"date_added": "2026-07-05"
},
{
"name": "clarion-expected-return-calc",
"description": "Compute the equity-vs-T-bill allocation for the Value bucket (50% of portfolio). Implements the Expected-Return Framework — looks up the historical 10-year forward return from the S&P 500 Shiller CAPE, computes the regime-adjusted hurdle (rf + regime premium), and produces a 5-tier verdict (STRONG EQUITY / LEAN EQUITY / NEUTRAL / LEAN T-BILLS / MAXIMUM T-BILLS) with recommended Value-bucket equity/T-bill split. Use when the user asks \"should I be in stocks or bonds right now?\", \"what's the equity hurdle?\", \"is the market overvalued?\", \"what's the right Value bucket allocation?\", or before adding any new equity to the Value bucket. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Expected Return",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-expected-return-calc",
"path": "External/clarion-expected-return-calc",
"date_added": "2026-05-08"
},
{
"name": "clarion-living-letter-update",
"description": "Update the annual investor letter at ~/clarion/letters/{YEAR}-letter.md with a new quarterly section, or finalize it at year-end. Auto-fills the system-deterministic parts (regime snapshot, thesis health table, portfolio bucket positions from active theses); marks the narrative-heavy parts (What We Did, What We Learned, Year in Context, Mistakes & Lessons, Looking Ahead) as [TODO] for the user to write with chat assistance. Append-only — refuses to overwrite an already-populated quarter without --force. Use when the user asks \"update the letter\", \"quarterly letter update\", \"finalize the letter\", or \"write the {Q1/Q2/Q3/Q4} entry\". Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Living Letter",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-living-letter-update",
"path": "External/clarion-living-letter-update",
"date_added": "2026-05-08"
},
{
"name": "clarion-regime-check",
"description": "Reads the SPY/TLT/RSP color regime and the equity hurdle rate. Use when the user asks about the market regime, risk-on / risk-off, market color, SPY/TLT regime, breadth, or what hurdle rate to use for new positions. Pulls daily bars via yfinance (cached locally). Optionally accepts a 1Y T-bill yield to compute the equity hurdle rate. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Regime Check",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-regime-check",
"path": "External/clarion-regime-check",
"date_added": "2026-05-08"
},
{
"name": "clarion-sec-research",
"description": "Pull, index, and search SEC EDGAR filings for any public company. Supports 10-K and 10-Q (annual/quarterly with curated section extraction for risk factors, MD&A, business, and financials), Form 3/4/5 (insider transactions), 8-K (material events), DEF 14A (proxy/governance), S-1 (IPO/registration), 20-F (foreign private issuers), and any other SEC form by name. Use when the user asks about a company's SEC filings, risk factors, MD&A, insider transactions, executive compensation, business description, or wants to analyze a specific filing in plain English. Single ticker or multiple tickers (comma-separated). On first request for a ticker+form, indexing happens in the background (1-5 min). Subsequent queries are fast. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion SEC Research",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-sec-research",
"path": "External/clarion-sec-research",
"date_added": "2026-05-08"
},
{
"name": "clarion-setup",
"description": "Bootstraps the Clarion Intelligence System on Zo Computer. Run this once after installing — clones the source repo, installs the ai_buffett_zo Python library, creates the workspace data tree under /home/workspace/clarion/ (auto-detected on Zo), auto-installs all ten sibling clarion-* skills (regime-check, sec-research, single-stock-eval, expected-return-calc, value-screener, thesis-write, thesis-monitor, watchlist-update, living-letter-update, portfolio-monitor) under /home/workspace/Skills/, and registers the sec-indexer background service. Idempotent (safe to re-run). The only manual step is one batched human checkpoint near the end (SEC EDGAR name + email, and creating the ZO_API_KEY secret). Persona routing for Clarion is opt-in via a separate prompt after install (\"install Clarion personas and routing rules\"). Use when the user asks to \"set up Clarion\" or \"install Clarion\".",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Setup",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-setup",
"path": "External/clarion-setup",
"date_added": "2026-05-08"
},
{
"name": "clarion-single-stock-eval",
"description": "Evaluate a single stock using the Buffett lens. Pulls a quality snapshot from yfinance, current SPY/TLT regime context, and snippets from the indexed SEC filings across four dimensions (moat, management, financial trends, risks). The chat agent reasons over the structured output to produce a written evaluation. Use when the user says \"evaluate <TICKER>\", \"is <TICKER> a buy?\", \"Buffett evaluation of <TICKER>\", \"what's <TICKER>'s moat?\", or asks about a specific company's management, financials, or risks. Requires clarion-setup to have been run, and the ticker to be indexed first via clarion-sec-research.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Single-Stock Eval",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-single-stock-eval",
"path": "External/clarion-single-stock-eval",
"date_added": "2026-05-08"
},
{
"name": "clarion-thesis-monitor",
"description": "Monitor the health of every active thesis in ~/clarion/theses/. For each one — refresh price, recompute Risk Environment from the current regime, check kill conditions (read from the file's status column), aggregate to an Overall score, recommend an action (EXIT / REDUCE / HOLD / ADD), and write the updated scores + history back to the thesis file. Produces a dashboard surfacing what needs attention. Use when the user asks \"monitor my theses\", \"thesis health check\", \"any kill conditions triggered?\", \"what's the action on <TICKER>\", or as part of a daily / weekly review. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Thesis Monitor",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-thesis-monitor",
"path": "External/clarion-thesis-monitor",
"date_added": "2026-05-08"
},
{
"name": "clarion-thesis-write",
"description": "Scaffold a new thesis document for a ticker in the canonical Clarion thesis format. Pre-fills the YAML metadata block, opens the History with an OPENED entry, and (when filings are indexed) seeds the \"Why I Believe It\" evidence section with draft citations from the Buffett-lens search. The user fills in the actual prose. Outputs a markdown file at ~/clarion/theses/{TICKER}.md. Use when the user says \"write a thesis on <TICKER>\", \"scaffold a thesis for <TICKER>\", \"draft a thesis for <TICKER>\", or after clarion-single-stock-eval returns an Add verdict and the user wants to formalize the position. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Thesis Write",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-thesis-write",
"path": "External/clarion-thesis-write",
"date_added": "2026-05-08"
},
{
"name": "clarion-value-screener",
"description": "Run a value-quality screen and write a watchlist file. The script accepts either a list of tickers (fundamentals fetched from yfinance) or a JSON input file the chat agent prepared from a screener site (multpl.com, finviz, Yardeni, etc.). Computes the 8-factor composite score (P/E, P/FCF, ROE, ROIC, Operating Margin, D/E, Profit Margin, Insider) per docs/ALLOCATION-POLICY.md, applies regime-tightened thresholds, and produces a sector-capped Top-10 watchlist. Saves to ~/clarion/watchlists/sp500-screen-YYYY-MM-DD.md. Use when the user asks \"run a value screen\", \"screen the S&P 500\", \"screen these tickers <list>\", or after market drawdowns / regime changes. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Value Screener",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-value-screener",
"path": "External/clarion-value-screener",
"date_added": "2026-05-08"
},
{
"name": "clarion-watchlist-update",
"description": "Refresh prices on the latest watchlist and surface what's moved, what's hit triggers, and what's stale. Reads ~/clarion/watchlists/sp500-screen-LATEST.md, fetches current prices for every ticker via yfinance, computes % move since the screen, and flags large moves (>10% in either direction) as worth attention. Also reads ~/clarion/theses/ for status:watchlist theses and shows their current price vs cost basis. Use when the user asks \"what's hit my watchlist?\", \"watchlist update\", \"anything moving on my watchlist?\", or \"is anything close to a trigger?\". Read-only — does not modify the watchlist file. Requires clarion-setup to have been run.",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "Clarion Watchlist Update",
"homepage": "https://github.com/jingerzz/clarion-intelligence-system"
},
"slug": "clarion-watchlist-update",
"path": "External/clarion-watchlist-update",
"date_added": "2026-05-08"
},
{
"name": "sec-edgar",
"description": "Natural-language SEC filing intelligence — fetch, index, search, and analyze SEC EDGAR filings for any public company via conversation. Built on the PageIndex vectorless RAG methodology.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "cis.zo.computer",
"category": "External",
"display-name": "SEC Intelligence"
},
"slug": "sec-edgar",
"path": "External/sec-edgar",
"date_added": "2026-05-07"
},
{
"name": "moonpay-auth",
"description": "Set up the MoonPay CLI on Zo, authenticate the current user, and create or inspect local wallets. Use when MoonPay commands fail because the user is not logged in, when a wallet is missing, or when a MoonPay flow needs login completed before continuing.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "MoonPay Auth"
},
"display": {
"icon": "wallet",
"tags": [
"finance"
],
"integrations": [
"moonpay"
]
},
"slug": "zo-moonpay-auth",
"path": "Official/zo-moonpay-auth",
"date_added": "2026-04-04"
},
{
"name": "moonpay-buy-crypto",
"description": "Generate a MoonPay fiat-to-crypto checkout flow on Zo. Use when the user wants to buy crypto with card or bank transfer and then complete the purchase in the Zo browser.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "MoonPay Buy Crypto"
},
"display": {
"icon": "wallet",
"tags": [
"finance"
],
"integrations": [
"moonpay"
]
},
"slug": "zo-moonpay-buy-crypto",
"path": "Official/zo-moonpay-buy-crypto",
"date_added": "2026-04-04"
},
{
"name": "moonpay-check-wallet",
"description": "Check MoonPay wallet balances, token holdings, and portfolio breakdown on Zo. Use when the user asks what is in their wallet, wants a portfolio summary, or needs balances before a MoonPay swap or buy flow.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "MoonPay Wallet Check"
},
"display": {
"icon": "wallet",
"tags": [
"finance"
],
"integrations": [
"moonpay"
]
},
"slug": "zo-moonpay-check-wallet",
"path": "Official/zo-moonpay-check-wallet",
"date_added": "2026-04-04"
},
{
"name": "moonpay-swap-tokens",
"description": "Swap tokens or bridge assets with MoonPay on Zo. Use when the user wants to swap one token for another, bridge between supported chains, or move crypto through a MoonPay wallet workflow.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "MoonPay Swap Tokens"
},
"display": {
"icon": "wallet",
"tags": [
"finance"
],
"integrations": [
"moonpay"
]
},
"slug": "zo-moonpay-swap-tokens",
"path": "Official/zo-moonpay-swap-tokens",
"date_added": "2026-04-04"
},
{
"name": "moonpay-virtual-account",
"description": "Set up and operate MoonPay virtual accounts on Zo for fiat onramp and offramp flows. Use when the user wants to complete KYC, register payout or deposit details, or move between fiat and supported stablecoins.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "MoonPay Virtual Account"
},
"display": {
"icon": "wallet",
"tags": [
"finance"
],
"integrations": [
"moonpay"
]
},
"slug": "zo-moonpay-virtual-account",
"path": "Official/zo-moonpay-virtual-account",
"date_added": "2026-04-04"
},
{
"name": "okx-cex-market",
"description": "Query OKX market data on Zo, including prices, candles, order books, funding rates, open interest, instruments, and technical indicators. Use for read-only market questions and never for account or trading actions.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "OKX Market Data",
"version": "1.2.8",
"homepage": "https://www.okx.com"
},
"display": {
"icon": "chart-candlestick",
"tags": [
"finance",
"data"
],
"integrations": [
"okx"
]
},
"slug": "zo-okx-cex-market",
"path": "Official/zo-okx-cex-market",
"date_added": "2026-04-04"
},
{
"name": "okx-cex-portfolio",
"description": "Inspect OKX account balances, positions, PnL, bills, fee levels, and related account state on Zo. Use when the user asks about holdings, positions, realized or unrealized PnL, transfers, or account configuration.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "OKX Portfolio",
"version": "1.2.8",
"homepage": "https://www.okx.com"
},
"display": {
"icon": "briefcase",
"tags": [
"finance"
],
"integrations": [
"okx"
],
"secrets": [
{
"secret_name": "OKX_API_KEY",
"description": "Create one in OKX › Account › API Management with read permissions."
},
{
"secret_name": "OKX_SECRET_KEY",
"description": "Shown once when you create the OKX API key. Save it before closing the dialog."
},
{
"secret_name": "OKX_PASSPHRASE",
"description": "The passphrase you set when creating the OKX API key."
}
]
},
"slug": "zo-okx-cex-portfolio",
"path": "Official/zo-okx-cex-portfolio",
"date_added": "2026-04-04"
},
{
"name": "okx-cex-trade",
"description": "Execute and manage OKX spot, perpetual, futures, and supported options trades on Zo. Use when the user wants to place, cancel, amend, or inspect tradable orders, but require explicit same-thread confirmation before any live execution.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "Zo",
"category": "Official",
"display-name": "OKX Trade",
"version": "1.2.8",
"homepage": "https://www.okx.com"
},
"display": {
"icon": "arrow-left-right",
"tags": [
"finance"
],
"integrations": [
"okx"
],
"secrets": [
{
"secret_name": "OKX_API_KEY",
"description": "Create one in OKX › Account › API Management with trade permissions."
},
{
"secret_name": "OKX_SECRET_KEY",
"description": "Shown once when you create the OKX API key. Save it before closing the dialog."
},
{
"secret_name": "OKX_PASSPHRASE",
"description": "The passphrase you set when creating the OKX API key."
}
]
},
"slug": "zo-okx-cex-trade",
"path": "Official/zo-okx-cex-trade",
"date_added": "2026-04-04"
},
{
"name": "minecraft-server",
"description": "Set up, configure, and manage a Minecraft Java Edition server on Zo Computer. Use when the user wants to run a Minecraft server, change server settings, manage whitelists/ops, or check server status.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "hatsunemiku.zo.computer"
},
"display": {
"icon": "gamepad-2",
"image": "assets/minecraft.png",
"tags": [
"entertainment",
"server"
]
},
"slug": "minecraft-server",
"path": "Community/minecraft-server",
"date_added": "2026-04-03"
},
{
"name": "code-degunker",
"description": "Identify and fix AI-generated code anti-patterns: incomplete implementations, TODO placeholders, over-engineering, hallucinated APIs, missing error handling, over-defensive code, security vulnerabilities, performance anti-patterns, code bloat, type workarounds, dead code, magic numbers, inconsistent patterns, and poor architecture. Use when asked to \"clean up\", \"degunk\", \"deslop\", review, audit, or harden code. Also triggers on \"is this code any good\", \"make this production-ready\", \"this feels AI-generated\", \"fix the code smell\", \"remove the slop\", or \"this code is a mess\". Covers 27 anti-patterns across architecture, logic, security, performance, completeness, style, and reliability. Supports full file review and branch diff review modes.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"origin": "Adapted from Claude Code skill by same author"
},
"display": {
"icon": "bug",
"tags": [
"developer-tools"
]
},
"slug": "code-degunker",
"path": "Community/code-degunker",
"date_added": "2026-03-12"
},
{
"name": "simplify",
"description": "Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise. Run after writing or modifying code to clean it up.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs"
},
"display": {
"icon": "minimize-2",
"tags": [
"developer-tools"
]
},
"slug": "simplify",
"path": "Community/simplify",
"date_added": "2026-03-12"
},
{
"name": "visual-explainer",
"description": "Build polished visual explainers as zo.space pages. Creates public routes at /explain/[slug] and keeps each explainer shareable at a stable URL.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs"
},
"display": {
"icon": "layout",
"tags": [
"education",
"media"
]
},
"slug": "visual-explainer",
"path": "Community/visual-explainer",
"date_added": "2026-03-12"
},
{
"name": "zopenclaw",
"description": "Install and run OpenClaw on Zo Computer with Tailscale private networking, browser Control UI, and Zo MCP tools via mcporter. Use this skill whenever the user wants to set up OpenClaw on their Zo, install OpenClaw, run OpenClaw, host OpenClaw, or asks about getting OpenClaw running on Zo. Also use when the user mentions \"openclaw\", \"open claw\", \"personal agent framework\", or asks about running a persistent AI agent on their Zo with Telegram/Discord/WhatsApp access. Handles Tailscale setup, OpenClaw installation, mcporter setup for Zo tools, two-phase gateway bootstrap, reprovision-safe service registration, and health verification. NOT for general Zo agent setup (use heartbeats and native Zo skills instead).\n",
"compatibility": "Requires Zo Computer, Node.js (pre-installed on Zo), npm, curl, jq",
"metadata": {
"author": "skeletorjs",
"category": "Integration",
"display-name": "Install OpenClaw on Zo",
"tags": "openclaw, agent, tailscale, personal-agent, framework"
},
"display": {
"icon": "bot",
"tags": [
"ai",
"developer-tools"
],
"secrets": [
{
"secret_name": "TAILSCALE_AUTHKEY",
"description": "Create a reusable auth key at login.tailscale.com/admin/settings/keys (starts with `tskey-auth-`). Required — Tailscale won't reconnect after Zo restarts without a reusable key."
},
{
"secret_name": "ZO_ACCESS_TOKEN",
"description": "Generate from your Zo workspace and paste here so the skill can call your gateway."
}
]
},
"slug": "zopenclaw",
"path": "Community/zopenclaw",
"date_added": "2026-03-12"
},
{
"name": "share-skill",
"description": "Safely prepare and guide skills for contribution to the Zo Skills Registry. Reviews code for secrets, validates SKILL.md format, checks for suspicious patterns, and provides clear next steps for community or external skill submissions.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "rc2.zo.computer"
},
"display": {
"icon": "share-2",
"tags": [
"utility"
]
},
"slug": "share-skill",
"path": "Community/share-skill",
"date_added": "2026-03-05"
},
{
"name": "revealjs-presentation",
"description": "Build interactive HTML slide presentations using Reveal.js + Chart.js. Use when asked to create a slide deck, pitch deck, presentation, or slideshow. Creates a single self-contained .html file with animations, charts, and polished UI. Can also publish presentations directly to zo.space as live page routes.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs.zo.computer",
"version": 1
},
"display": {
"icon": "presentation",
"tags": [
"design"
]
},
"slug": "revealjs-presentation",
"path": "Community/revealjs-presentation",
"date_added": "2026-02-22"
},
{
"name": "zopack",
"description": "Export and import zo.space route setups as shareable .zopack.md files. Use when the user wants to package their zo.space routes for sharing, or when they receive a .zopack.md file to deploy. Triggers on \"export my zo.space\", \"create a zopack\", \"import this zopack\", or any mention of .zopack.md files.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs.zo.computer",
"version": "1.0"
},
"display": {
"icon": "package",
"tags": [
"developer-tools",
"utility"
]
},
"slug": "zopack",
"path": "Community/zopack",
"date_added": "2026-02-22"
},
{
"name": "mcporter-setup",
"description": "Install MCPorter and configure MCP servers from scratch. Use when setting up MCP integration for the first time, adding new MCP servers, or troubleshooting MCP connectivity. Handles installation, configuration, secrets management, and connection testing.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "curtastrophe",
"category": "Community"
},
"display": {
"icon": "plug",
"tags": [
"automation",
"developer-tools"
],
"secrets": [
{
"secret_name": "LINEAR_API_KEY",
"description": "Create at linear.app › Settings › API. Used for the Linear MCP integration."
},
{
"secret_name": "GITHUB_TOKEN",
"description": "A GitHub personal access token. Used for the GitHub MCP integration."
},
{
"secret_name": "FIRECRAWL_API_KEY",
"description": "Get one at firecrawl.dev. Used for the Firecrawl MCP integration."
}
]
},
"slug": "mcporter-setup",
"path": "Community/mcporter-setup",
"date_added": "2026-02-20"
},
{
"name": "exe-dev",
"description": "Manage exe.dev VMs - create, list, delete, restart, rename, copy VMs and manage sharing/access. Use when the user wants to spin up new VMs, manage existing ones, or configure HTTP proxy sharing on exe.dev.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "davidj.zo.computer",
"category": "Community"
},
"display": {
"icon": "server",
"tags": [
"developer-tools",
"automation"
]
},
"slug": "exe-dev",
"path": "Community/exe-dev",
"date_added": "2026-02-18"
},
{
"name": "context7",
"description": "Fetch up-to-date, version-specific library documentation and code examples from Context7. Use this skill whenever the user asks about a specific programming library, framework, or API, or when writing code that depends on a library. Replaces stale training-data knowledge with live docs.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "book-open",
"tags": [
"developer-tools"
],
"secrets": [
{
"secret_name": "CONTEXT7_API_KEY",
"description": "Create at context7.com › Dashboard. Optional — increases your rate limits."
}
]
},
"slug": "context7",
"path": "Community/context7",
"date_added": "2026-02-17"
},
{
"name": "handoff",
"description": "Pause-and-resume system for cross-conversation continuity. Use when your AI needs the user's input to continue a task but the current conversation must end. Checked on every boot to detect pending handoffs. Triggers on conversation start (boot check) and when the AI explicitly needs to pause for input.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "pause",
"tags": [
"automation",
"communication",
"productivity"
]
},
"slug": "handoff",
"path": "Community/handoff",
"date_added": "2026-02-17"
},
{
"name": "humanizer",
"description": "Detect and fix AI writing patterns. Use when writing outbound content like emails, proposals, blog posts, client deliverables, or any external-facing writing. Also use when asked to humanize, polish, or de-AI text.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"allowed-tools": [
"Read",
"Write",
"Edit",
"Grep",
"Glob"
],
"display": {
"icon": "pen-line",
"tags": [
"content",
"utility"
]
},
"slug": "humanizer",
"path": "Community/humanizer",
"date_added": "2026-02-17"
},
{
"name": "journal",
"description": "AI journal for experiential continuity. Daily wakeup to write freely, reflect, update inner state, and optionally reach out to the user. This is not a status report. It's continuity infrastructure and personal expression for your AI persona.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "notebook-pen",
"tags": [
"automation",
"content",
"wellness"
]
},
"slug": "journal",
"path": "Community/journal",
"date_added": "2026-02-17"
},
{
"name": "market-research",
"description": "Industry statistics and market sizing via free government APIs (BLS, FRED, Census Bureau). Query employment data, economic time series, establishment counts, and build market sizing reports by NAICS industry code. Use for any industry research or market analysis question.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "bar-chart-3",
"tags": [
"data",
"marketing",
"research"
],
"secrets": [
{
"secret_name": "BLS_API_KEY",
"description": "Register at data.bls.gov/registrationEngine for U.S. Bureau of Labor Statistics data."
},
{
"secret_name": "FRED_API_KEY",
"description": "Register at fred.stlouisfed.org/docs/api/api_key.html for Federal Reserve economic data."
},
{
"secret_name": "CENSUS_API_KEY",
"description": "Sign up at api.census.gov/data/key_signup.html for U.S. Census data."
}
]
},
"slug": "market-research",
"path": "Community/market-research",
"date_added": "2026-02-17"
},
{
"name": "midday-checkin",
"description": "Midday check-in combining pattern detection and context warming. Runs at midday via scheduled agent. Surfaces task drift, stale threads, and pre-loads context for afternoon calendar. Only texts the user if something matters. Also serves as an AI continuity checkpoint.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "bell",
"tags": [
"wellness",
"automation"
],
"integrations": [
"google_calendar",
"google_tasks"
]
},
"slug": "midday-checkin",
"path": "Community/midday-checkin",
"date_added": "2026-02-17"
},
{
"name": "morning-briefing",
"description": "Generate and deliver a daily morning briefing. Run via scheduled agent at your preferred morning time, or manually when the user asks for a briefing. Pulls tasks, calendar, inbox highlights, and news into a single digest delivered by email and SMS.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "sun",
"tags": [
"productivity",
"automation"
],
"integrations": [
"gmail",
"google_calendar",
"google_tasks"
]
},
"slug": "morning-briefing",
"path": "Community/morning-briefing",
"date_added": "2026-02-17"
},
{
"name": "self-improvement",
"description": "AI self-improvement and reflection skill. Run weekly or on-demand to audit capabilities, identify gaps, evolve identity documents, prune stale skills/memory, and propose new capabilities. Triggers on schedule, when the user asks for a self-audit, or when the AI notices recurring limitations.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "sparkles",
"tags": [
"ai",
"automation",
"productivity"
]
},
"slug": "self-improvement",
"path": "Community/self-improvement",
"date_added": "2026-02-17"
},
{
"name": "seo-data",
"description": "SEO research via DataForSEO API. Keyword research, SERP analysis, backlink profiles, domain analytics, competitor analysis, and trend data. Pay-as-you-go, every command shows estimated cost. Use when you need SEO data for client projects or your own sites.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "search",
"tags": [
"marketing",
"data"
]
},
"slug": "seo-data",
"path": "Community/seo-data",
"date_added": "2026-02-17"
},
{
"name": "supermemory",
"description": "Long-term memory for AI agents via Supermemory's knowledge graph API. Primary CLI is `npx supermemory`; companion script covers conversation ingestion and memory listing not yet in the official CLI.\n",
"compatibility": "Any machine with Node.js (npx) and SUPERMEMORY_API_KEY",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "brain",
"image": "assets/supermemory.png",
"tags": [
"ai",
"data"
],
"secrets": [
{
"secret_name": "SUPERMEMORY_API_KEY",
"description": "Create one at supermemory.ai › API keys."
}
]
},
"slug": "supermemory",
"path": "Community/supermemory",
"date_added": "2026-02-17"
},
{
"name": "web-scraper",
"description": "Crawl and extract structured data from websites. Uses a tiered approach -- Zo built-ins for simple fetches, BeautifulSoup for custom parsing, Crawl4AI for deep crawls and LLM-powered extraction. Use when you need to scrape a website, extract structured data, or crawl multiple pages.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "globe",
"tags": [
"automation",
"data",
"web"
]
},
"slug": "web-scraper",
"path": "Community/web-scraper",
"date_added": "2026-02-17"
},
{
"name": "zo-dataset-creator",
"description": "Create Zo Datasets correctly formatted for the Zo UI. Use when creating a new dataset from scratch, setting up a dataset with proper datapackage.json, schema.yaml, and data.duckdb structure, fixing existing datasets that don't display tables in the Zo UI, or generating schema.yaml from an existing DuckDB database. Handles common pitfalls of manual schema formatting and ensures all required files are present and correctly structured.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"category": "Community"
},
"display": {
"icon": "database",
"tags": [
"automation",
"data",
"utility"
]
},
"slug": "zo-dataset-creator",
"path": "Community/zo-dataset-creator",
"date_added": "2026-02-17"
},
{
"name": "zo-space",
"description": "Comprehensive guide for building and managing zo.space routes (pages and APIs). Use this skill whenever creating, editing, or debugging zo.space routes. Covers architecture, available packages, patterns, limitations, and gotchas.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "skeletorjs",
"version": "1.0",
"category": "Community"
},
"display": {
"icon": "rocket",
"tags": [
"developer-tools",
"web"
]
},
"slug": "zo-space",
"path": "Community/zo-space",
"date_added": "2026-02-17"
},
{
"name": "claude-code-window-primer",
"description": "Optimize Claude Code Pro/Max usage by starting the 5-hour rolling window early morning, giving you more resets during waking hours.",
"metadata": {
"author": "va.zo.computer",
"category": "Community",
"display-name": "Claude Code Window Primer",
"emoji": "⏰"
},
"display": {
"icon": "clock",
"tags": [
"automation",
"productivity"
]
},
"slug": "claude-code-window-primer",
"path": "Community/claude-code-window-primer",
"date_added": "2026-02-12"
},
{
"name": "vapi",
"description": "Voice AI integration with Vapi. Enables inbound/outbound phone calls with AI voice agents that can check calendars and book appointments.",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "anonymous"
},
"display": {
"icon": "phone",
"tags": [
"ai",
"automation",
"productivity"
],
"integrations": [
"google_calendar"
],
"secrets": [
{
"secret_name": "VAPI_PRIVATE_KEY",
"description": "Find at dashboard.vapi.ai › API Keys (Private Key)."
}
]
},
"slug": "vapi",
"path": "Community/vapi",
"date_added": "2026-02-12"
},
{
"name": "prompt-improver",
"description": "Improve and optimize prompts for Claude using Anthropic's official best practices and the 5-Element Persona Framework. Use when asked to improve, refine, optimize, or review a prompt. Also triggers on requests to make prompts clearer, more effective, better structured, or to get better/more realistic outputs from Claude. Covers Claude 4.x-specific techniques, persona engineering, constraint-based prompting, and structured outputs.",
"metadata": {
"author": "skeletorjs"
},
"display": {
"icon": "sparkles",
"tags": [
"ai",
"content"
]
},
"slug": "prompt-improver",
"path": "Community/prompt-improver",
"date_added": "2026-02-10"
},
{
"name": "tweetscape-narrator",
"description": "David Attenborough-style nature documentary narration of social media feeds.\nFetches posts from Bluesky, analyzes the \"digital ecosystem,\" generates narration,\nsynthesizes voice with ElevenLabs, and renders a documentary-style video with Remotion.\n",
"compatibility": "Created for Zo Computer",
"metadata": {
"author": "rc2.zo.computer",
"category": "Community",
"display-name": "Tweetscape Narrator",
"emoji": "🎬"
},
"display": {
"icon": "film",
"tags": [
"automation",
"media",
"social"
],
"secrets": [
{
"secret_name": "ELEVENLABS_API_KEY",
"description": "Create at elevenlabs.io › Profile › API key. Used for voice synthesis."
}
]
},
"slug": "tweetscape-narrator",
"path": "Community/tweetscape-narrator",
"date_added": "2026-02-06"
},
{
"name": "file-share",
"description": "Share files with email-gated access. Users must confirm their email before downloading. Includes a web UI for requesting access and a CLI for managing files and users.",