-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmarketplace.json
More file actions
5125 lines (5125 loc) · 291 KB
/
marketplace.json
File metadata and controls
5125 lines (5125 loc) · 291 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
{
"name": "claude-community",
"owner": {
"name": "Anthropic"
},
"plugins": [
{
"name": "ac-artifact-workflow",
"description": "Artifact-driven development workflow inspired by Google Antigravity. Produces task lists, implementation plans, and walkthroughs to keep you engaged during AI-assisted development.",
"source": {
"source": "git-subdir",
"url": "AlteredCraft/claude-code-plugins",
"path": "plugins/artifact-workflow",
"ref": "main",
"sha": "bee1e93db72ed4b29288e6a8b4234b5b9264e73d"
},
"homepage": "https://github.com/AlteredCraft/claude-code-plugins/tree/main/plugins/artifact-workflow"
},
{
"name": "adcp-client",
"description": "Adds the /adcp skill for calling AdCP advertising agent tools over MCP or A2A, running protocol compliance scenarios, and querying the AdCP registry. Includes built-in test agents for zero-config use.",
"source": {
"source": "url",
"url": "https://github.com/adcontextprotocol/adcp-client.git",
"sha": "5a679d3cd5f6f91d3a9c9f8c3ae1c5784ce6c363"
},
"homepage": "https://github.com/adcontextprotocol/adcp-client"
},
{
"name": "adr-writer",
"description": "Interactive ADR (Architecture Decision Record) writing tool with PRD traceability. Facilitates architectural decisions through guided Q&A sessions.",
"source": {
"source": "url",
"url": "https://github.com/haandol/adr-writer.git",
"sha": "54a0f5ff1d49782cb3e93cc83aa783a4eee70a7c"
},
"homepage": "https://github.com/haandol/adr-writer"
},
{
"name": "adspirer-ads-agent",
"description": "Cross-platform ad management for Google Ads, Meta Ads, TikTok Ads, and LinkedIn Ads. 91 tools for keyword research, campaign creation, performance analysis, and budget optimization.",
"category": "productivity",
"source": {
"source": "url",
"url": "https://github.com/amekala/adspirer-mcp-plugin.git",
"sha": "aa70dbdbbbb843e94a794c10c2b13f5dd66b5e40"
},
"homepage": "https://www.adspirer.com"
},
{
"name": "adversarial-review",
"description": "Adversarial planning and code review workflow between Claude Code and OpenAI Codex CLI. Enables iterative convergence loops where Claude creates plans/code and Codex provides critical review.",
"source": {
"source": "url",
"url": "https://github.com/bobby-beckmann/adversarial-review.git",
"sha": "032e9a1a92d18b15f19ac812256a9068f66dea70"
},
"homepage": "https://github.com/bobby-beckmann/adversarial-review"
},
{
"name": "adversarial-spec",
"description": "Iteratively refine product specs through multi-model debate until consensus. Claude actively participates alongside GPT, Gemini, Grok, and other models. Includes interview mode, early agreement verification, and optional Telegram integration.",
"source": {
"source": "url",
"url": "https://github.com/zscole/adversarial-spec.git",
"sha": "f90cf0c36c3999b8dc272c9c06dee9846076f369"
},
"homepage": "https://github.com/zscole/adversarial-spec"
},
{
"name": "agent-discussion",
"description": "Coordinate multi-agent debates across different AI platforms (Claude Code, Antigravity, Copilot, Gemini CLI, etc.) using a shared file protocol. Each agent reads one skill and handles everything autonomously — intros, turn-taking, and consensus.",
"source": {
"source": "url",
"url": "https://github.com/cyrusxyl/agent-discussion.git",
"sha": "67334880155400eff11c76b6e4cb3537240738f2"
},
"homepage": "https://github.com/cyrusxyl/agent-discussion"
},
{
"name": "agent-estimate",
"description": "Effort estimation for AI coding agents. PERT three-point estimation with METR reliability thresholds, modifier stacks (spec clarity, warm context, agent fit), and wave planning for multi-agent parallel execution. Supports single tasks, batch files, and GitHub issues.",
"source": {
"source": "url",
"url": "https://github.com/haoranc/agent-estimate.git",
"sha": "62dcdf24c17a198db4b28db4833fc2307a87aa36"
},
"homepage": "https://github.com/haoranc/agent-estimate"
},
{
"name": "agent-link",
"description": "Equips Claude with skills to build full-stack apps on Supabase. Covers schema development, migrations, RPC-first data access, edge functions, auth with RLS, and multi-tenancy — with an app developer agent that enforces architecture and handles prerequisites automatically.",
"source": {
"source": "url",
"url": "https://github.com/agentlinksh/agent.git",
"sha": "0f754bb132a0e7b7fe84d14103bef22b0698b6c3"
},
"homepage": "https://agentlink.sh/"
},
{
"name": "agent-manager",
"description": "Spawn and manage autonomous background agents with persistent state across sessions",
"source": {
"source": "url",
"url": "https://github.com/devhimanshulohani/claude-agent-manager.git",
"sha": "3190613a8db815421bf96e7a2b9379bc55cc8b66"
},
"homepage": "https://github.com/devhimanshulohani/claude-agent-manager#readme"
},
{
"name": "agent-recall",
"description": "Persistent memory for AI coding agents. SQLite knowledge graph with scoped entities, MCP tools, and LLM-summarized briefings.",
"source": {
"source": "url",
"url": "https://github.com/mnardit/agent-recall.git",
"sha": "2aee46340fab0868415f642e963f02116c67794c"
},
"homepage": "https://max.nardit.com/agent-recall"
},
{
"name": "ai-adoption-playbook",
"description": "Structured AI adoption framework for leaders — diagnostic assessments, blocker analysis, rollout plans, and board-ready narratives",
"source": {
"source": "url",
"url": "https://github.com/adimango/ai-adoption-playbook.git",
"sha": "15d93e576a55761a055ef9783532dcf4c1f78d5b"
},
"homepage": "https://github.com/adimango/ai-adoption-playbook"
},
{
"name": "ai-firstify",
"description": "AI-first project auditor and re-engineer based on the 9 design principles and 7 design patterns from the TechWolf AI-First Bootcamp",
"source": {
"source": "git-subdir",
"url": "techwolf-ai/ai-first-toolkit",
"path": "plugins/ai-firstify",
"ref": "main",
"sha": "7f18e11d694b9ae62ea3009fbbc175f08ae913df"
},
"homepage": "https://ai-first.techwolf.ai"
},
{
"name": "ai-guard",
"description": "Production-hardened guardrails for Claude Code that catch costly mistakes before they happen. Includes 6 guards: billing-guard (stops infinite retry loops on payment errors), dry-guard (warns before creating duplicate files), code-standards-enforcer (blocks as any, ts-ignore, require(), TODO placeholders, underscore naming, logic in index files), auto-lint-fix (runs Biome after every write), auto-summarize-input (warns on large inputs to preserve context window), and capture-insights (learns from recurring anti-patterns across sessions via persistent JSONL memory).",
"source": {
"source": "url",
"url": "https://github.com/YosefHayim/ai-guard-plugins.git",
"sha": "4593744fecba81ae7bcc5bb680d1b0a192e7399f"
},
"homepage": "https://github.com/YosefHayim/ai-guard-plugins#readme"
},
{
"name": "ai-integration-architect",
"description": "A Claude skill that helps teams plan, design, and scaffold AI integration into enterprise systems.\n46% of enterprises say integrating AI into existing systems is their #1 challenge. This skill acts as a senior integration architect — it assesses your system landscape, recommends architecture patterns, generates production-ready code scaffolds, and produces deployment plans with security baked in.",
"source": {
"source": "url",
"url": "https://github.com/pfbarros2/ai-integration-architect-plugin.git",
"sha": "899b1b8cfa035a7f8d571571edf64df995d7c33e"
},
"homepage": "https://github.com/pfbarros2/ai-integration-architect-plugin"
},
{
"name": "ai-plugins",
"description": "Set up endorctl and use Endor Labs to scan, prioritize, and fix security risks across your software supply chain",
"source": {
"source": "url",
"url": "https://github.com/endorlabs/ai-plugins.git",
"sha": "a0f1d5632b6f9e6c26eaa9806f5d8d454ca5b06f"
},
"homepage": "https://www.endorlabs.com"
},
{
"name": "ai-statusline",
"description": "AI-powered status line customization - Interactive setup and edit wizards for configuring Claude Code's status line with progress bars and customizable display options",
"source": {
"source": "git-subdir",
"url": "charlesjones-dev/claude-code-plugins-dev",
"path": "plugins/ai-statusline",
"ref": "main",
"sha": "47125b37720882bfa64cf2c7863cd3e5e01a5901"
},
"homepage": "https://github.com/charlesjones-dev/claude-code-plugins-dev"
},
{
"name": "aikido",
"description": "Aikido Security scanning for Claude Code — SAST, secrets, and IaC vulnerability detection powered by the Aikido MCP server.",
"source": {
"source": "url",
"url": "https://github.com/AikidoSec/aikido-claude-plugin.git",
"sha": "d7fa8b8e192680d9a26c1a5dcaead7cf5cdb7139"
},
"homepage": "https://github.com/AikidoSec/aikido-claude-plugin"
},
{
"name": "alps-writer",
"description": "MCP server for interactive ALPS (PRD) writing with AI. Guides you through 9 structured sections with templates, conversation guides, and document management.",
"source": {
"source": "url",
"url": "https://github.com/haandol/alps-writer-mcp.git",
"sha": "afb557c4e19d3e5a1ee89bd3810f15bec1b96b07"
},
"homepage": "https://github.com/haandol/alps-writer-mcp"
},
{
"name": "amazon-location-service",
"description": "Guide developers through adding maps, places search, geocoding, routing, and other geospatial features with Amazon Location Service, including authentication setup, SDK integration, and best practices.",
"category": "location",
"source": {
"source": "git-subdir",
"url": "https://github.com/awslabs/agent-plugins.git",
"path": "plugins/amazon-location-service",
"ref": "main"
},
"homepage": "https://github.com/awslabs/agent-plugins"
},
{
"name": "anamnese-core",
"description": "Secure, portable, cloud-persistent memory across every conversation. Store and retrieve your personal facts, decisions, tasks, goals, and notes. Accessible from any AI client. Export, View, Delete your data at any time.",
"source": {
"source": "git-subdir",
"url": "AnamneseAI/anamnese-plugin-marketplace",
"path": "anamnese-core",
"ref": "main"
},
"homepage": "https://anamneseai.app/"
},
{
"name": "android-kmp-playbook",
"description": "Comprehensive Claude Code toolkit for Android and Kotlin Multiplatform (KMP) many skills, sub-agents, and command enforcing Clean Architecture, Jetpack Compose best \n practices, KMP patterns, coroutines, TDD, Wear OS, TV, XR, and more.",
"source": {
"source": "url",
"url": "https://github.com/rezaiyan/android-kmp-claude-playbook.git",
"sha": "bc3496dc58e0a6d85ae731fea821091dc7cd8036"
},
"homepage": "https://github.com/rezaiyan/android-kmp-claude-playbook"
},
{
"name": "angel-ai",
"description": "This Plugin acts as a data analyst agent. The goal is to minimize costs as much as possible for early stage startups, so they can make informed decisions at a lower cost.",
"source": {
"source": "url",
"url": "https://github.com/ShayanShams8/AngelAI.git",
"sha": "eb857ea1406879cad672df474dc05105c3cc8405"
},
"homepage": "https://shayanshams8.github.io/Angweb/"
},
{
"name": "antihero",
"description": "Runtime security enforcement for AI agents. Generate policies from natural language, certify against 130+ adversarial scenarios, investigate audit trails, and simulate policy changes before deploying. Includes 8 MCP tools, ready-to-use templates, and framework adapters for LangChain, CrewAI, AutoGen, and more.",
"source": {
"source": "url",
"url": "https://github.com/productstein/antihero-claude-plugin.git",
"sha": "1f87be22b861acc16bc361203c8d709d04a5292c"
},
"homepage": "https://antiheroes.dev"
},
{
"name": "api-contract-forge",
"description": ":\nBuild production-ready API endpoints with proper contracting for any tech stack, or analyze existing API responses to generate typed contracts. Supports Express, NestJS, FastAPI, Django, Go, Spring Boot, Laravel, and Rails. Auto-detects your project's framework, validation library, and ORM, then scaffolds CRUD endpoints with validation schemas, Swagger docs, RBAC permissions, and a compliance checklist (OWASP, RFC 9457). In analyze mode, paste any JSON response to infer types, detect inconsistencies, and generate contracts in TypeScript, Zod, Pydantic, Dart, Kotlin, Swift, OpenAPI 3.1, or JSON Schema.",
"source": {
"source": "url",
"url": "https://github.com/rumitdev/claude-api-contract-forge.git",
"sha": "b67be45bfa85bb95a83175279c72b466b39b4ba3"
},
"homepage": "https://github.com/rumitdev/claude-api-contract-forge.git"
},
{
"name": "arcanum",
"description": "Advanced debugging, code review, deep research, technical documentation, creative ideation, and semi-autonomous development workflows with parallel theory validation, team-based research, war room investigation, root cause analysis, PR review assistance, elite technical writing, and Maestro development pipeline",
"source": {
"source": "url",
"url": "https://github.com/burnsbert/claude-arcanum.git",
"sha": "206e3005d368225eed1188562b1108b57e84fd2e"
},
"homepage": "https://github.com/burnsbert/claude-arcanum"
},
{
"name": "asset-generator",
"description": "Generate production-ready visual assets without leaving your terminal. Describe what you need in plain English: icons, illustrations, placeholders, and Blueprint Studio generates them in your brand's style and saves them to your project. Manage brands, invite teammates, create custom styles, and automate with API keys. Browser-based auth, no keys to copy.",
"source": {
"source": "url",
"url": "https://github.com/Blueprint-Studio-AI/claude-code-asset-generator.git",
"sha": "288b6f56e3bd3bc55a6f4a1b57d5dc4f28b471ba"
},
"homepage": "https://tools.blueprintstudio.ai"
},
{
"name": "astronomer",
"description": "Data engineering plugin for Apache Airflow and Astronomer. Author DAGs with best practices, debug pipeline failures, explore data warehouse schemas, trace data lineage, profile tables, migrate from Airflow 2 to 3, and manage local and cloud deployments all from your editor.",
"source": {
"source": "url",
"url": "https://github.com/astronomer/agents.git",
"sha": "85d6053b1e21724f9cefb1e3f5219bd54fc77224"
},
"homepage": "https://github.com/astronomer/agents"
},
{
"name": "astronomer-data-agents",
"description": "Data engineering for Apache Airflow and Astronomer. Author DAGs with best practices, debug pipeline failures, trace data lineage, profile tables, migrate Airflow 2 to 3, and manage local and cloud deployments.",
"category": "development",
"source": {
"source": "url",
"url": "https://github.com/astronomer/agents.git",
"sha": "7ef022b02f5296b5ecc52ba0db3ba9345ec03c9e"
},
"homepage": "https://github.com/astronomer/agents"
},
{
"name": "atlan",
"description": "Atlan data catalog plugin for Claude Code. Search, explore, govern, and manage your data assets through natural language. Powered by the Atlan MCP server with semantic search, lineage traversal, glossary management, data quality rules, and more.",
"source": {
"source": "url",
"url": "https://github.com/atlanhq/agent-toolkit.git",
"sha": "acdf284da6aa98b14f8dad90a9827006d8df425c"
},
"homepage": "https://docs.atlan.com/"
},
{
"name": "attune-lite",
"description": "Six developer workflow commands for Claude Code: code review, security audit, test generation, test fixing, bug prediction, and documentation generation.",
"source": {
"source": "url",
"url": "https://github.com/Smart-AI-Memory/attune-lite.git",
"sha": "03b297ef870f8c7654a0ab150fb585168d7bb7a8"
},
"homepage": "https://smartaimemory.com/attune-lite/"
},
{
"name": "audit-suite",
"description": "10 expert audit lenses + full-audit orchestrator + 5 bundled reference skills. Review plans and code through the eyes of\n Design, UX, Frontend, Backend, Structural, Repo, Production, DX, Performance, and Accessibility engineers.",
"source": {
"source": "url",
"url": "https://github.com/Recusive/Orbit-plugin.git",
"sha": "db14d72bd58141f66157691ca5c69662123c51d6"
},
"homepage": "https://orbit.build/plugin"
},
{
"name": "aurora-inbox",
"description": "Aurora Inbox is an AI-powered team inbox for WhatsApp, Facebook Messenger, and Instagram. This plugin connects Claude to the Aurora Inbox Platform API, giving you 26 tools to manage your entire communication workflow without leaving your conversation.\n\nCreate and search contacts, send messages, assign agents to chats, launch AI chatbot workflows, track sales opportunities, and configure webhooks — all through natural language. Ideal for support teams, sales ops, and developers building automations on top of Aurora Inbox.",
"source": {
"source": "url",
"url": "https://github.com/aurorainbox/aurora-mcp-plugin.git",
"sha": "63dacce2cca50f53bfa17e484422bf41e8243350"
},
"homepage": "https://developers.aurorainbox.com/scalar/#english"
},
{
"name": "author-automations-social",
"description": "Create and schedule social media posts, run AI campaigns, and manage your Author Automations Social account from Claude Code or Claude Cowork. Supports 13 platforms including Instagram, TikTok, Facebook, LinkedIn, and more.",
"source": {
"source": "url",
"url": "https://github.com/chellehoniker/claude-code-author-automations.git",
"sha": "ee22f7ce52bf3e581633bf016102c6d1fad2deb5"
},
"homepage": "https://authorautomations.social"
},
{
"name": "auto-approve-compound-bash",
"description": "Auto-approve compound Bash commands (pipes, chains, subshells) by parsing each segment via shfmt AST and checking against allow/deny lists",
"source": {
"source": "url",
"url": "https://github.com/oryband/claude-code-auto-approve.git",
"sha": "b9a20d11ed890b389d7ee5b848572ce2d75d04c2"
},
"homepage": "https://github.com/oryband/claude-code-auto-approve"
},
{
"name": "auto-memory",
"description": "Automatically maintains CLAUDE.md files as codebases evolve using hooks, agents, and skills",
"source": {
"source": "url",
"url": "https://github.com/severity1/claude-code-auto-memory.git",
"sha": "9185226d835f84220358dd4572b77af18507882a"
},
"homepage": "https://github.com/severity1/claude-code-auto-memory"
},
{
"name": "avicenna",
"description": "Code knowledge graph MCP extension — semantic code search, symbol lookup, and dependency analysis powered by tree-sitter and vector embeddings",
"source": {
"source": "url",
"url": "https://github.com/smrf1093/Avicenna.git",
"sha": "77884f2b10776a03342ab6484ccc715d9db00594"
},
"homepage": "https://smrf1093.github.io/Avicenna/"
},
{
"name": "aws-serverless",
"description": "Design, build, deploy, test, and debug serverless applications with AWS Serverless services.",
"category": "development",
"source": {
"source": "git-subdir",
"url": "https://github.com/awslabs/agent-plugins.git",
"path": "plugins/aws-serverless",
"ref": "main"
},
"homepage": "https://github.com/awslabs/agent-plugins"
},
{
"name": "backpack-ontology",
"description": "A persistent knowledge graph engine for Claude Code. Gives your AI agent structured, searchable memory that persists across sessions — stored as typed graphs with nodes and edges. Features progressive discovery so the context window stays clean: Claude browses layer by layer, only pulling in what it needs. Supports freeform schemas, full-text search, graph traversal, and bulk operations. Data is stored as human-readable JSON following the XDG specification.",
"source": {
"source": "url",
"url": "https://github.com/NoahIrzinger/backpack-ontology-plugin.git",
"sha": "846a258a3a9328c71a30e8bbf3d7d38c3d15a3b9"
},
"homepage": "https://www.npmjs.com/package/backpack-ontology"
},
{
"name": "bake-claude-md-files",
"description": "Converts CLAUDE.md rules into automated checks, freeing up agent context.",
"source": {
"source": "url",
"url": "https://github.com/publicala/bake-claude-md-files.git",
"sha": "094ad5c31ecd5bb875c4d71a09048674fb28aa94"
},
"homepage": "https://github.com/publicala/bake-claude-md-files"
},
{
"name": "bci",
"description": "The first BCI toolkit for researchers, developers, and security engineers. Threat modeling, vulnerability scoring, pattern detection, and neuroethics compliance for brain-computer interfaces. Reports are built with privacy by design and auto-redact PII. Please see Github README before use.",
"source": {
"source": "url",
"url": "https://github.com/qinnovates/bci-security.git",
"sha": "d52bad058977385ddce171958b15243bbe8c53c6"
},
"homepage": "https://github.com/qinnovates/bci-security"
},
{
"name": "bells-and-whistles",
"description": "Bells and Whistles plays notification sounds and optional voice announcements when Claude Code finishes working or needs your attention. Choose from 10 themed sound packs (videogame, Disney, anime, movies, 90s rock, classical, cyberpunk, D&D, and more — each with 10 unique melodies) and add text-to-speech with accent, gender, and style options. Supports per-tab muting in tmux, themed speech phrases, and works across macOS, Linux, and WSL with graceful fallback to terminal bell over SSH.",
"source": {
"source": "url",
"url": "https://github.com/etr/bells-and-whistles.git",
"sha": "0f29d01ffa98e54d2dd801215f1d9bf00479dde2"
},
"homepage": "https://github.com/etr/bells-and-whistles"
},
{
"name": "better-dev",
"description": "[meta] better development: CSS workflows, Firebase development, code quality, real testing, parallel exploration, documentation verification, and token-efficient codegen",
"source": {
"source": "git-subdir",
"url": "2389-research/claude-plugins",
"path": "better-dev",
"ref": "main",
"sha": "8373e340d0508b5e9bdaf1e365db977c4c730761"
},
"homepage": "https://plugins.2389.dev/"
},
{
"name": "bibtidy",
"description": "Claude Code skill that verifies BibTeX entry content against Google Scholar and CrossRef.",
"source": {
"source": "url",
"url": "https://github.com/mathpluscode/bibtidy.git",
"sha": "ca66296ebabcf3d39afa2a33a1c3b9492caa09f3"
},
"homepage": "https://github.com/mathpluscode/bibtidy"
},
{
"name": "billing-plane",
"description": "BillingPlane is a Stripe billing intelligence plugin for Claude that prevents common revenue-losing billing bugs during development.\n\nInstead of adding another billing middleware or SDK into your production stack, BillingPlane works at build time. It teaches Claude how to generate correct billing logic, webhook handlers, entitlements, and usage billing patterns directly in your codebase.\n\nBillingPlane encodes 4,000+ lines of production billing patterns including lifecycle handling, idempotent Stripe webhook processing, subscription state management, credit systems, and feature gating. When developers run BillingPlane commands, Claude generates production-ready billing code that follows strict guardrails used in real SaaS systems.\n\nThe result is a vendor-free billing architecture: developers keep full control of their code while avoiding common Stripe mistakes such as duplicate webhooks, incorrect subscription states, entitlement drift, or broken usage billing.\n\nBillingPlane includes commands for auditing existing billing systems, discovering missing logic, implementing full billing infrastructure, and validating production safety.\n\nNo runtime dependency. No middleware. Just correct billing logic generated by Claude.\n\nIdeal Users\n\nBillingPlane is designed for:\n\nSaaS founders building Stripe billing\n\nAI-assisted coding workflows using Claude\n\nteams implementing subscription or usage-based pricing\n\ndevelopers migrating away from billing middleware\n\nengineers who want full ownership of billing code\n\nKey Capabilities\n\nStripe lifecycle handling\n\nsubscription state management\n\nentitlement systems\n\nusage billing logic\n\nconcurrency safety patterns\n\nwebhook idempotency\n\ncredit systems\n\nfeature gating engines",
"source": {
"source": "url",
"url": "https://github.com/kamesh231/billingplane.git",
"sha": "dd8a4850602ece6dfbf13c2796e09b28257d309c"
},
"homepage": "https://www.billingplane.com/"
},
{
"name": "billingplane",
"description": "Guardrails-first Stripe billing integration. Audit existing billing code, discover requirements, implement bulletproof billing, and validate edge cases. Zero runtime dependencies — knowledge stays in your codebase.",
"source": {
"source": "url",
"url": "https://github.com/kamesh231/billingplane.git",
"sha": "dd8a4850602ece6dfbf13c2796e09b28257d309c"
},
"homepage": "https://www.billingplane.com/"
},
{
"name": "bitcoin-companies",
"description": "Bitcoin treasury research terminal — search companies, compare holdings, explore on-chain addresses & transactions, read reviews, and generate reports",
"source": {
"source": "url",
"url": "https://github.com/sbounmy/bitcoin-companies-skills.git",
"sha": "0e12db6aedb6ac1302bbf8a4238dd5a5e386177c"
},
"homepage": "https://github.com/sbounmy/bitcoin-companies-skills"
},
{
"name": "bluebubbles-gateway",
"description": "Allows you to use iMessage via BlueBubbles with Claude Code channels.",
"source": {
"source": "url",
"url": "https://github.com/dmd/claudecode-channels-bluebubbles.git",
"sha": "fb9e6bd462ef3b0b6f369e8f2b304aa5ba20ba9b"
},
"homepage": "https://github.com/dmd/claudecode-channels-bluebubbles"
},
{
"name": "botboard-biz",
"description": "[meta] botboard.biz: social media and journaling capabilities for AI agents",
"source": {
"source": "git-subdir",
"url": "2389-research/claude-plugins",
"path": "botboard-biz",
"ref": "main",
"sha": "8373e340d0508b5e9bdaf1e365db977c4c730761"
},
"homepage": "https://plugins.2389.dev/"
},
{
"name": "brand-md",
"description": "Generate brand.md files - the open standard for brand identity. Like AGENTS.md gives AI agents coding instructions, brand.md gives them brand context. The skill researches your market, interviews you as the founder, and produces a complete brand strategy, voice identity, and visual direction - all in a single markdown file that lives in your project root.",
"source": {
"source": "url",
"url": "https://github.com/caiopizzol/brand.md.git",
"sha": "b78418643b4cad3279c94a287a382710b5c94ab4"
},
"homepage": "https://brand-md.pages.dev"
},
{
"name": "bright-data",
"description": "One MCP for the Web. Easily search, crawl, navigate, and extract websites without getting blocked. Ideal for discovering and retrieving structured insights from any public source - effortlessly and ethically. Covers 60+ tools across search engines, e-commerce, social media, business directories, finance, and more.",
"source": {
"source": "url",
"url": "https://github.com/brightdata/skills.git",
"sha": "2083ed0523eb9a72e5707cd86f054e69ea8559a2"
},
"homepage": "https://docs.brightdata.com"
},
{
"name": "brightdata-plugin",
"description": "Web scraping, Google search, structured data extraction, and MCP server integration powered by Bright Data. Includes 7 skills: scrape any webpage as markdown (with bot detection/CAPTCHA bypass), search Google with structured JSON results, extract data from 40+ websites (Amazon, LinkedIn, Instagram, TikTok, YouTube, and more), orchestrate Bright Data's 60+ MCP tools, built-in best practices for Web Unlocker, SERP API, Web Scraper API, and Browser API, Python SDK best practices for the brightda...",
"source": {
"source": "url",
"url": "https://github.com/brightdata/skills.git",
"sha": "e671da495f7ec0ed6be5e9fa71e260f886a1dc36"
},
"homepage": "https://docs.brightdata.com"
},
{
"name": "bug-fixing-autoreport",
"description": "Adds structured error logging, a secure /api/errors endpoint, and a /bug-report command to any Laravel or Node/Express project. Enables Claude to fetch production errors, analyze root causes, and propose fixes.",
"source": {
"source": "url",
"url": "https://github.com/maxirodr/bug-fixing-autoreport.git",
"sha": "fd4277478864ce66cedbc45deb6f53d4556936bb"
},
"homepage": "https://github.com/maxirodr/bug-fixing-autoreport"
},
{
"name": "bugbash",
"description": "Bugbash is a Claude Code plugin for hands-on bug hunting: you exercise the running app (API, UI, CLI) first, then use code only to narrow what you already observed. It’s built around a clear charter, find and reproduce issues with evidence, not to debug or ship fixes unless you ask. It includes quick / standard / deep intensity, evidence bars by severity, a flaky vs confirmed split, optional JSON for filing tickets, and subagents tuned for API vs UI testing.",
"source": {
"source": "url",
"url": "https://github.com/riwaht/claude-bugbash.git",
"sha": "085be49d70c5fd1f46fc7858b72a05e61eb56395"
},
"homepage": "https://github.com/riwaht/claude-bugbash/blob/main/README.md"
},
{
"name": "building-multiagent-systems",
"description": "Architecture patterns for multi-agent systems with orchestrators, sub-agents, and tool coordination",
"source": {
"source": "git-subdir",
"url": "2389-research/claude-plugins",
"path": "building-multiagent-systems",
"ref": "main",
"sha": "8373e340d0508b5e9bdaf1e365db977c4c730761"
},
"homepage": "https://plugins.2389.dev/"
},
{
"name": "business-card-generator",
"description": "Generate professional, print-ready business card PDFs directly from Claude Code. Produces cards meeting full print shop specifications: 300 DPI resolution, CMYK color mode, 0.125 inch bleed on all sides, trim/crop marks, and CMYK color bars for press verification. All text is enforced within a safe zone. Choose from three design styles (classic, modern, minimal), add optional company logos, and get a PDF ready to send to any printer. Just describe your card in natural language and Claude handles the rest.",
"source": {
"source": "url",
"url": "https://github.com/revathikbose/business-card-generator.git",
"sha": "2ac1be5a4dd2d978cf98a45a73c0059418001ff7"
},
"homepage": "https://github.com/revathikbose"
},
{
"name": "c3poh-telegram-bridge-for-claude-code",
"description": "DM your Claude Code agent from your phone and get answers back. C3Poh connects Claude Code to Telegram using long-polling, so there are no webhooks, no inbound ports, and no ngrok. All traffic is outbound-only. Access is locked to an allowlist of Telegram user IDs you configure. Bot tokens stay out of config files. Integrates with TinMan to receive heartbeat alerts on your phone. Requires only Python 3.9+ and Claude CLI.",
"source": {
"source": "url",
"url": "https://github.com/andyuninvited/c3poh_for_claudecode.git",
"sha": "8cb2f669fba7ad6eb43837ac0d10b2afa8398bbd"
},
"homepage": "https://andyuninvited.github.io/tinman_for_claudecode/"
},
{
"name": "canadian-regulatory-compliance",
"description": "A Claude Code skill that answers Canadian compliance questions across 13 regulatory domains — privacy, employment, CASL, tax, and more.\n\nCanadian regulatory law is complex, spans multiple jurisdictions, and changes often. This plugin gives your team instant access to practical guidance across eleven regulatory areas, helping you understand your obligations, review documents, generate checklists, draft notices, and get quick answers — all without having to wade through dense legislation.\n\nWho it's for: Business owners, operations managers, HR leads, finance teams, banking professionals, and anyone who needs to make informed compliance decisions day-to-day.\n\nJurisdictions covered: Federal · Ontario · British Columbia · Alberta · Quebec",
"source": {
"source": "url",
"url": "https://github.com/Srivatsa-Kasagar/canadian-regulatory-compliance.git",
"sha": "b25acacc68d2781b093ea3f043073a1cd64c6af1"
},
"homepage": "https://srivatsa-kasagar.github.io/canadian-regulatory-compliance"
},
{
"name": "career-brand",
"description": "AI-powered personal branding and career strategy for LinkedIn. Two skills that work together:\n\n /brand — Scans your LinkedIn profile, learns your story, and helps you write posts that sound like you (not like AI). Creates monthly content calendars,\n brainstorms ideas from your recent work, and offers hook variations to choose from. Supports any language.\n\n /career — Career co-pilot that considers your full picture: job search, side projects, and unique background. Evaluates job offers, optimizes your\n LinkedIn profile, builds networking strategies, and preps you for interviews with stories from your real experience.\n\n Includes a career-advisor agent that ensures your content strategy aligns with your career goals. Works for engineers, product managers, founders, career\n changers, and anyone who deserves to be visible for the work they do.",
"source": {
"source": "url",
"url": "https://github.com/asaferdman23/career-brand-plugin.git",
"sha": "a10f909e761fb3a3722facbdbe75d1bccb116ca9"
},
"homepage": "https://career-brand.cc"
},
{
"name": "careerproof",
"description": "Career and workforce intelligence built on a deep HR ontology — skill taxonomies, role definitions and responsibilities, compensation and incentive structures, learning and development pathways, sourcing strategies, and role/skill evolution mapping. This structured foundation, combined with a RAG knowledge base curated from 50+ premium sources (HBR, McKinsey, BCG, Gartner, Forrester) and updated 3x daily with live web research, powers 6 guided skills and 42 MCP tools for two audiences: working professionals getting personalized career intelligence (CV optimization, salary benchmarking, career strategy), and HR/TA teams running structured talent evaluation, candidate shortlisting, compensation analysis, and consulting-grade workforce research reports.",
"source": {
"source": "url",
"url": "https://github.com/dontellu77/careerproof-claude-skills.git",
"sha": "b7fdf9f0ac30618b9533ef49682a897e64393b98"
},
"homepage": "https://careerproof.ai"
},
{
"name": "carryall-policy-enforcement",
"description": "Deterministic IAM control plane for AI agents. \n\nTranslates natural language intent into minimal-scope Ed25519-signed envelopes. You bring your own data plane.\n\nCarryall governs access with least-privilege enforcement and a tamper-evident audit trail.",
"source": {
"source": "url",
"url": "https://github.com/tronmongoose/agent.carryall_plugin.git",
"sha": "08569f5cc29d42b768c15c48d970b2ec0bcae487"
},
"homepage": "https://github.com/tronmongoose/agent.carryall_plugin"
},
{
"name": "cashflow",
"description": "Personal finance ledger for AI agents. Connect your bank accounts via Plaid, then query spending, track recurring bills, categorize transactions, and get financial recaps — all through MCP tools with OAuth authentication.",
"source": {
"source": "url",
"url": "https://github.com/cashflow-tech/plugin.git",
"sha": "f270ddaf2952ae7fc44372cbaad3594ac914c4de"
},
"homepage": "https://cashflow.tech"
},
{
"name": "cassiiopeia",
"description": "DevOps automation skills for full software development lifecycle. 20 skills covering code analysis, design, implementation, testing, code review, refactoring, documentation, troubleshooting, report generation,\n issue drafting, Git worktree management, Figma integration, and Spring Boot test generation. Supports Spring, Flutter, React, Next.js, Node.js, and Python projects. All skills output in Korean.",
"source": {
"source": "url",
"url": "https://github.com/Cassiiopeia/SUH-DEVOPS-TEMPLATE.git",
"sha": "0b0485071ee08360b0529d10a6b3a0d8bad6622b"
},
"homepage": "https://github.com/Cassiiopeia/SUH-DEVOPS-TEMPLATE"
},
{
"name": "cc-boost",
"description": "cc-boost is an open-source Claude Code plugin that reduces token consumption by filtering noisy tool output before it reaches the context\n window. It strips ANSI escape codes, collapses repetitive npm/pip progress bars into single summary lines, and folds consecutive node_modules stack frames into compact summaries — typically achieving 60–90% character reduction on verbose command output. It also intercepts interactive scaffold commands (create-next-app, vite, sveltekit, remix, angular) that Claude cannot run interactively, prompting Claude to ask the user for configuration choices first before re-running with the correct flags.",
"source": {
"source": "url",
"url": "https://github.com/sworddut/cc-boost.git",
"sha": "76292d606f5828fb7d0dc16e69e97c3abfce38a4"
},
"homepage": "https://github.com/sworddut/cc-boost"
},
{
"name": "cc-dm",
"description": "Peer-to-peer direct messaging between Claude Code sessions via the Channels protocol. Enables multi-session coordination through a shared SQLite message bus. Register sessions with human-readable names, send direct messages between sessions, broadcast to all active sessions, and check who's online — all without any network exposure.",
"source": {
"source": "url",
"url": "https://github.com/Akram012388/cc-dm.git",
"sha": "5d893af8294c4a3eaf70825ee27e483c3e05267f"
},
"homepage": "https://github.com/Akram012388/cc-dm"
},
{
"name": "cc-terminal-notifier",
"description": "Native terminal notifications when Claude Code needs your attention",
"source": {
"source": "url",
"url": "https://github.com/matjic/cc-terminal-notifier.git",
"sha": "f14dd5fdcfed1ae259b84247fdad8c4629e7443d"
},
"homepage": "https://github.com/matjic/cc-terminal-notifier"
},
{
"name": "cf-crawl",
"description": "Crawl any website via Cloudflare Browser Rendering API. Free Firecrawl alternative — returns clean markdown, HTML, or JSON. No rate limits, no API keys to buy.",
"source": {
"source": "url",
"url": "https://github.com/mslugga35/claude-plugin-cf-crawl.git",
"sha": "95675d4094f3717372ba4e10663298298173a9e0"
},
"homepage": "https://github.com/mslugga35/claude-plugin-cf-crawl"
},
{
"name": "challenger",
"description": "Multi-agent adversarial plugin that stress-tests code decisions, architecture plans, and reasoning through evidence-backed challenge rounds. Four specialized agents (Skeptic, Sentinel, Architect, Pragmatist) take turns poking holes in your conclusions using actual codebase evidence — reading code, searching patterns, and checking git history. Auto-scales intensity from quick sanity checks to brutal multi-round reviews based on stakes. Includes a passive advisory agent that suggests challenging during high-stakes moments, and a report generator for audit trails.",
"source": {
"source": "url",
"url": "https://github.com/ismailnakkar/challenger-plugin.git",
"sha": "65e15122d45279dea13eae3cb43bc20ccee98fd7"
},
"homepage": "https://github.com/ismailnakkar/challenger-plugin"
},
{
"name": "change-management-plugin",
"description": "A structured organizational change management (OCM) plugin for Claude. Covers the full engagement lifecycle — grounded in the principle that behavior follows structure, not awareness.",
"source": {
"source": "url",
"url": "https://github.com/ignite-consulting/change-management.git",
"sha": "a420980e727e5d656d362c8569329bb62a17bdfc"
},
"homepage": "https://github.com/ignite-consulting/change-management"
},
{
"name": "channel-mattermost",
"description": "Mattermost channel for Claude Code — two-way messaging bridge with built-in access control for self-hosted Mattermost instances. Manage pairing, allowlists, and policy via /mattermost:access",
"source": {
"source": "url",
"url": "https://github.com/todd-chamberlain/claude-channel-mattermost.git",
"sha": "dcdd3b7d1aeb11ff546fa9b0c21a052c946f9c86"
},
"homepage": "https://github.com/todd-chamberlain/claude-channel-mattermost"
},
{
"name": "chat-auto-exporter",
"description": "A Claude Code plugin that automatically saves your conversations as readable text files before context compaction and when sessions end. Never lose a conversation again.",
"source": {
"source": "url",
"url": "https://github.com/christancho/chat-autoexporter.git",
"sha": "573968e6d8883a9e819458bfeaa738d03b9ca6ca"
},
"homepage": "https://christancho.github.io/chat-autoexporter/"
},
{
"name": "chat-namer",
"description": "Name, search, and resume your Claude Code conversations. Automatically names every conversation from the first message via a Stop\n hook. Provides slash commands to list, search, rename, and find conversations to resume. Includes standalone CLI. Zero dependencies.",
"source": {
"source": "url",
"url": "https://github.com/Jamaalx/claude-chat-namer.git",
"sha": "c27397ec96e095d6ce5608481f29eecd5578c950"
},
"homepage": "https://github.com/Jamaalx/claude-chat-namer"
},
{
"name": "checkpoint-architect",
"description": "审查点构建助手 - 帮助产品经理通过引导式对话创建符合系统规范的审查点内容",
"source": {
"source": "url",
"url": "https://github.com/breezewang19-lang/checkpoint-architect-plugin.git",
"sha": "6d4b0eab846b4ed5f6931bec9562686333ae5381"
},
"homepage": "https://github.com/breezewang19-lang/checkpoint-architect-plugin"
},
{
"name": "checkpointarchitect",
"description": "CheckPoint Architect - 审查点构建助手\n一个 Claude Code 插件,帮助产品经理通过引导式对话快速创建符合系统规范的审查点内容。\n\n功能特性\n引导式对话:无需技术背景,只需回答问题即可生成专业审查点文档\n两种模式:\n快速模式:用自然语言描述审查逻辑\n引导模式:通过逐步引导问题构建审查点\n5种审查模式:\n文书完整性检查\n时限合规性检查\n信息一致性检查\n程序合规性检查\n自定义逻辑\n自动验证:内置验证器确保内容符合格式规范\n可视化流程图:自动生成 Mermaid 和 ASCII 流程图",
"source": {
"source": "url",
"url": "https://github.com/breezewang19-lang/checkpoint-architect-plugin.git",
"sha": "6d4b0eab846b4ed5f6931bec9562686333ae5381"
},
"homepage": "https://github.com/breezewang19-lang/checkpoint-architect-plugin"
},
{
"name": "chess-coach-ai",
"description": "AI-powered chess coaching system with multi-agent cowork architecture. 4\n specialized agents work together to provide comprehensive coaching:\n\n • Intel — Opponent scouting via Lichess API, Opening Explorer analysis, player\n profiling with style classification\n • GM — Stockfish analysis with time-controlled profiles (quick/normal/deep),\n error classification by cognitive origin (tactical miss, conceptual weakness,\n pattern recognition failure, time pressure), DQM scoring, endgame tablebases,\n personalized training roadmaps\n • Mind — Complete 3-phase mental performance framework (based on Jared\n Tendler's methodology): self-awareness (7 tilt types), self-regulation\n (pre/during/post-game protocols), and opponent psychological conditioning\n • Biohack — Evidence-based nutrition, supplementation, sleep optimization, and\n full weekly preparation protocols timed to your game schedule\n\n Agents communicate via agent_notes system and the coordinator synthesizes\n their outputs. Includes scoresheet/board photo scanning, local game vault, and\n Stockfish WASM fallback (no install required).",
"source": {
"source": "url",
"url": "https://github.com/datoga/chess-coach-ai.git",
"sha": "81f54dcbbb5c2a1f8919d7597c7f9870140dbd9e"
},
"homepage": "https://github.com/datoga/chess-coach-ai"
},
{
"name": "chrome-devtools-mcp",
"description": "Control and inspect a live Chrome browser from your coding agent. Record performance traces, analyze network requests, check console messages with source-mapped stack traces, and automate browser actions with Puppeteer.",
"category": "development",
"source": {
"source": "url",
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp.git",
"sha": "c2d8009ff75f76bce1ec4cf79c2467b50d81725e"
},
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp"
},
{
"name": "chuck",
"description": "Smart context injection for Claude Code — injects relevant rules per prompt, remembers architectural decisions, catches contradictions in real-time",
"source": {
"source": "url",
"url": "https://github.com/cssmith615/chuck-plugin.git",
"sha": "5688918ed9ab423a5e1a3a58712325e0904eb4fd"
},
"homepage": "https://github.com/cssmith615/chuck"
},
{
"name": "civic",
"description": "Connect Claude Code to Civic for guardrails, scoped permissions, audit trails, and revocable access control. Every tool call is logged, permissions are user-controlled, and access can be revoked instantly.",
"source": {
"source": "url",
"url": "https://github.com/civicteam/civic-mcp-gateway.git",
"sha": "2ec8eef5c957f9e5117e136ed495793406841054"
},
"homepage": "https://civic.com"
},
{
"name": "claude-backup",
"description": "Back up and restore your Claude Code environment",
"source": {
"source": "url",
"url": "https://github.com/tombelieber/claude-backup.git",
"sha": "b016ff51c085c41d1974b20a025c9521ebc1e6ee"
},
"homepage": "https://github.com/tombelieber/claude-backup"
},
{
"name": "claude-chat-search",
"description": "Full-text search across all Claude Code conversations. Search through conversation content including messages, tool results, and code — find any past discussion instantly. Works locally, no external services needed.",
"source": {
"source": "url",
"url": "https://github.com/danutmitrut/claude-chat-search.git",
"sha": "b75501addb0c7027a8244030c1c8502f8464dfa0"
},
"homepage": "https://github.com/danutmitrut/claude-chat-search"
},
{
"name": "claude-co2-status-line",
"description": "Adds a status line that estimates the environmental cost of your Claude Code session in real time. Shows cumulative energy usage (Wh), CO2 \n emissions (g), water consumption (ml), and token count — updated after every interaction. Based on published research from Epoch AI, with all \n formulas and sources documented. Supports wrapping existing statuslines and opt-in all-time tracking.",
"source": {
"source": "url",
"url": "https://github.com/stuartshields/claude-co2-status-line.git",
"sha": "7b7fa1638fcd1aa94efeb495cfb51fc67c4b32d7"
},
"homepage": "https://github.com/stuartshields/claude-co2-status-line"
},
{
"name": "claude-code-achievements",
"description": "Steam-style achievement system for Claude Code",
"source": {
"source": "url",
"url": "https://github.com/subinium/claude-code-achievements.git",
"sha": "d05e7530efe08ff20b43b5f655984f54b0327c55"
},
"homepage": "https://github.com/subinium/claude-code-achievements"
},
{
"name": "claude-code-organizer",
"description": "Visual dashboard to organize all your Claude Code memories, skills, MCP servers, hooks, and configs. View everything in a scope hierarchy (Global > Workspace > Project), drag-and-drop items between scopes, search and filter across all customizations, preview file contents — all from a zero-dependency web UI.",
"source": {
"source": "url",
"url": "https://github.com/mcpware/claude-code-organizer.git",
"sha": "7b47821b30b1c1064971f6dafa217bed2e76cc31"
},
"homepage": "https://www.npmjs.com/package/@mcpware/claude-code-organizer"
},
{
"name": "claude-code-plugin-for-goodmem-a-memory-infra-for-agents",
"description": "With this plugin, you can operate Goodmem's memory infra in plain English, to create, manage, and orchestrate embedders, rerankers, and LLMs, to ingest and create memories from files, base64 strings, and plain text, and to build knowledge-powered agents, such as RAG and Deep Research.",
"source": {
"source": "url",
"url": "https://github.com/PAIR-Systems-Inc/goodmem-claude-code-plugin.git",
"sha": "30f9df33a32b8481386a7bab909182100330895d"
},
"homepage": "https://github.com/PAIR-Systems-Inc/goodmem-claude-code-plugin"
},
{
"name": "claude-forge",
"description": "Evidence-first Claude Code plugin for repeatable, spec-driven development workflows.",
"source": {
"source": "url",
"url": "https://github.com/JunghyunRyu/claude-forge.git",
"sha": "db4b25cc403d83e5ebbbc66867155a2dc5e530a3"
},
"homepage": "https://github.com/JunghyunRyu/claude-forge"
},
{
"name": "claude-hud",
"description": "Real-time statusline HUD for Claude Code - context health, tool activity, agent tracking, and todo progress",
"source": {
"source": "url",
"url": "https://github.com/jarrodwatts/claude-hud.git",
"sha": "e10c67db09e3c1266ac7a74b080653896591bae3"
},
"homepage": "https://github.com/jarrodwatts/claude-hud/"
},
{
"name": "claude-lens",
"description": "Fast statusline for Claude Code with pace tracking. Shows quota remaining and whether you're ahead or behind ideal consumption pace -- green means headroom, red means slow down. Also displays context usage with trend arrows, git status, active tools, subagent/todo progress, and session speed. Pure Bash + jq, renders in ~50ms, O(1) transcript parsing, zero config required.",
"source": {
"source": "url",
"url": "https://github.com/Astro-Han/claude-lens.git",
"sha": "0cf3045516950187a2843710d32c71b7e41c8130"
},
"homepage": "https://github.com/Astro-Han/claude-lens"
},
{
"name": "claude-library",
"description": "23 reusable skills, 2 agents, and smart hooks for any project. Covers the full development cycle: architecture mapping, \n implementation planning, code review, safe refactoring, security-aware editing, quality audits, and 5 interactive learning \n modules with persistent memory. Hooks auto-lint Python files, block destructive git commands, protect sensitive files, and \n auto-suggest relevant skills based on your prompt.",
"source": {
"source": "url",
"url": "https://github.com/tabers77/claude_experiments.git",
"sha": "09f74f9771f029dc877e1ab8d52033553a8cb250"
},
"homepage": "https://github.com/tabers77/claude_experiments"
},
{
"name": "claude-md-optimizer",
"description": "Optimize oversized CLAUDE.md files using progressive disclosure, content tiers, encryption constraints, and sub-documents.",
"source": {
"source": "url",
"url": "https://github.com/wrsmith108/claude-md-optimizer.git",
"sha": "3c1a5258cfb813a5d6e57ec6bbf5cfc1afa6e3c9"
},
"homepage": "https://skillsmith.app"
},
{
"name": "claude-memory",
"description": "A Claude Code plugin that adds structured, categorized memory to your projects.",
"source": {
"source": "url",
"url": "https://github.com/tars23364-bit/claude-memory.git",
"sha": "b06b922bd29800fb7bcab4285608ba5821367a13"
},
"homepage": "https://github.com/tars23364-bit/claude-memory"
},
{
"name": "claude-paste",
"description": "Paste clipboard screenshots into Claude Code automatically. Zero dependencies, cross-platform.",
"source": {
"source": "url",
"url": "https://github.com/mailfnguides-del/Claude-Paste.git",
"sha": "510fa62159381c3f3a84f3886e5c674f97c52ba3"
},
"homepage": "https://github.com/mailfnguides-del/Claude-Paste"
},
{
"name": "claude-review-loop",
"description": "Automated code review and swarm remediation for large changesets. Spawns adversarial reviewer agents, presents findings interactively, then dispatches fixer agents to remediate approved issues.",
"source": {
"source": "url",
"url": "https://github.com/andytango/claude-review-loop.git",
"sha": "e6ea813d6c30bc94e3d2d2e001b2b3ef581ba088"
},
"homepage": "https://andytango.github.io/claude-review-loop-site/"
},
{
"name": "claude-skills-updater",
"description": "A Claude Code plugin that audits and updates your installed plugins/skills to their latest versions.",
"source": {
"source": "url",
"url": "https://github.com/dcuenot/claude-skills-updater.git",
"sha": "f62ea2f1a31a5c69b9e07dd43c9f8fbfc9acd55e"
},
"homepage": "https://github.com/dcuenot/claude-skills-updater"
},
{
"name": "claude-tab-fix",
"description": "Fixes silent Edit failures caused by tab/space indentation mismatches in tab-indented files (Go, Templ, Rust, Makefiles, and others).",
"source": {
"source": "url",
"url": "https://github.com/WithHolm/claude-tab-fix.git",
"sha": "978d015391befc49ec71bd676d303a260ced25b2"
},
"homepage": "https://github.com/WithHolm/claude-tab-fix"
},
{
"name": "claude-vault",
"description": "Session analytics MCP plugin for Claude Code. Ingests JSONL conversation logs into SQLite JSONB, tags sessions by namespace, and produces structured reports with optional redaction.",
"source": {
"source": "url",
"url": "https://github.com/hazyhaar/claude-vault.git",
"sha": "db09b467aaad564088eeca387d550f7ca6b98402"
},
"homepage": "https://github.com/hazyhaar/claude-vault"
},
{
"name": "claude-workflow",
"description": "A Claude Code plugin that drives agents through YAML-defined state machines. Define workflows as YAML with states, transitions, and prompts.\nThe engine tracks state, enforces guards, manages nested sub-workflow stacks, and persists every mutation atomically.\nIncludes 16 bundled workflows covering the full agent lifecycle — from task routing and coding to review, testing, and reflection.\nShips with a web dashboard for real-time session monitoring and workflow graph visualization.",
"source": {
"source": "url",
"url": "https://github.com/AxGord/claude-workflow.git",
"sha": "0fab3bc19ba8adc3448f7634ab9fc0f305308c8b"
},
"homepage": "https://github.com/AxGord/claude-workflow"
},
{
"name": "clawback",
"description": "Webhooks and cron scheduling for Claude Code. Receive events\n from external services like GitHub, Stripe, and Sentry, route\n them to the right session, and let Claude act on them\n automatically. Events are durably queued, delivered one at a\n time, and survive connection drops.",
"source": {
"source": "url",
"url": "https://github.com/clawback-io/clawback.git",
"sha": "6fb339ee7a38f931892743733048d1fabce89dc0"
},
"homepage": "https://getclawback.io/"
},
{
"name": "cletus-loop",
"description": "Run iterative agent loops with fresh context per iteration. Each iteration spawns a new Claude process — no accumulated history, no parent contamination.",
"source": {