loadout-ai 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/MASTER_PLAN.md +1711 -0
- package/README.md +453 -0
- package/SECURITY.md +18 -0
- package/SIMPLE_PLAN.md +44 -0
- package/catalog/discovered.json +10469 -0
- package/catalog/packages.json +1150 -0
- package/dashboard/app.js +607 -0
- package/dashboard/index.html +249 -0
- package/dashboard/styles.css +384 -0
- package/dist/src/cli.js +2735 -0
- package/dist/src/core/active-policy.js +233 -0
- package/dist/src/core/active-set.js +382 -0
- package/dist/src/core/adapters.js +254 -0
- package/dist/src/core/adopt.js +92 -0
- package/dist/src/core/agent-health-score.js +475 -0
- package/dist/src/core/agent-inspection.js +152 -0
- package/dist/src/core/agent-versions.js +131 -0
- package/dist/src/core/api.js +90 -0
- package/dist/src/core/atomic-file.js +22 -0
- package/dist/src/core/audit.js +174 -0
- package/dist/src/core/benchmark-campaign.js +496 -0
- package/dist/src/core/benchmark-evidence.js +458 -0
- package/dist/src/core/benchmark-fixtures.js +1157 -0
- package/dist/src/core/benchmark-runner.js +301 -0
- package/dist/src/core/benchmark-trust.js +795 -0
- package/dist/src/core/canary.js +77 -0
- package/dist/src/core/candidate-intelligence.js +661 -0
- package/dist/src/core/catalog-coverage.js +85 -0
- package/dist/src/core/catalog-install.js +186 -0
- package/dist/src/core/catalog-release.js +286 -0
- package/dist/src/core/catalog.js +327 -0
- package/dist/src/core/codex-mcp.js +122 -0
- package/dist/src/core/community.js +86 -0
- package/dist/src/core/compatibility-intelligence.js +465 -0
- package/dist/src/core/completion.js +160 -0
- package/dist/src/core/components.js +138 -0
- package/dist/src/core/conversion.js +56 -0
- package/dist/src/core/credentials.js +377 -0
- package/dist/src/core/demo.js +136 -0
- package/dist/src/core/diff.js +83 -0
- package/dist/src/core/discovery-connector.js +165 -0
- package/dist/src/core/doctor.js +95 -0
- package/dist/src/core/ecosystem-import.js +1072 -0
- package/dist/src/core/evaluate.js +72 -0
- package/dist/src/core/file-lock.js +140 -0
- package/dist/src/core/freshness-alerts.js +230 -0
- package/dist/src/core/github-discovery.js +97 -0
- package/dist/src/core/github.js +148 -0
- package/dist/src/core/head-to-head.js +437 -0
- package/dist/src/core/health-score-evidence.js +169 -0
- package/dist/src/core/health.js +129 -0
- package/dist/src/core/improve.js +223 -0
- package/dist/src/core/install.js +233 -0
- package/dist/src/core/intelligence-feed-build.js +59 -0
- package/dist/src/core/intelligence-feed.js +353 -0
- package/dist/src/core/loadout-badge.js +55 -0
- package/dist/src/core/loadout-card.js +87 -0
- package/dist/src/core/manifest.js +307 -0
- package/dist/src/core/mcp-recipes.js +419 -0
- package/dist/src/core/mcp-registry-discovery.js +455 -0
- package/dist/src/core/mcp.js +287 -0
- package/dist/src/core/model-config.js +102 -0
- package/dist/src/core/observations.js +87 -0
- package/dist/src/core/outcomes.js +164 -0
- package/dist/src/core/package.js +225 -0
- package/dist/src/core/paths.js +214 -0
- package/dist/src/core/portable.js +130 -0
- package/dist/src/core/private-discovery.js +45 -0
- package/dist/src/core/profiles.js +255 -0
- package/dist/src/core/provenance.js +278 -0
- package/dist/src/core/ranking.js +104 -0
- package/dist/src/core/recommend.js +181 -0
- package/dist/src/core/registry-api.js +97 -0
- package/dist/src/core/registry.js +316 -0
- package/dist/src/core/release-claims.js +175 -0
- package/dist/src/core/remove.js +122 -0
- package/dist/src/core/review-queue.js +200 -0
- package/dist/src/core/runtime-tool-recipe.js +315 -0
- package/dist/src/core/runtime-tools.js +453 -0
- package/dist/src/core/safety.js +234 -0
- package/dist/src/core/sandbox.js +78 -0
- package/dist/src/core/scheduler.js +264 -0
- package/dist/src/core/share-report.js +85 -0
- package/dist/src/core/signing.js +115 -0
- package/dist/src/core/skill-compare.js +239 -0
- package/dist/src/core/skill-inventory.js +193 -0
- package/dist/src/core/skill-security.js +340 -0
- package/dist/src/core/skills-sh-discovery.js +336 -0
- package/dist/src/core/skills.js +208 -0
- package/dist/src/core/snapshot.js +210 -0
- package/dist/src/core/source.js +305 -0
- package/dist/src/core/state.js +300 -0
- package/dist/src/core/sync.js +348 -0
- package/dist/src/core/terminal.js +53 -0
- package/dist/src/core/transaction.js +211 -0
- package/dist/src/core/update-watch.js +39 -0
- package/dist/src/core/update.js +216 -0
- package/dist/src/core/upgrade.js +207 -0
- package/dist/src/dashboard.js +418 -0
- package/dist/src/shared/schemas.js +336 -0
- package/dist/src/shared/types.js +1 -0
- package/docs/ACTIVE_SET.md +53 -0
- package/docs/ACTIVE_SET_POLICY.md +45 -0
- package/docs/CANDIDATE_INTELLIGENCE.md +139 -0
- package/docs/CATALOG.md +78 -0
- package/docs/CATALOG_POLICY.md +41 -0
- package/docs/COMMUNITY_DISCOVERY.md +14 -0
- package/docs/COMPATIBILITY_POLICY.md +22 -0
- package/docs/CONVERSION_AND_SANDBOX.md +27 -0
- package/docs/CREDENTIAL_AND_UPDATE_POLICY.md +31 -0
- package/docs/DISCOVERED.md +280 -0
- package/docs/EVALUATION_PROTOCOL.md +40 -0
- package/docs/EVALUATION_PROTOCOL_V1.md +300 -0
- package/docs/FEATURE_TEST_MATRIX.md +802 -0
- package/docs/GITHUB_AUTHORIZATION.md +38 -0
- package/docs/HEAD_TO_HEAD_EVALUATION.md +79 -0
- package/docs/PROVENANCE_AND_COMPARISON.md +72 -0
- package/docs/PROVIDER_CONFIGURATION.md +45 -0
- package/docs/RELEASE_REVIEW.md +117 -0
- package/docs/SAFE_UPDATE_DEMO.md +25 -0
- package/docs/SCHEMA_DECISIONS.md +25 -0
- package/docs/TEAM_POLICY.md +18 -0
- package/docs/TESTING.md +190 -0
- package/package.json +82 -0
package/docs/CATALOG.md
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Catalog and upstream credits
|
|
2
|
+
|
|
3
|
+
Loadout's bundled catalog indexes 50 public upstream repositories. This page gives every project a direct source link and exposes the exact reviewed revision used by Loadout.
|
|
4
|
+
|
|
5
|
+
Thank you to every maintainer and contributor whose work appears here. Loadout does not own, endorse for its authors, or relicense these projects. Each project remains governed by its upstream license and current terms.
|
|
6
|
+
|
|
7
|
+
## How to read this page
|
|
8
|
+
|
|
9
|
+
- **Source** links to the upstream repository.
|
|
10
|
+
- **ID** is Loadout's stable package identifier.
|
|
11
|
+
- **Components** are the component types evidenced in the reviewed repository snapshot; they do not imply every supported agent can install every type.
|
|
12
|
+
- **License** is the SPDX identifier recorded in `catalog/packages.json` from GitHub metadata. **Review required** corresponds to `NOASSERTION`: no SPDX identifier was reported, so users must inspect the upstream terms instead of assuming permission.
|
|
13
|
+
- **Reviewed revision** links to the immutable commit inspected for catalog admission. It is not necessarily the newest upstream commit.
|
|
14
|
+
|
|
15
|
+
The machine-readable catalog remains the source of truth. Run `loadout catalog --coverage --json` to inspect coverage and `loadout capabilities` to inspect what each local agent adapter can actually manage.
|
|
16
|
+
|
|
17
|
+
## All 50 credited repositories
|
|
18
|
+
|
|
19
|
+
| Upstream source | Loadout ID | Category | Reviewed components | License status | Reviewed revision |
|
|
20
|
+
| --------------------------------------------------------------------------------- | -------------------------------- | ------------------------ | -------------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- |
|
|
21
|
+
| [Superpowers](https://github.com/obra/superpowers) | `superpowers` | engineering-workflow | `skill`, `plugin` | `MIT` | [`d884ae04edeb`](https://github.com/obra/superpowers/tree/d884ae04edebef577e82ff7c4e143debd0bbec99) |
|
|
22
|
+
| [Context7](https://github.com/upstash/context7) | `context7` | documentation | `skill`, `mcp`, `plugin` | `MIT` | [`eb7ac502f6e8`](https://github.com/upstash/context7/tree/eb7ac502f6e83692363375d3088d550afa298a60) |
|
|
23
|
+
| [Playwright MCP](https://github.com/microsoft/playwright-mcp) | `playwright-mcp` | browser-verification | `mcp` | `Apache-2.0` | [`5f8fc00210b2`](https://github.com/microsoft/playwright-mcp/tree/5f8fc00210b27b4407c375b59cda4838045d429c) |
|
|
24
|
+
| [UI UX Pro Max](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | `ui-ux-pro-max` | frontend-design | `skill`, `plugin` | `MIT` | [`fe3f65e5d020`](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill/tree/fe3f65e5d0203341b40b7db80650501cd9de4961) |
|
|
25
|
+
| [GitHub MCP Server](https://github.com/github/github-mcp-server) | `github-mcp-server` | source-control | `mcp` | `MIT` | [`c36e4e4493c7`](https://github.com/github/github-mcp-server/tree/c36e4e4493c76eafe2c1a9cbc5272e8eede29189) |
|
|
26
|
+
| [OpenAI Skills Catalog](https://github.com/openai/skills) | `openai-skills` | agent-skills | `skill` | **Review required** | [`49f948faa925`](https://github.com/openai/skills/tree/49f948faa9258a0c61caceaf225e179651397431) |
|
|
27
|
+
| [Anthropic Skills](https://github.com/anthropics/skills) | `anthropic-skills` | agent-skills | `skill` | **Review required** | [`9d2f1ae18723`](https://github.com/anthropics/skills/tree/9d2f1ae187231d8199c64b5b762e1bdf2244733d) |
|
|
28
|
+
| [Agent Skills Marketplace](https://github.com/wshobson/agents) | `wshobson-agents` | agent-skills | `skill`, `plugin` | `MIT` | [`b6af37110581`](https://github.com/wshobson/agents/tree/b6af3711058190e4b5c5274b9758498fe626ec5a) |
|
|
29
|
+
| [Vercel Agent Skills](https://github.com/vercel-labs/agent-skills) | `vercel-agent-skills` | frontend-development | `skill` | **Review required** | [`f8a72b960372`](https://github.com/vercel-labs/agent-skills/tree/f8a72b9603728bb92a217a879b7e62e43ad76c81) |
|
|
30
|
+
| [Vercel Skills](https://github.com/vercel-labs/skills) | `vercel-skills` | skill-discovery | `skill` | **Review required** | [`5527c09adc36`](https://github.com/vercel-labs/skills/tree/5527c09adc367612b0bffd9c80e3bc28a6b01b6d) |
|
|
31
|
+
| [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) | `cloudflare-mcp-server` | cloud-platform | `mcp` | `Apache-2.0` | [`52c633e37684`](https://github.com/cloudflare/mcp-server-cloudflare/tree/52c633e37684fadb94ae236f74909b9bbefc0db8) |
|
|
32
|
+
| [Supabase MCP](https://github.com/supabase/mcp) | `supabase-mcp` | database | `mcp` | `Apache-2.0` | [`9f0396a1b367`](https://github.com/supabase/mcp/tree/9f0396a1b367dfa6a424f4686a21701c8f05b1c3) |
|
|
33
|
+
| [Sentry MCP](https://github.com/getsentry/sentry-mcp) | `sentry-mcp` | observability | `skill`, `mcp` | **Review required** | [`ce099fd25197`](https://github.com/getsentry/sentry-mcp/tree/ce099fd251973774116749016847b78a6049ba0a) |
|
|
34
|
+
| [Exa MCP Server](https://github.com/exa-labs/exa-mcp-server) | `exa-mcp-server` | web-research | `skill`, `mcp`, `plugin` | `MIT` | [`8823cbea80b6`](https://github.com/exa-labs/exa-mcp-server/tree/8823cbea80b6ec5999c6217cccd91660fe953b97) |
|
|
35
|
+
| [Firecrawl MCP Server](https://github.com/firecrawl/firecrawl-mcp-server) | `firecrawl-mcp-server` | web-research | `mcp` | `MIT` | [`3eb1115b1f28`](https://github.com/firecrawl/firecrawl-mcp-server/tree/3eb1115b1f2883ff2fb74e61b5c4acf5a9ac0fb0) |
|
|
36
|
+
| [Azure DevOps MCP](https://github.com/microsoft/azure-devops-mcp) | `azure-devops-mcp` | devops | `mcp` | `MIT` | [`0a08dc649c95`](https://github.com/microsoft/azure-devops-mcp/tree/0a08dc649c951208eda942154c66187dec9985bd) |
|
|
37
|
+
| [Docker MCP Gateway](https://github.com/docker/mcp-gateway) | `docker-mcp-gateway` | containers | `skill`, `mcp` | `MIT` | [`6ce7ff38e75e`](https://github.com/docker/mcp-gateway/tree/6ce7ff38e75e1c62ccefd9882145c4a2ab3134ed) |
|
|
38
|
+
| [Hugging Face MCP Server](https://github.com/huggingface/hf-mcp-server) | `huggingface-mcp-server` | machine-learning | `mcp` | `MIT` | [`2ec6f0723591`](https://github.com/huggingface/hf-mcp-server/tree/2ec6f0723591214ac647ceb0a31c34221b9a317e) |
|
|
39
|
+
| [Awesome Copilot](https://github.com/github/awesome-copilot) | `awesome-copilot` | agent-skills | `skill`, `agent`, `mcp` | `MIT` | [`2c2461a7fa38`](https://github.com/github/awesome-copilot/tree/2c2461a7fa383f664bb75546f03a2c6087f3819d) |
|
|
40
|
+
| [OpenAI Codex Skills](https://github.com/openai/codex) | `openai-codex-skills` | agent-skills | `skill`, `agent` | `Apache-2.0` | [`2e1607ee2fa8`](https://github.com/openai/codex/tree/2e1607ee2fa8099a233df7437adee5f16a741905) |
|
|
41
|
+
| [Ponytail](https://github.com/DietrichGebert/ponytail) | `ponytail` | code-simplification | `skill`, `plugin` | `MIT` | [`16f29800fd26`](https://github.com/DietrichGebert/ponytail/tree/16f29800fd2681bdf24f3eb4ccffe38be3baec6b) |
|
|
42
|
+
| [Addy Osmani Agent Skills](https://github.com/addyosmani/agent-skills) | `addyosmani-agent-skills` | software-engineering | `skill`, `plugin` | `MIT` | [`c1974de476a3`](https://github.com/addyosmani/agent-skills/tree/c1974de476a39cb002a3b8e51e6a7e8e57b808c6) |
|
|
43
|
+
| [Scientific Agent Skills](https://github.com/K-Dense-AI/scientific-agent-skills) | `scientific-agent-skills` | scientific-research | `skill` | `MIT` | [`3f825caafe14`](https://github.com/K-Dense-AI/scientific-agent-skills/tree/3f825caafe149b7853ec8c4d1dd7f4553ea6b2a5) |
|
|
44
|
+
| [Planning with Files](https://github.com/OthmanAdi/planning-with-files) | `planning-with-files` | planning | `skill`, `plugin` | `MIT` | [`f90780c92f05`](https://github.com/OthmanAdi/planning-with-files/tree/f90780c92f0506d21c5f6c4865ce95517a8b1964) |
|
|
45
|
+
| [PM Skills](https://github.com/phuryn/pm-skills) | `pm-skills` | product-management | `skill`, `plugin` | `MIT` | [`18468a95b427`](https://github.com/phuryn/pm-skills/tree/18468a95b427e70e258b51389796367c6f684e7d) |
|
|
46
|
+
| [Baoyu Skills](https://github.com/JimLiu/baoyu-skills) | `baoyu-skills` | content-creation | `skill` | `MIT` | [`6b7a2e417500`](https://github.com/JimLiu/baoyu-skills/tree/6b7a2e417500561a5ecdd0b168332f4142584617) |
|
|
47
|
+
| [Trail of Bits Skills](https://github.com/trailofbits/skills) | `trail-of-bits-skills` | security | `skill`, `plugin` | `CC-BY-SA-4.0` | [`cfe5d7b1619e`](https://github.com/trailofbits/skills/tree/cfe5d7b1619e47fb5b38b7e2561dad7e5f1e89af) |
|
|
48
|
+
| [Antfu Skills](https://github.com/antfu/skills) | `antfu-skills` | frontend-development | `skill` | `MIT` | [`a74f281a27da`](https://github.com/antfu/skills/tree/a74f281a27dadc02397bc1a174b0f2c97531b6ae) |
|
|
49
|
+
| [.NET Skills](https://github.com/dotnet/skills) | `dotnet-skills` | dotnet-development | `skill`, `agent`, `plugin` | `MIT` | [`79a2ada302fe`](https://github.com/dotnet/skills/tree/79a2ada302fe8feb884ab33e1bfc2bddae3ee7ce) |
|
|
50
|
+
| [Microsoft Skills](https://github.com/microsoft/skills) | `microsoft-skills` | cloud-development | `skill`, `agent`, `plugin` | `MIT` | [`e19efc27887e`](https://github.com/microsoft/skills/tree/e19efc27887e5f1a6380b9135cdbdbf10648fba7) |
|
|
51
|
+
| [Web Quality Skills](https://github.com/addyosmani/web-quality-skills) | `web-quality-skills` | web-quality | `skill`, `plugin` | `MIT` | [`95d6e255afe1`](https://github.com/addyosmani/web-quality-skills/tree/95d6e255afe1596b557d7a8498517884438f5b3a) |
|
|
52
|
+
| [Softaworks Agent Toolkit](https://github.com/softaworks/agent-toolkit) | `softaworks-agent-toolkit` | engineering-productivity | `skill` | `MIT` | [`3027f20f3181`](https://github.com/softaworks/agent-toolkit/tree/3027f20f3181758385a1bb8c022d4041dfb4de84) |
|
|
53
|
+
| [Draw.io Skill](https://github.com/Agents365-ai/drawio-skill) | `drawio-skill` | diagramming | `skill` | `MIT` | [`9f5292577033`](https://github.com/Agents365-ai/drawio-skill/tree/9f52925770334e9bd2794e40a7fa64c234e9f545) |
|
|
54
|
+
| [Chrome DevTools MCP](https://github.com/ChromeDevTools/chrome-devtools-mcp) | `chrome-devtools-mcp` | browser-debugging | `skill`, `mcp`, `plugin` | `Apache-2.0` | [`9a7e04daa2cd`](https://github.com/ChromeDevTools/chrome-devtools-mcp/tree/9a7e04daa2cd031afe469d4503d6baf58b9b2cea) |
|
|
55
|
+
| [Serena](https://github.com/oraios/serena) | `serena` | code-intelligence | `mcp` | `MIT` | [`465c5eb62788`](https://github.com/oraios/serena/tree/465c5eb627883ec310c5b7e643fe445af84589b3) |
|
|
56
|
+
| [Model Context Protocol Servers](https://github.com/modelcontextprotocol/servers) | `model-context-protocol-servers` | mcp-reference | `mcp` | **Review required** | [`d31124c98240`](https://github.com/modelcontextprotocol/servers/tree/d31124c982401739917fd817c2a59db344529c16) |
|
|
57
|
+
| [AWS MCP Servers](https://github.com/awslabs/mcp) | `aws-mcp-servers` | cloud-platform | `mcp` | `Apache-2.0` | [`778b5a5db8a6`](https://github.com/awslabs/mcp/tree/778b5a5db8a6f5b92ddb355e59b398544dbf6630) |
|
|
58
|
+
| [DBHub](https://github.com/bytebase/dbhub) | `dbhub` | database | `skill`, `mcp` | `MIT` | [`ec8efede6b8b`](https://github.com/bytebase/dbhub/tree/ec8efede6b8b47dabceb822022954852fc420490) |
|
|
59
|
+
| [FastAPI MCP](https://github.com/tadata-org/fastapi_mcp) | `fastapi-mcp` | api-development | `mcp` | `MIT` | [`e5cad13cabfc`](https://github.com/tadata-org/fastapi_mcp/tree/e5cad13cabfc725bbcb047e526816d887d96da62) |
|
|
60
|
+
| [Browser MCP](https://github.com/BrowserMCP/mcp) | `browser-mcp` | browser-automation | `mcp` | `Apache-2.0` | [`9db12f2b4f61`](https://github.com/BrowserMCP/mcp/tree/9db12f2b4f61294f0bc11708986abc47db539d6c) |
|
|
61
|
+
| [AntV Chart MCP](https://github.com/antvis/mcp-server-chart) | `antvis-chart-mcp` | data-visualization | `mcp` | `MIT` | [`33178096abfa`](https://github.com/antvis/mcp-server-chart/tree/33178096abfa58f245b456f5bacb18bc37f5cbaf) |
|
|
62
|
+
| [Excel MCP Server](https://github.com/haris-musa/excel-mcp-server) | `excel-mcp-server` | spreadsheets | `mcp` | `MIT` | [`f51340ecd577`](https://github.com/haris-musa/excel-mcp-server/tree/f51340ecd5778952405044b203d3a2d4c8a46833) |
|
|
63
|
+
| [arXiv MCP Server](https://github.com/blazickjp/arxiv-mcp-server) | `arxiv-mcp-server` | academic-research | `skill`, `mcp`, `plugin` | `Apache-2.0` | [`d58901760d7e`](https://github.com/blazickjp/arxiv-mcp-server/tree/d58901760d7ede4adb162eaba1725209a933f100) |
|
|
64
|
+
| [Google Workspace MCP](https://github.com/taylorwilsdon/google_workspace_mcp) | `google-workspace-mcp` | productivity | `skill`, `mcp`, `plugin` | `MIT` | [`3f19c7d4a265`](https://github.com/taylorwilsdon/google_workspace_mcp/tree/3f19c7d4a2654238e5fed1b767174fac5615555b) |
|
|
65
|
+
| [MongoDB MCP Server](https://github.com/mongodb-js/mongodb-mcp-server) | `mongodb-mcp-server` | database | `mcp` | `Apache-2.0` | [`f45d7c777d88`](https://github.com/mongodb-js/mongodb-mcp-server/tree/f45d7c777d88d77069da36b3133e68901dc0697a) |
|
|
66
|
+
| [Redis MCP Server](https://github.com/redis/mcp-redis) | `redis-mcp-server` | database | `mcp` | `MIT` | [`53df2bcb7754`](https://github.com/redis/mcp-redis/tree/53df2bcb7754a393f53b6c880ab710b95fefa343) |
|
|
67
|
+
| [Stripe AI](https://github.com/stripe/ai) | `stripe-ai` | payments | `skill`, `mcp`, `plugin` | `MIT` | [`e238b951665c`](https://github.com/stripe/ai/tree/e238b951665cba5260d70aa80e5021def27a61d3) |
|
|
68
|
+
| [MCP Toolbox for Databases](https://github.com/googleapis/mcp-toolbox) | `mcp-toolbox-for-databases` | database | `mcp` | `Apache-2.0` | [`b574b071fc27`](https://github.com/googleapis/mcp-toolbox/tree/b574b071fc27f717e90b4362864b1086be0c8995) |
|
|
69
|
+
| [Browserbase MCP Server](https://github.com/browserbase/mcp-server-browserbase) | `browserbase-mcp-server` | browser-automation | `mcp` | `Apache-2.0` | [`1e196b3d3c4d`](https://github.com/browserbase/mcp-server-browserbase/tree/1e196b3d3c4dc70944e0d19038dd9eb3608b207a) |
|
|
70
|
+
| [Bright Data MCP](https://github.com/brightdata/brightdata-mcp) | `bright-data-mcp` | web-research | `mcp` | `MIT` | [`adbfdd49b880`](https://github.com/brightdata/brightdata-mcp/tree/adbfdd49b8805136662a264490118c2688da3e29) |
|
|
71
|
+
|
|
72
|
+
## Catalog maintenance
|
|
73
|
+
|
|
74
|
+
`loadout catalog --refresh` refreshes mutable observations such as stars, topics, releases, and release-asset downloads in local state. It does not silently rewrite the reviewed commit or component evidence in the bundled catalog. Re-running it on the same UTC date replaces that day's observation rather than inventing velocity.
|
|
75
|
+
|
|
76
|
+
A catalog revision should be reviewed again before changing the pin. New projects found by daily discovery remain candidates until they pass provenance, component, overlap, license, platform, and safety review.
|
|
77
|
+
|
|
78
|
+
For policy details, see [Catalog ranking and conflict policy](./CATALOG_POLICY.md), [Community discovery](./COMMUNITY_DISCOVERY.md), and [Provenance and comparison](./PROVENANCE_AND_COMPARISON.md).
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Catalog ranking and conflict policy
|
|
2
|
+
|
|
3
|
+
Loadout's ranking is an explanation, not a claim that one agent extension is
|
|
4
|
+
universally "best." It compares candidates only when they serve the same
|
|
5
|
+
capability family. An impressive star count cannot promote an uninspected
|
|
6
|
+
package over a safety or provenance failure.
|
|
7
|
+
|
|
8
|
+
Trust and ranking are deliberately separate. Every package is labelled as
|
|
9
|
+
`discovered`, `inspected`, `human-reviewed`, `benchmarked`, or `recommended`.
|
|
10
|
+
The bundled 50-repository release is technically screened and pinned, but that
|
|
11
|
+
does not mean all 50 are universal winners or have received human review. The
|
|
12
|
+
current Stable recommendation is narrower: 30 selected skills from four
|
|
13
|
+
immutable, SPDX-identified sources whose prepared plan needs no additional
|
|
14
|
+
static-risk approval.
|
|
15
|
+
|
|
16
|
+
The current score has five bounded factors: logarithmic GitHub stars (30),
|
|
17
|
+
measured momentum (20), code-push maintenance (20), evidenced components and
|
|
18
|
+
platforms (15), and immutable source/license/review evidence (15). A factor
|
|
19
|
+
with no stored evidence receives zero points. In particular, one star snapshot
|
|
20
|
+
does not establish momentum, `updated_at` metadata is not code maintenance,
|
|
21
|
+
and README claims/topics are not independent trust evidence.
|
|
22
|
+
|
|
23
|
+
This limits obvious gaming and bias: stars are capped and logarithmic; missing
|
|
24
|
+
data does not gain a neutral score; archived packages are not auto-selected;
|
|
25
|
+
official publisher status is not a security guarantee; and deterministic ID
|
|
26
|
+
ordering breaks exact ties. The score must not be used to compare unrelated
|
|
27
|
+
categories, infer security, or make a personal recommendation from protected
|
|
28
|
+
or private data.
|
|
29
|
+
|
|
30
|
+
Conflict families are maintained policy, separate from filesystem collision
|
|
31
|
+
checks. The current real-catalog families are broad skill collections and web
|
|
32
|
+
research MCP servers. They are soft overlaps: Stable chooses a deliberately
|
|
33
|
+
curated skill subset, while Power, Maximum, and Custom retain broader choices
|
|
34
|
+
with a plain-language warning. Power filters collections at skill granularity;
|
|
35
|
+
Maximum stores the full technically screened set disabled in the library. A hard
|
|
36
|
+
family is only added with evidence of real incompatibility; it blocks every
|
|
37
|
+
profile until a person removes all but one candidate.
|
|
38
|
+
|
|
39
|
+
Run `loadout setup --mode stable` for the recommended preview or `loadout plan
|
|
40
|
+
--mode power` for the broader set. The resolver runs before changing agent
|
|
41
|
+
directories.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Community discovery boundary
|
|
2
|
+
|
|
3
|
+
Loadout's Hacker News connector calls the documented public Firebase API only:
|
|
4
|
+
`/v0/topstories.json` followed by `/v0/item/<id>.json`. It does not scrape Hacker
|
|
5
|
+
News HTML, sign in, post, vote, retain author profiles, or poll in the background.
|
|
6
|
+
|
|
7
|
+
The connector reports only a GitHub `owner/repository` mentioned by a current story,
|
|
8
|
+
the story score and comment count, and direct links to the story and discussion. A
|
|
9
|
+
community mention is an early-discovery signal, not a trust signal: it never changes
|
|
10
|
+
the verified catalog, starts a clone, or makes an installation eligible. The user must
|
|
11
|
+
still use `plan`, inspect the static safety report, and explicitly approve an install.
|
|
12
|
+
|
|
13
|
+
This design makes a viral repository visible quickly without turning social momentum
|
|
14
|
+
into an automatic recommendation or a supply-chain execution path.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Compatibility policy
|
|
2
|
+
|
|
3
|
+
Loadout uses the same adapter matrix in inspection and installation. Each
|
|
4
|
+
agent/component cell is one of:
|
|
5
|
+
|
|
6
|
+
- **native** — Loadout writes the documented component format to the
|
|
7
|
+
agent-owned location.
|
|
8
|
+
- **adapted** — Loadout has a reviewed, tested mapping to an agent-specific
|
|
9
|
+
layout or explicit config writer. The plan warns about the adaptation.
|
|
10
|
+
- **unsupported** — Loadout does not infer a location, convert the component,
|
|
11
|
+
or write anything.
|
|
12
|
+
|
|
13
|
+
All supported platforms (Windows, macOS, and Linux) use this policy. WSL is
|
|
14
|
+
Linux-side only: Loadout manages the POSIX home directory and never silently
|
|
15
|
+
rewrites a Windows profile. Agent adapters are deliberately conservative:
|
|
16
|
+
skills are native wherever a documented skill directory exists; commands,
|
|
17
|
+
rules, and agents are native only where the adapter supplies a concrete
|
|
18
|
+
directory; MCP is config-scoped and adapted only through its explicit JSON or
|
|
19
|
+
Codex TOML planner; and plugin manifests are inspected/normalized but their
|
|
20
|
+
runtime hooks are never converted or executed.
|
|
21
|
+
|
|
22
|
+
Use `loadout capabilities --inspect` to view the matrix and local inventory.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Conversion loss reports and installer sandbox boundary
|
|
2
|
+
|
|
3
|
+
## Cross-agent conversion
|
|
4
|
+
|
|
5
|
+
The only safe initial conversion target is a static instruction file. A source skill
|
|
6
|
+
can be copied to an agent's documented native skill directory when that adapter marks
|
|
7
|
+
skills `native`. For a target that supports only commands, Loadout may create one
|
|
8
|
+
explicit command wrapper pointing at the same static instructions.
|
|
9
|
+
|
|
10
|
+
Every conversion emits a loss report containing source component, target component,
|
|
11
|
+
preserved fields, dropped fields, and the reason. Hooks, subagents, lifecycle scripts,
|
|
12
|
+
dynamic variables, permissions, and MCP servers are never silently converted. A loss
|
|
13
|
+
report with dropped executable behavior requires user approval and defaults to no
|
|
14
|
+
write.
|
|
15
|
+
|
|
16
|
+
## Third-party installer threat model
|
|
17
|
+
|
|
18
|
+
An installer can read secrets, write outside its target, alter shell startup files,
|
|
19
|
+
open network connections, launch processes, or exploit the host. Therefore source
|
|
20
|
+
repository scripts are never run on the host. Static package parsing is the normal
|
|
21
|
+
path.
|
|
22
|
+
|
|
23
|
+
If a future disposable sandbox runner is enabled, it must use a fresh filesystem,
|
|
24
|
+
read-only source mount, no host home mount, no inherited environment variables, no
|
|
25
|
+
Docker socket, restricted network disabled by default, bounded CPU/memory/time, and
|
|
26
|
+
an exported file manifest. Its output is an untrusted proposal that still goes through
|
|
27
|
+
the normal plan/safety/approval path. Failure or timeout discards the sandbox.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Credential and autonomous-update policy
|
|
2
|
+
|
|
3
|
+
## Credential interface
|
|
4
|
+
|
|
5
|
+
The core accepts `CredentialReference` values only: an environment-variable name or
|
|
6
|
+
an OS-keychain service/account reference. Raw values cannot appear in config schemas,
|
|
7
|
+
logs, plans, lockfiles, exports, or telemetry. Backend implementations must expose
|
|
8
|
+
`get`, `set`, and `delete` by reference; `get` returns a transient value to the direct
|
|
9
|
+
provider client and is never serializable. Unsupported platforms fail closed.
|
|
10
|
+
|
|
11
|
+
macOS maps to Keychain Services, Windows to Credential Manager, and Linux to Secret
|
|
12
|
+
Service/libsecret. The user controls creation and deletion; Loadout never creates a
|
|
13
|
+
credential backend from a repository manifest.
|
|
14
|
+
|
|
15
|
+
## Update policy
|
|
16
|
+
|
|
17
|
+
The default is `manual`: detect and show diffs only. `canary` permits a selected,
|
|
18
|
+
low-risk package to install into a disposable or explicitly named canary profile,
|
|
19
|
+
then requires a static verification pass before human promotion. `automatic` is not
|
|
20
|
+
available for hooks, executables, plugins, MCP configurations, new domains, new
|
|
21
|
+
environment references, unsigned catalogs, or packages without a prior successful
|
|
22
|
+
canary.
|
|
23
|
+
|
|
24
|
+
Every promotion stores a snapshot and an append-only local audit event. Any failed
|
|
25
|
+
verification restores the snapshot and quarantines the candidate commit. A user can
|
|
26
|
+
revoke a policy at any time; revocation prevents future mutations but never deletes
|
|
27
|
+
existing snapshots.
|
|
28
|
+
|
|
29
|
+
The local `loadout canary` command implements the non-mutating static gate. A
|
|
30
|
+
transaction layer must provide verification and promotion callbacks before a
|
|
31
|
+
candidate can be promoted; the command itself never installs a candidate.
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
# Daily repository discovery
|
|
2
|
+
|
|
3
|
+
_Generated from the GitHub REST API on 2026-07-16. Do not edit by hand._
|
|
4
|
+
|
|
5
|
+
This is a discovery feed, not a list of recommendations. A repository appearing here is **not installed, trusted, or promoted into Loadout's reviewed catalog automatically**. Catalog admission still requires provenance, license, safety, compatibility, and capability review.
|
|
6
|
+
|
|
7
|
+
## Today at a glance
|
|
8
|
+
|
|
9
|
+
- 242 repositories appeared across 8 bounded searches.
|
|
10
|
+
- 219 are uncataloged review candidates; 219 were first observed today.
|
|
11
|
+
- 23 already exist in the reviewed catalog.
|
|
12
|
+
- 0 candidates have a star-velocity measurement based on at least one full day of observations.
|
|
13
|
+
- Historical observations are bounded to 90 per repository and candidates are retained for 180 days.
|
|
14
|
+
|
|
15
|
+
Candidates are ordered by an observed daily star change when Loadout has observations at least one day apart. Until that exists, ordering falls back to **lifetime stars divided by repository age** (with a one-day floor). The lifetime average helps surface young breakouts on day one, but it is not evidence of current growth.
|
|
16
|
+
|
|
17
|
+
## Uncataloged candidates
|
|
18
|
+
|
|
19
|
+
| Repository | Stars | Observed velocity | Lifetime star average | Created | License API value | Matched searches | First seen |
|
|
20
|
+
| --- | ---: | ---: | ---: | --- | --- | --- | --- |
|
|
21
|
+
| [affaan-m/ECC](https://github.com/affaan-m/ECC) | 230,262 | — | 1279.5/day | 2026-01-18 | MIT | ai-agents, claude-code, mcp, recent-agent-skills | 2026-07-16 |
|
|
22
|
+
| [nexu-io/open-design](https://github.com/nexu-io/open-design) | 78,794 | — | 987.2/day | 2026-04-28 | Apache-2.0 | agent-skills, ai-agents | 2026-07-16 |
|
|
23
|
+
| [JuliusBrussee/caveman](https://github.com/JuliusBrussee/caveman) | 90,025 | — | 869.1/day | 2026-04-04 | MIT | claude-code | 2026-07-16 |
|
|
24
|
+
| [Graphify-Labs/graphify](https://github.com/Graphify-Labs/graphify) | 88,218 | — | 845.5/day | 2026-04-03 | MIT | claude-code, codex | 2026-07-16 |
|
|
25
|
+
| [Egonex-AI/Understand-Anything](https://github.com/Egonex-AI/Understand-Anything) | 74,442 | — | 600.8/day | 2026-03-15 | MIT | claude-code, codex | 2026-07-16 |
|
|
26
|
+
| [NousResearch/hermes-agent](https://github.com/NousResearch/hermes-agent) | 215,699 | — | 600.7/day | 2025-07-22 | MIT | ai-agents, claude-code, codex | 2026-07-16 |
|
|
27
|
+
| [santifer/career-ops](https://github.com/santifer/career-ops) | 60,297 | — | 584.1/day | 2026-04-04 | MIT | claude-code | 2026-07-16 |
|
|
28
|
+
| [MemPalace/mempalace](https://github.com/MemPalace/mempalace) | 57,377 | — | 557.3/day | 2026-04-05 | MIT | mcp | 2026-07-16 |
|
|
29
|
+
| [Leonxlnx/taste-skill](https://github.com/Leonxlnx/taste-skill) | 64,039 | — | 435.4/day | 2026-02-19 | MIT | claude-code, codex | 2026-07-16 |
|
|
30
|
+
| [rtk-ai/rtk](https://github.com/rtk-ai/rtk) | 71,332 | — | 406.9/day | 2026-01-22 | Apache-2.0 | claude-code | 2026-07-16 |
|
|
31
|
+
| [Panniantong/Agent-Reach](https://github.com/Panniantong/Agent-Reach) | 57,042 | — | 399.1/day | 2026-02-24 | MIT | claude-code, mcp | 2026-07-16 |
|
|
32
|
+
| [calesthio/OpenMontage](https://github.com/calesthio/OpenMontage) | 39,122 | — | 357.7/day | 2026-03-29 | AGPL-3.0 | recent-agent-skills | 2026-07-16 |
|
|
33
|
+
| [farion1231/cc-switch](https://github.com/farion1231/cc-switch) | 117,785 | — | 340.0/day | 2025-08-04 | MIT | claude-code, codex, mcp | 2026-07-16 |
|
|
34
|
+
| [koala73/worldmonitor](https://github.com/koala73/worldmonitor) | 61,924 | — | 327.2/day | 2026-01-08 | NOASSERTION | mcp | 2026-07-16 |
|
|
35
|
+
| [rohitg00/ai-engineering-from-scratch](https://github.com/rohitg00/ai-engineering-from-scratch) | 38,462 | — | 319.9/day | 2026-03-18 | MIT | ai-agents, mcp | 2026-07-16 |
|
|
36
|
+
| [headroomlabs-ai/headroom](https://github.com/headroomlabs-ai/headroom) | 59,437 | — | 312.6/day | 2026-01-07 | Apache-2.0 | claude-code, mcp | 2026-07-16 |
|
|
37
|
+
| [mvanhorn/last30days-skill](https://github.com/mvanhorn/last30days-skill) | 52,400 | — | 300.9/day | 2026-01-23 | MIT | claude-code, recent-agent-skills | 2026-07-16 |
|
|
38
|
+
| [VoltAgent/awesome-openclaw-skills](https://github.com/VoltAgent/awesome-openclaw-skills) | 51,260 | — | 297.0/day | 2026-01-25 | MIT | agent-skills | 2026-07-16 |
|
|
39
|
+
| [code-yeongyu/oh-my-openagent](https://github.com/code-yeongyu/oh-my-openagent) | 65,944 | — | 291.9/day | 2025-12-03 | NOASSERTION | ai-agents, codex | 2026-07-16 |
|
|
40
|
+
| [HKUDS/nanobot](https://github.com/HKUDS/nanobot) | 45,709 | — | 275.9/day | 2026-02-01 | MIT | ai-agents, claude-code, codex | 2026-07-16 |
|
|
41
|
+
| [heygen-com/hyperframes](https://github.com/heygen-com/hyperframes) | 35,554 | — | 275.8/day | 2026-03-10 | Apache-2.0 | mcp | 2026-07-16 |
|
|
42
|
+
| [thedotmack/claude-mem](https://github.com/thedotmack/claude-mem) | 87,450 | — | 274.0/day | 2025-08-31 | Apache-2.0 | ai-agents, claude-code | 2026-07-16 |
|
|
43
|
+
| [Imbad0202/academic-research-skills](https://github.com/Imbad0202/academic-research-skills) | 38,058 | — | 270.4/day | 2026-02-26 | NOASSERTION | claude-code | 2026-07-16 |
|
|
44
|
+
| [op7418/guizang-ppt-skill](https://github.com/op7418/guizang-ppt-skill) | 21,557 | — | 255.3/day | 2026-04-23 | AGPL-3.0 | codex, recent-agent-skills | 2026-07-16 |
|
|
45
|
+
| [ComposioHQ/awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) | 67,859 | — | 248.8/day | 2025-10-17 | NOASSERTION | agent-skills, ai-agents, claude-code, codex, mcp | 2026-07-16 |
|
|
46
|
+
| [alchaincyf/huashu-design](https://github.com/alchaincyf/huashu-design) | 21,532 | — | 243.6/day | 2026-04-19 | MIT | recent-agent-skills | 2026-07-16 |
|
|
47
|
+
| [shanraisshan/claude-code-best-practice](https://github.com/shanraisshan/claude-code-best-practice) | 62,801 | — | 243.0/day | 2025-10-31 | MIT | ai-agents, claude-code | 2026-07-16 |
|
|
48
|
+
| [sickn33/agentic-awesome-skills](https://github.com/sickn33/agentic-awesome-skills) | 43,386 | — | 236.7/day | 2026-01-14 | MIT | agent-skills, ai-agents, claude-code, mcp | 2026-07-16 |
|
|
49
|
+
| [google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli) | 106,018 | — | 232.9/day | 2025-04-17 | Apache-2.0 | ai-agents | 2026-07-16 |
|
|
50
|
+
| [JCodesMore/ai-website-cloner-template](https://github.com/JCodesMore/ai-website-cloner-template) | 28,528 | — | 227.3/day | 2026-03-13 | MIT | ai-agents, claude-code | 2026-07-16 |
|
|
51
|
+
| [DeusData/codebase-memory-mcp](https://github.com/DeusData/codebase-memory-mcp) | 32,033 | — | 225.5/day | 2026-02-24 | MIT | claude-code, codex, mcp, model-context-protocol, recent-mcp | 2026-07-16 |
|
|
52
|
+
| [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills) | 40,058 | — | 219.9/day | 2026-01-15 | MIT | codex | 2026-07-16 |
|
|
53
|
+
| [googleworkspace/cli](https://github.com/googleworkspace/cli) | 29,743 | — | 218.4/day | 2026-03-02 | Apache-2.0 | agent-skills, recent-agent-skills | 2026-07-16 |
|
|
54
|
+
| [kepano/obsidian-skills](https://github.com/kepano/obsidian-skills) | 42,204 | — | 216.3/day | 2026-01-02 | MIT | codex | 2026-07-16 |
|
|
55
|
+
| [Yeachan-Heo/oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode) | 37,810 | — | 200.2/day | 2026-01-09 | MIT | ai-agents, claude-code | 2026-07-16 |
|
|
56
|
+
| [CloakHQ/CloakBrowser](https://github.com/CloakHQ/CloakBrowser) | 28,414 | — | 196.4/day | 2026-02-22 | MIT | ai-agents | 2026-07-16 |
|
|
57
|
+
| [shareAI-lab/learn-claude-code](https://github.com/shareAI-lab/learn-claude-code) | 71,195 | — | 186.2/day | 2025-06-29 | MIT | claude-code | 2026-07-16 |
|
|
58
|
+
| [microsoft/SkillOpt](https://github.com/microsoft/SkillOpt) | 12,884 | — | 184.8/day | 2026-05-08 | MIT | agent-skills, recent-agent-skills | 2026-07-16 |
|
|
59
|
+
| [firecrawl/firecrawl](https://github.com/firecrawl/firecrawl) | 151,734 | — | 184.6/day | 2024-04-15 | AGPL-3.0 | ai-agents | 2026-07-16 |
|
|
60
|
+
| [nanocoai/nanoclaw](https://github.com/nanocoai/nanoclaw) | 30,264 | — | 181.9/day | 2026-01-31 | MIT | ai-agents, claude-code | 2026-07-16 |
|
|
61
|
+
| [mukul975/Anthropic-Cybersecurity-Skills](https://github.com/mukul975/Anthropic-Cybersecurity-Skills) | 25,680 | — | 181.4/day | 2026-02-25 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
62
|
+
| [rohitg00/agentmemory](https://github.com/rohitg00/agentmemory) | 25,204 | — | 177.9/day | 2026-02-25 | Apache-2.0 | codex | 2026-07-16 |
|
|
63
|
+
| [bytedance/deer-flow](https://github.com/bytedance/deer-flow) | 77,173 | — | 177.1/day | 2025-05-07 | MIT | ai-agents | 2026-07-16 |
|
|
64
|
+
| [alibaba/open-code-review](https://github.com/alibaba/open-code-review) | 10,604 | — | 177.0/day | 2026-05-18 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
65
|
+
| [browser-use/browser-use](https://github.com/browser-use/browser-use) | 105,018 | — | 168.5/day | 2024-10-31 | MIT | ai-agents | 2026-07-16 |
|
|
66
|
+
| [stablyai/orca](https://github.com/stablyai/orca) | 20,300 | — | 166.6/day | 2026-03-17 | MIT | codex | 2026-07-16 |
|
|
67
|
+
| [luongnv89/claude-howto](https://github.com/luongnv89/claude-howto) | 39,901 | — | 158.9/day | 2025-11-07 | MIT | claude-code | 2026-07-16 |
|
|
68
|
+
| [ruvnet/ruflo](https://github.com/ruvnet/ruflo) | 64,598 | — | 157.9/day | 2025-06-02 | MIT | ai-agents, claude-code, codex | 2026-07-16 |
|
|
69
|
+
| [Wei-Shaw/sub2api](https://github.com/Wei-Shaw/sub2api) | 32,467 | — | 153.9/day | 2025-12-18 | LGPL-3.0 | claude-code, codex | 2026-07-16 |
|
|
70
|
+
| [ogulcancelik/herdr](https://github.com/ogulcancelik/herdr) | 17,020 | — | 153.0/day | 2026-03-27 | NOASSERTION | codex | 2026-07-16 |
|
|
71
|
+
| [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | 90,834 | — | 153.0/day | 2024-11-30 | MIT | mcp | 2026-07-16 |
|
|
72
|
+
| [zarazhangrui/frontend-slides](https://github.com/zarazhangrui/frontend-slides) | 25,724 | — | 151.3/day | 2026-01-28 | MIT | recent-agent-skills | 2026-07-16 |
|
|
73
|
+
| [oomol-lab/open-connector](https://github.com/oomol-lab/open-connector) | 2,646 | — | 150.8/day | 2026-06-29 | Apache-2.0 | model-context-protocol, recent-mcp | 2026-07-16 |
|
|
74
|
+
| [Donchitos/Claude-Code-Game-Studios](https://github.com/Donchitos/Claude-Code-Game-Studios) | 23,044 | — | 148.9/day | 2026-02-12 | MIT | recent-agent-skills | 2026-07-16 |
|
|
75
|
+
| [iOfficeAI/OfficeCLI](https://github.com/iOfficeAI/OfficeCLI) | 18,111 | — | 146.4/day | 2026-03-15 | Apache-2.0 | codex | 2026-07-16 |
|
|
76
|
+
| [manaflow-ai/cmux](https://github.com/manaflow-ai/cmux) | 24,583 | — | 145.0/day | 2026-01-28 | NOASSERTION | codex | 2026-07-16 |
|
|
77
|
+
| [tanweai/pua](https://github.com/tanweai/pua) | 18,823 | — | 144.5/day | 2026-03-08 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
78
|
+
| [open-webui/open-webui](https://github.com/open-webui/open-webui) | 145,608 | — | 143.6/day | 2023-10-06 | NOASSERTION | mcp | 2026-07-16 |
|
|
79
|
+
| [tirth8205/code-review-graph](https://github.com/tirth8205/code-review-graph) | 19,529 | — | 139.2/day | 2026-02-26 | MIT | recent-mcp | 2026-07-16 |
|
|
80
|
+
| [google/skills](https://github.com/google/skills) | 14,864 | — | 138.6/day | 2026-03-31 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
81
|
+
| [larksuite/cli](https://github.com/larksuite/cli) | 15,668 | — | 137.8/day | 2026-03-25 | MIT | recent-agent-skills | 2026-07-16 |
|
|
82
|
+
| [sansan0/TrendRadar](https://github.com/sansan0/TrendRadar) | 60,593 | — | 136.3/day | 2025-04-28 | GPL-3.0 | mcp | 2026-07-16 |
|
|
83
|
+
| [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) | 32,196 | — | 135.1/day | 2025-11-20 | Apache-2.0 | claude-code, mcp | 2026-07-16 |
|
|
84
|
+
| [asgeirtj/system_prompts_leaks](https://github.com/asgeirtj/system_prompts_leaks) | 58,243 | — | 132.4/day | 2025-05-03 | CC0-1.0 | ai-agents, claude-code, codex | 2026-07-16 |
|
|
85
|
+
| [mksglu/context-mode](https://github.com/mksglu/context-mode) | 18,992 | — | 132.1/day | 2026-02-23 | NOASSERTION | codex, recent-mcp | 2026-07-16 |
|
|
86
|
+
| [langgenius/dify](https://github.com/langgenius/dify) | 149,028 | — | 125.1/day | 2023-04-12 | NOASSERTION | mcp | 2026-07-16 |
|
|
87
|
+
| [nexu-io/html-anything](https://github.com/nexu-io/html-anything) | 7,796 | — | 117.1/day | 2026-05-11 | Apache-2.0 | agent-skills, recent-agent-skills | 2026-07-16 |
|
|
88
|
+
| [diegosouzapw/OmniRoute](https://github.com/diegosouzapw/OmniRoute) | 17,910 | — | 116.7/day | 2026-02-13 | MIT | codex, recent-mcp | 2026-07-16 |
|
|
89
|
+
| [microsoft/ai-agents-for-beginners](https://github.com/microsoft/ai-agents-for-beginners) | 69,475 | — | 116.7/day | 2024-11-28 | MIT | ai-agents | 2026-07-16 |
|
|
90
|
+
| [decolua/9router](https://github.com/decolua/9router) | 22,356 | — | 115.9/day | 2026-01-05 | MIT | codex | 2026-07-16 |
|
|
91
|
+
| [NVIDIA/SkillSpector](https://github.com/NVIDIA/SkillSpector) | 13,274 | — | 112.5/day | 2026-03-21 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
92
|
+
| [router-for-me/CLIProxyAPI](https://github.com/router-for-me/CLIProxyAPI) | 42,334 | — | 111.4/day | 2025-07-01 | MIT | claude-code, codex | 2026-07-16 |
|
|
93
|
+
| [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) | 50,137 | — | 110.6/day | 2025-04-19 | NOASSERTION | agent-skills, claude-code | 2026-07-16 |
|
|
94
|
+
| [agentskills/agentskills](https://github.com/agentskills/agentskills) | 23,143 | — | 109.0/day | 2025-12-16 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
95
|
+
| [D4Vinci/Scrapling](https://github.com/D4Vinci/Scrapling) | 69,734 | — | 108.8/day | 2024-10-13 | BSD-3-Clause | mcp | 2026-07-16 |
|
|
96
|
+
| [VoltAgent/awesome-agent-skills](https://github.com/VoltAgent/awesome-agent-skills) | 28,201 | — | 107.8/day | 2025-10-28 | MIT | agent-skills, ai-agents | 2026-07-16 |
|
|
97
|
+
| [wanshuiyin/Auto-claude-code-research-in-sleep](https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep) | 13,475 | — | 104.7/day | 2026-03-10 | MIT | codex, recent-agent-skills | 2026-07-16 |
|
|
98
|
+
| [langchain-ai/langchain](https://github.com/langchain-ai/langchain) | 141,904 | — | 103.7/day | 2022-10-17 | MIT | ai-agents | 2026-07-16 |
|
|
99
|
+
| [earthtojake/text-to-cad](https://github.com/earthtojake/text-to-cad) | 8,183 | — | 95.2/day | 2026-04-22 | MIT | recent-agent-skills | 2026-07-16 |
|
|
100
|
+
| [AgriciDaniel/claude-obsidian](https://github.com/AgriciDaniel/claude-obsidian) | 9,472 | — | 94.1/day | 2026-04-07 | MIT | agent-skills | 2026-07-16 |
|
|
101
|
+
| [infiniflow/ragflow](https://github.com/infiniflow/ragflow) | 85,193 | — | 89.9/day | 2023-12-12 | Apache-2.0 | ai-agents | 2026-07-16 |
|
|
102
|
+
| [iOfficeAI/AionUi](https://github.com/iOfficeAI/AionUi) | 30,197 | — | 87.9/day | 2025-08-07 | Apache-2.0 | claude-code, codex | 2026-07-16 |
|
|
103
|
+
| [greensock/gsap-skills](https://github.com/greensock/gsap-skills) | 11,603 | — | 86.4/day | 2026-03-04 | MIT | recent-agent-skills | 2026-07-16 |
|
|
104
|
+
| [alirezarezvani/claude-skills](https://github.com/alirezarezvani/claude-skills) | 22,691 | — | 83.8/day | 2025-10-19 | MIT | agent-skills | 2026-07-16 |
|
|
105
|
+
| [daytonaio/daytona](https://github.com/daytonaio/daytona) | 72,264 | — | 81.0/day | 2024-02-06 | NOASSERTION | ai-agents | 2026-07-16 |
|
|
106
|
+
| [davila7/claude-code-templates](https://github.com/davila7/claude-code-templates) | 29,592 | — | 78.3/day | 2025-07-04 | MIT | claude-code | 2026-07-16 |
|
|
107
|
+
| [n8n-io/n8n](https://github.com/n8n-io/n8n) | 196,635 | — | 76.2/day | 2019-06-22 | NOASSERTION | mcp | 2026-07-16 |
|
|
108
|
+
| [steipete/CodexBar](https://github.com/steipete/CodexBar) | 18,426 | — | 76.0/day | 2025-11-16 | MIT | codex | 2026-07-16 |
|
|
109
|
+
| [jlcodes99/cockpit-tools](https://github.com/jlcodes99/cockpit-tools) | 13,590 | — | 74.8/day | 2026-01-16 | NOASSERTION | codex | 2026-07-16 |
|
|
110
|
+
| [revfactory/harness](https://github.com/revfactory/harness) | 8,365 | — | 74.6/day | 2026-03-26 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
111
|
+
| [aaif-goose/goose](https://github.com/aaif-goose/goose) | 51,276 | — | 74.1/day | 2024-08-23 | Apache-2.0 | ai-agents, mcp | 2026-07-16 |
|
|
112
|
+
| [VectifyAI/PageIndex](https://github.com/VectifyAI/PageIndex) | 34,054 | — | 72.2/day | 2025-04-01 | MIT | ai-agents | 2026-07-16 |
|
|
113
|
+
| [AgriciDaniel/claude-seo](https://github.com/AgriciDaniel/claude-seo) | 11,521 | — | 72.2/day | 2026-02-07 | MIT | recent-agent-skills | 2026-07-16 |
|
|
114
|
+
| [bytedance/UI-TARS-desktop](https://github.com/bytedance/UI-TARS-desktop) | 37,999 | — | 69.9/day | 2025-01-19 | Apache-2.0 | mcp | 2026-07-16 |
|
|
115
|
+
| [lobehub/lobehub](https://github.com/lobehub/lobehub) | 79,907 | — | 69.3/day | 2023-05-21 | NOASSERTION | mcp | 2026-07-16 |
|
|
116
|
+
| [alibaba/zvec](https://github.com/alibaba/zvec) | 14,952 | — | 66.8/day | 2025-12-05 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
117
|
+
| [YishenTu/claudian](https://github.com/YishenTu/claudian) | 14,092 | — | 63.1/day | 2025-12-05 | MIT | codex | 2026-07-16 |
|
|
118
|
+
| [WenyuChiou/awesome-agentic-ai-zh](https://github.com/WenyuChiou/awesome-agentic-ai-zh) | 4,563 | — | 62.4/day | 2026-05-04 | MIT | model-context-protocol | 2026-07-16 |
|
|
119
|
+
| [slopus/happy](https://github.com/slopus/happy) | 22,663 | — | 62.3/day | 2025-07-18 | MIT | codex | 2026-07-16 |
|
|
120
|
+
| [CherryHQ/cherry-studio](https://github.com/CherryHQ/cherry-studio) | 48,647 | — | 62.1/day | 2024-05-24 | AGPL-3.0 | agent-skills, claude-code, codex | 2026-07-16 |
|
|
121
|
+
| [nicobailon/visual-explainer](https://github.com/nicobailon/visual-explainer) | 9,254 | — | 61.6/day | 2026-02-16 | MIT | recent-agent-skills | 2026-07-16 |
|
|
122
|
+
| [ashishpatel26/500-AI-Agents-Projects](https://github.com/ashishpatel26/500-AI-Agents-Projects) | 34,539 | — | 60.2/day | 2024-12-20 | MIT | ai-agents | 2026-07-16 |
|
|
123
|
+
| [HKUDS/OpenSpace](https://github.com/HKUDS/OpenSpace) | 6,749 | — | 58.9/day | 2026-03-24 | MIT | recent-agent-skills | 2026-07-16 |
|
|
124
|
+
| [jnMetaCode/superpowers-zh](https://github.com/jnMetaCode/superpowers-zh) | 6,947 | — | 58.4/day | 2026-03-20 | MIT | agent-skills, recent-agent-skills | 2026-07-16 |
|
|
125
|
+
| [tt-a1i/archify](https://github.com/tt-a1i/archify) | 5,385 | — | 58.0/day | 2026-04-15 | MIT | recent-agent-skills | 2026-07-16 |
|
|
126
|
+
| [patchy631/ai-engineering-hub](https://github.com/patchy631/ai-engineering-hub) | 36,525 | — | 57.7/day | 2024-10-21 | MIT | mcp | 2026-07-16 |
|
|
127
|
+
| [aden-hive/hive](https://github.com/aden-hive/hive) | 10,707 | — | 57.6/day | 2026-01-12 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
128
|
+
| [anysearch-ai/anysearch-skill](https://github.com/anysearch-ai/anysearch-skill) | 4,454 | — | 57.2/day | 2026-04-30 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
129
|
+
| [crewAIInc/crewAI](https://github.com/crewAIInc/crewAI) | 55,613 | — | 56.0/day | 2023-10-27 | MIT | ai-agents | 2026-07-16 |
|
|
130
|
+
| [Mintplex-Labs/anything-llm](https://github.com/Mintplex-Labs/anything-llm) | 63,377 | — | 55.6/day | 2023-06-04 | MIT | ai-agents | 2026-07-16 |
|
|
131
|
+
| [MinishLab/semble](https://github.com/MinishLab/semble) | 5,629 | — | 55.5/day | 2026-04-06 | MIT | model-context-protocol | 2026-07-16 |
|
|
132
|
+
| [mem0ai/mem0](https://github.com/mem0ai/mem0) | 60,960 | — | 54.3/day | 2023-06-20 | Apache-2.0 | ai-agents | 2026-07-16 |
|
|
133
|
+
| [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 157,070 | — | 52.5/day | 2018-05-07 | Apache-2.0 | mcp | 2026-07-16 |
|
|
134
|
+
| [PDFMathTranslate/PDFMathTranslate](https://github.com/PDFMathTranslate/PDFMathTranslate) | 35,605 | — | 52.5/day | 2024-09-06 | AGPL-3.0 | mcp | 2026-07-16 |
|
|
135
|
+
| [google/agents-cli](https://github.com/google/agents-cli) | 5,162 | — | 52.0/day | 2026-04-08 | Apache-2.0 | recent-agent-skills | 2026-07-16 |
|
|
136
|
+
| [outsourc-e/hermes-workspace](https://github.com/outsourc-e/hermes-workspace) | 6,091 | — | 49.6/day | 2026-03-16 | MIT | recent-agent-skills | 2026-07-16 |
|
|
137
|
+
| [butterbase-ai/butterbase](https://github.com/butterbase-ai/butterbase) | 2,763 | — | 47.6/day | 2026-05-20 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
138
|
+
| [holaboss-ai/holaOS](https://github.com/holaboss-ai/holaOS) | 5,498 | — | 47.1/day | 2026-03-22 | NOASSERTION | model-context-protocol | 2026-07-16 |
|
|
139
|
+
| [AgriciDaniel/claude-ads](https://github.com/AgriciDaniel/claude-ads) | 7,099 | — | 45.7/day | 2026-02-11 | MIT | agent-skills | 2026-07-16 |
|
|
140
|
+
| [xixu-me/awesome-persona-distill-skills](https://github.com/xixu-me/awesome-persona-distill-skills) | 4,566 | — | 45.1/day | 2026-04-06 | CC0-1.0 | recent-agent-skills | 2026-07-16 |
|
|
141
|
+
| [PrefectHQ/fastmcp](https://github.com/PrefectHQ/fastmcp) | 26,231 | — | 44.2/day | 2024-11-30 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
142
|
+
| [tigicion/dao-code](https://github.com/tigicion/dao-code) | 1,616 | — | 41.8/day | 2026-06-08 | MIT | recent-mcp | 2026-07-16 |
|
|
143
|
+
| [Fincept-Corporation/FinceptTerminal](https://github.com/Fincept-Corporation/FinceptTerminal) | 28,500 | — | 41.5/day | 2024-08-29 | NOASSERTION | ai-agents | 2026-07-16 |
|
|
144
|
+
| [eigent-ai/eigent](https://github.com/eigent-ai/eigent) | 14,570 | — | 41.4/day | 2025-07-29 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
145
|
+
| [0xNyk/awesome-hermes-agent](https://github.com/0xNyk/awesome-hermes-agent) | 4,723 | — | 40.8/day | 2026-03-23 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
146
|
+
| [tradesdontlie/tradingview-mcp](https://github.com/tradesdontlie/tradingview-mcp) | 4,412 | — | 40.3/day | 2026-03-29 | NOASSERTION | recent-mcp | 2026-07-16 |
|
|
147
|
+
| [mudler/LocalAI](https://github.com/mudler/LocalAI) | 47,561 | — | 39.1/day | 2023-03-18 | MIT | mcp | 2026-07-16 |
|
|
148
|
+
| [AsyncFuncAI/deepwiki-open](https://github.com/AsyncFuncAI/deepwiki-open) | 17,311 | — | 39.1/day | 2025-04-30 | MIT | codex | 2026-07-16 |
|
|
149
|
+
| [op7418/CodePilot](https://github.com/op7418/CodePilot) | 6,136 | — | 38.2/day | 2026-02-06 | NOASSERTION | recent-agent-skills, recent-mcp | 2026-07-16 |
|
|
150
|
+
| [Gentleman-Programming/engram](https://github.com/Gentleman-Programming/engram) | 5,479 | — | 36.4/day | 2026-02-16 | MIT | recent-mcp | 2026-07-16 |
|
|
151
|
+
| [NousResearch/hermes-agent-self-evolution](https://github.com/NousResearch/hermes-agent-self-evolution) | 4,692 | — | 36.2/day | 2026-03-09 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
152
|
+
| [microsoft/mcp-for-beginners](https://github.com/microsoft/mcp-for-beginners) | 16,762 | — | 35.8/day | 2025-04-04 | MIT | model-context-protocol | 2026-07-16 |
|
|
153
|
+
| [epiral/bb-browser](https://github.com/epiral/bb-browser) | 5,973 | — | 35.8/day | 2026-01-31 | MIT | recent-mcp | 2026-07-16 |
|
|
154
|
+
| [deanpeters/Product-Manager-Skills](https://github.com/deanpeters/Product-Manager-Skills) | 5,789 | — | 35.8/day | 2026-02-05 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
155
|
+
| [langchain-ai/langgraph](https://github.com/langchain-ai/langgraph) | 37,417 | — | 34.9/day | 2023-08-09 | MIT | ai-agents | 2026-07-16 |
|
|
156
|
+
| [Mouseww/anything-analyzer](https://github.com/Mouseww/anything-analyzer) | 3,306 | — | 34.6/day | 2026-04-12 | NOASSERTION | recent-mcp | 2026-07-16 |
|
|
157
|
+
| [ComposioHQ/composio](https://github.com/ComposioHQ/composio) | 29,252 | — | 33.5/day | 2024-02-23 | MIT | ai-agents, mcp | 2026-07-16 |
|
|
158
|
+
| [chatboxai/chatbox](https://github.com/chatboxai/chatbox) | 41,021 | — | 33.4/day | 2023-03-06 | GPL-3.0 | claude-code | 2026-07-16 |
|
|
159
|
+
| [liyupi/ai-guide](https://github.com/liyupi/ai-guide) | 17,311 | — | 33.4/day | 2025-02-13 | NOASSERTION | codex | 2026-07-16 |
|
|
160
|
+
| [danny-avila/LibreChat](https://github.com/danny-avila/LibreChat) | 40,803 | — | 32.6/day | 2023-02-12 | MIT | mcp | 2026-07-16 |
|
|
161
|
+
| [twostraws/SwiftUI-Agent-Skill](https://github.com/twostraws/SwiftUI-Agent-Skill) | 4,304 | — | 32.3/day | 2026-03-05 | MIT | recent-agent-skills | 2026-07-16 |
|
|
162
|
+
| [zhayujie/CowAgent](https://github.com/zhayujie/CowAgent) | 46,004 | — | 32.0/day | 2022-08-07 | MIT | ai-agents, claude-code, codex, mcp | 2026-07-16 |
|
|
163
|
+
| [repowise-dev/repowise](https://github.com/repowise-dev/repowise) | 3,655 | — | 31.6/day | 2026-03-23 | AGPL-3.0 | recent-mcp | 2026-07-16 |
|
|
164
|
+
| [excalidraw/excalidraw-mcp](https://github.com/excalidraw/excalidraw-mcp) | 4,934 | — | 30.4/day | 2026-02-04 | NOASSERTION | recent-mcp | 2026-07-16 |
|
|
165
|
+
| [coleam00/excalidraw-diagram-skill](https://github.com/coleam00/excalidraw-diagram-skill) | 4,114 | — | 29.9/day | 2026-03-01 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
166
|
+
| [jgraph/drawio-mcp](https://github.com/jgraph/drawio-mcp) | 4,829 | — | 29.4/day | 2026-02-02 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
167
|
+
| [ai-boost/awesome-harness-engineering](https://github.com/ai-boost/awesome-harness-engineering) | 3,094 | — | 28.3/day | 2026-03-29 | NOASSERTION | recent-mcp | 2026-07-16 |
|
|
168
|
+
| [yvgude/lean-ctx](https://github.com/yvgude/lean-ctx) | 3,257 | — | 28.3/day | 2026-03-23 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
169
|
+
| [browser-act/skills](https://github.com/browser-act/skills) | 4,446 | — | 27.7/day | 2026-02-06 | MIT | recent-agent-skills | 2026-07-16 |
|
|
170
|
+
| [AstrBotDevs/AstrBot](https://github.com/AstrBotDevs/AstrBot) | 36,423 | — | 27.7/day | 2022-12-08 | AGPL-3.0 | mcp | 2026-07-16 |
|
|
171
|
+
| [tech-leads-club/agent-skills](https://github.com/tech-leads-club/agent-skills) | 4,877 | — | 27.3/day | 2026-01-19 | NOASSERTION | recent-agent-skills | 2026-07-16 |
|
|
172
|
+
| [agno-agi/agno](https://github.com/agno-agi/agno) | 41,190 | — | 26.8/day | 2022-05-04 | Apache-2.0 | ai-agents | 2026-07-16 |
|
|
173
|
+
| [topoteretes/cognee](https://github.com/topoteretes/cognee) | 27,970 | — | 26.3/day | 2023-08-16 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
174
|
+
| [CoplayDev/unity-mcp](https://github.com/CoplayDev/unity-mcp) | 12,531 | — | 25.8/day | 2025-03-18 | MIT | model-context-protocol | 2026-07-16 |
|
|
175
|
+
| [Unclecheng-li/VulnClaw](https://github.com/Unclecheng-li/VulnClaw) | 2,096 | — | 23.4/day | 2026-04-18 | MIT | recent-mcp | 2026-07-16 |
|
|
176
|
+
| [thedaviddias/Front-End-Checklist](https://github.com/thedaviddias/Front-End-Checklist) | 73,222 | — | 22.9/day | 2017-10-16 | NOASSERTION | ai-agents | 2026-07-16 |
|
|
177
|
+
| [aws/agent-toolkit-for-aws](https://github.com/aws/agent-toolkit-for-aws) | 1,884 | — | 22.3/day | 2026-04-23 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
178
|
+
| [giancarloerra/SocratiCode](https://github.com/giancarloerra/SocratiCode) | 3,118 | — | 22.2/day | 2026-02-26 | AGPL-3.0 | recent-mcp | 2026-07-16 |
|
|
179
|
+
| [TabularisDB/tabularis](https://github.com/TabularisDB/tabularis) | 3,724 | — | 21.8/day | 2026-01-26 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
180
|
+
| [mcp-use/mcp-use](https://github.com/mcp-use/mcp-use) | 10,317 | — | 21.7/day | 2025-03-28 | MIT | model-context-protocol | 2026-07-16 |
|
|
181
|
+
| [ZenNotes/zennotes](https://github.com/ZenNotes/zennotes) | 2,031 | — | 21.1/day | 2026-04-11 | MIT | recent-mcp | 2026-07-16 |
|
|
182
|
+
| [siyuan-note/siyuan](https://github.com/siyuan-note/siyuan) | 45,145 | — | 21.0/day | 2020-08-30 | AGPL-3.0 | mcp | 2026-07-16 |
|
|
183
|
+
| [chroma-core/chroma](https://github.com/chroma-core/chroma) | 28,805 | — | 20.9/day | 2022-10-05 | Apache-2.0 | ai-agents | 2026-07-16 |
|
|
184
|
+
| [breaking-brake/cc-wf-studio](https://github.com/breaking-brake/cc-wf-studio) | 5,321 | — | 20.7/day | 2025-11-01 | NOASSERTION | agent-skills | 2026-07-16 |
|
|
185
|
+
| [Observal/Observal](https://github.com/Observal/Observal) | 2,191 | — | 20.2/day | 2026-03-30 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
186
|
+
| [anysearch-ai/anysearch-mcp-server](https://github.com/anysearch-ai/anysearch-mcp-server) | 1,541 | — | 19.8/day | 2026-04-30 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
187
|
+
| [louislva/claude-peers-mcp](https://github.com/louislva/claude-peers-mcp) | 2,164 | — | 18.4/day | 2026-03-21 | MIT | recent-mcp | 2026-07-16 |
|
|
188
|
+
| [knowsuchagency/mcp2cli](https://github.com/knowsuchagency/mcp2cli) | 2,300 | — | 17.7/day | 2026-03-09 | MIT | recent-mcp | 2026-07-16 |
|
|
189
|
+
| [UsefulSoftwareCo/executor](https://github.com/UsefulSoftwareCo/executor) | 2,703 | — | 17.0/day | 2026-02-07 | MIT | recent-mcp | 2026-07-16 |
|
|
190
|
+
| [jeecgboot/JeecgBoot](https://github.com/jeecgboot/JeecgBoot) | 47,098 | — | 16.9/day | 2018-11-26 | Apache-2.0 | claude-code, codex, mcp | 2026-07-16 |
|
|
191
|
+
| [netdata/netdata](https://github.com/netdata/netdata) | 79,657 | — | 16.7/day | 2013-06-17 | GPL-3.0 | mcp | 2026-07-16 |
|
|
192
|
+
| [didilili/ai-agents-from-zero](https://github.com/didilili/ai-agents-from-zero) | 2,806 | — | 16.6/day | 2026-01-29 | MIT | recent-mcp | 2026-07-16 |
|
|
193
|
+
| [moltis-org/moltis](https://github.com/moltis-org/moltis) | 2,780 | — | 16.5/day | 2026-01-29 | MIT | recent-mcp | 2026-07-16 |
|
|
194
|
+
| [iFurySt/open-codex-computer-use](https://github.com/iFurySt/open-codex-computer-use) | 1,452 | — | 16.0/day | 2026-04-17 | MIT | model-context-protocol | 2026-07-16 |
|
|
195
|
+
| [Mcp-Brasil/mcp-brasil](https://github.com/Mcp-Brasil/mcp-brasil) | 1,678 | — | 14.9/day | 2026-03-26 | MIT | recent-mcp | 2026-07-16 |
|
|
196
|
+
| [rohitg00/awesome-claude-code-toolkit](https://github.com/rohitg00/awesome-claude-code-toolkit) | 2,332 | — | 14.4/day | 2026-02-04 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
197
|
+
| [forloopcodes/contextplus](https://github.com/forloopcodes/contextplus) | 1,955 | — | 14.0/day | 2026-02-27 | MIT | recent-mcp | 2026-07-16 |
|
|
198
|
+
| [mindsdb/mindshub](https://github.com/mindsdb/mindshub) | 39,441 | — | 13.6/day | 2018-08-02 | MIT | codex, mcp | 2026-07-16 |
|
|
199
|
+
| [0xMassi/webclaw](https://github.com/0xMassi/webclaw) | 1,731 | — | 13.5/day | 2026-03-10 | AGPL-3.0 | recent-mcp | 2026-07-16 |
|
|
200
|
+
| [blitzdotdev/blitz-mac](https://github.com/blitzdotdev/blitz-mac) | 1,723 | — | 13.4/day | 2026-03-10 | Apache-2.0 | recent-mcp | 2026-07-16 |
|
|
201
|
+
| [6551Team/opennews-mcp](https://github.com/6551Team/opennews-mcp) | 1,872 | — | 13.3/day | 2026-02-26 | MIT | recent-mcp | 2026-07-16 |
|
|
202
|
+
| [xixu-me/xget](https://github.com/xixu-me/xget) | 8,152 | — | 13.1/day | 2024-11-01 | AGPL-3.0 | agent-skills | 2026-07-16 |
|
|
203
|
+
| [homeassistant-ai/ha-mcp](https://github.com/homeassistant-ai/ha-mcp) | 3,998 | — | 13.1/day | 2025-09-14 | MIT | model-context-protocol | 2026-07-16 |
|
|
204
|
+
| [jgravelle/jcodemunch-mcp](https://github.com/jgravelle/jcodemunch-mcp) | 2,020 | — | 12.8/day | 2026-02-09 | NOASSERTION | model-context-protocol, recent-mcp | 2026-07-16 |
|
|
205
|
+
| [kunchenguid/axi](https://github.com/kunchenguid/axi) | 1,496 | — | 12.8/day | 2026-03-21 | MIT | recent-mcp | 2026-07-16 |
|
|
206
|
+
| [getsentry/XcodeBuildMCP](https://github.com/getsentry/XcodeBuildMCP) | 6,076 | — | 12.3/day | 2025-03-09 | MIT | model-context-protocol | 2026-07-16 |
|
|
207
|
+
| [ThinkInAIXYZ/deepchat](https://github.com/ThinkInAIXYZ/deepchat) | 6,106 | — | 11.8/day | 2025-02-14 | Apache-2.0 | agent-skills | 2026-07-16 |
|
|
208
|
+
| [can4hou6joeng4/boss-agent-cli](https://github.com/can4hou6joeng4/boss-agent-cli) | 1,389 | — | 11.7/day | 2026-03-20 | MIT | model-context-protocol | 2026-07-16 |
|
|
209
|
+
| [phodal/routa](https://github.com/phodal/routa) | 1,743 | — | 11.5/day | 2026-02-16 | MIT | recent-mcp | 2026-07-16 |
|
|
210
|
+
| [alibaba/nacos](https://github.com/alibaba/nacos) | 33,166 | — | 11.2/day | 2018-06-15 | Apache-2.0 | mcp | 2026-07-16 |
|
|
211
|
+
| [chrisryugj/korean-law-mcp](https://github.com/chrisryugj/korean-law-mcp) | 2,222 | — | 10.6/day | 2025-12-19 | MIT | model-context-protocol | 2026-07-16 |
|
|
212
|
+
| [atilaahmettaner/tradingview-mcp](https://github.com/atilaahmettaner/tradingview-mcp) | 3,550 | — | 10.4/day | 2025-08-08 | MIT | model-context-protocol | 2026-07-16 |
|
|
213
|
+
| [Kong/kong](https://github.com/Kong/kong) | 43,793 | — | 10.3/day | 2014-11-17 | Apache-2.0 | mcp | 2026-07-16 |
|
|
214
|
+
| [Upsonic/Upsonic](https://github.com/Upsonic/Upsonic) | 7,909 | — | 10.1/day | 2024-05-26 | MIT | model-context-protocol | 2026-07-16 |
|
|
215
|
+
| [jau123/MeiGen-AI-Design-MCP](https://github.com/jau123/MeiGen-AI-Design-MCP) | 1,577 | — | 9.9/day | 2026-02-07 | MIT | model-context-protocol, recent-mcp | 2026-07-16 |
|
|
216
|
+
| [xu-xiang/everything-claude-code-zh](https://github.com/xu-xiang/everything-claude-code-zh) | 1,668 | — | 9.8/day | 2026-01-27 | MIT | recent-mcp | 2026-07-16 |
|
|
217
|
+
| [IBM/mcp-context-forge](https://github.com/IBM/mcp-context-forge) | 4,101 | — | 9.4/day | 2025-05-08 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
218
|
+
| [bethington/ghidra-mcp](https://github.com/bethington/ghidra-mcp) | 2,826 | — | 8.8/day | 2025-08-30 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
219
|
+
| [IvanMurzak/Unity-MCP](https://github.com/IvanMurzak/Unity-MCP) | 3,568 | — | 7.6/day | 2025-04-02 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
220
|
+
| [tractorjuice/arc-kit](https://github.com/tractorjuice/arc-kit) | 2,088 | — | 7.6/day | 2025-10-14 | NOASSERTION | model-context-protocol | 2026-07-16 |
|
|
221
|
+
| [universal-tool-calling-protocol/code-mode](https://github.com/universal-tool-calling-protocol/code-mode) | 1,514 | — | 6.1/day | 2025-11-11 | MPL-2.0 | model-context-protocol | 2026-07-16 |
|
|
222
|
+
| [stickerdaniel/linkedin-mcp-server](https://github.com/stickerdaniel/linkedin-mcp-server) | 2,795 | — | 6.1/day | 2025-04-13 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
223
|
+
| [jamubc/gemini-mcp-tool](https://github.com/jamubc/gemini-mcp-tool) | 2,255 | — | 5.9/day | 2025-06-29 | NOASSERTION | model-context-protocol | 2026-07-16 |
|
|
224
|
+
| [nanbingxyz/5ire](https://github.com/nanbingxyz/5ire) | 5,275 | — | 5.7/day | 2024-01-06 | NOASSERTION | model-context-protocol | 2026-07-16 |
|
|
225
|
+
| [kubesphere/kubesphere](https://github.com/kubesphere/kubesphere) | 17,002 | — | 5.7/day | 2018-04-21 | NOASSERTION | agent-skills | 2026-07-16 |
|
|
226
|
+
| [zinja-coder/jadx-ai-mcp](https://github.com/zinja-coder/jadx-ai-mcp) | 2,493 | — | 5.4/day | 2025-04-07 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
227
|
+
| [ikaijua/Awesome-AITools](https://github.com/ikaijua/Awesome-AITools) | 6,087 | — | 5.1/day | 2023-04-02 | NOASSERTION | agent-skills | 2026-07-16 |
|
|
228
|
+
| [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) | 2,840 | — | 4.9/day | 2024-12-18 | MIT | model-context-protocol | 2026-07-16 |
|
|
229
|
+
| [metatool-ai/metamcp](https://github.com/metatool-ai/metamcp) | 2,527 | — | 4.7/day | 2025-01-22 | MIT | model-context-protocol | 2026-07-16 |
|
|
230
|
+
| [IBM/AssetOpsBench](https://github.com/IBM/AssetOpsBench) | 2,025 | — | 4.6/day | 2025-05-01 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
231
|
+
| [vibheksoni/stealth-browser-mcp](https://github.com/vibheksoni/stealth-browser-mcp) | 1,516 | — | 4.4/day | 2025-08-09 | MIT | model-context-protocol | 2026-07-16 |
|
|
232
|
+
| [gosom/google-maps-scraper](https://github.com/gosom/google-maps-scraper) | 4,923 | — | 4.2/day | 2023-04-22 | MIT | agent-skills | 2026-07-16 |
|
|
233
|
+
| [stacklok/toolhive](https://github.com/stacklok/toolhive) | 1,945 | — | 4.0/day | 2025-03-12 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
234
|
+
| [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) | 1,829 | — | 3.7/day | 2025-03-13 | MIT | model-context-protocol | 2026-07-16 |
|
|
235
|
+
| [trpc-group/trpc-agent-go](https://github.com/trpc-group/trpc-agent-go) | 1,551 | — | 3.6/day | 2025-05-14 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
236
|
+
| [metalbear-co/mirrord](https://github.com/metalbear-co/mirrord) | 5,219 | — | 3.2/day | 2022-02-01 | MIT | agent-skills | 2026-07-16 |
|
|
237
|
+
| [tinyplex/tinybase](https://github.com/tinyplex/tinybase) | 5,123 | — | 3.1/day | 2021-12-31 | MIT | agent-skills | 2026-07-16 |
|
|
238
|
+
| [the-open-agent/openagent](https://github.com/the-open-agent/openagent) | 5,407 | — | 2.4/day | 2020-05-29 | Apache-2.0 | model-context-protocol | 2026-07-16 |
|
|
239
|
+
| [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) | 1,331 | — | 2.3/day | 2024-12-03 | MIT | model-context-protocol | 2026-07-16 |
|
|
240
|
+
|
|
241
|
+
## Reviewed catalog repositories seen today
|
|
242
|
+
|
|
243
|
+
| Repository | Stars | Matched searches |
|
|
244
|
+
| --- | ---: | --- |
|
|
245
|
+
| [DietrichGebert/ponytail](https://github.com/DietrichGebert/ponytail) | 84,342 | agent-skills, ai-agents, claude-code |
|
|
246
|
+
| [anthropics/skills](https://github.com/anthropics/skills) | 161,573 | agent-skills |
|
|
247
|
+
| [addyosmani/agent-skills](https://github.com/addyosmani/agent-skills) | 78,675 | agent-skills, claude-code, codex, recent-agent-skills |
|
|
248
|
+
| [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | 106,345 | claude-code, codex |
|
|
249
|
+
| [phuryn/pm-skills](https://github.com/phuryn/pm-skills) | 23,801 | agent-skills, recent-agent-skills |
|
|
250
|
+
| [ChromeDevTools/chrome-devtools-mcp](https://github.com/ChromeDevTools/chrome-devtools-mcp) | 47,062 | mcp |
|
|
251
|
+
| [OthmanAdi/planning-with-files](https://github.com/OthmanAdi/planning-with-files) | 25,405 | agent-skills, codex |
|
|
252
|
+
| [JimLiu/baoyu-skills](https://github.com/JimLiu/baoyu-skills) | 23,704 | agent-skills |
|
|
253
|
+
| [upstash/context7](https://github.com/upstash/context7) | 59,185 | mcp |
|
|
254
|
+
| [K-Dense-AI/scientific-agent-skills](https://github.com/K-Dense-AI/scientific-agent-skills) | 30,999 | agent-skills |
|
|
255
|
+
| [wshobson/agents](https://github.com/wshobson/agents) | 37,951 | agent-skills, ai-agents, claude-code, mcp |
|
|
256
|
+
| [github/awesome-copilot](https://github.com/github/awesome-copilot) | 36,650 | agent-skills |
|
|
257
|
+
| [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) | 35,149 | mcp |
|
|
258
|
+
| [github/github-mcp-server](https://github.com/github/github-mcp-server) | 31,481 | mcp |
|
|
259
|
+
| [oraios/serena](https://github.com/oraios/serena) | 26,510 | codex |
|
|
260
|
+
| [Agents365-ai/drawio-skill](https://github.com/Agents365-ai/drawio-skill) | 5,852 | agent-skills |
|
|
261
|
+
| [trailofbits/skills](https://github.com/trailofbits/skills) | 6,141 | agent-skills |
|
|
262
|
+
| [antfu/skills](https://github.com/antfu/skills) | 5,604 | agent-skills, recent-agent-skills |
|
|
263
|
+
| [dotnet/skills](https://github.com/dotnet/skills) | 4,633 | recent-agent-skills |
|
|
264
|
+
| [firecrawl/firecrawl-mcp-server](https://github.com/firecrawl/firecrawl-mcp-server) | 6,967 | model-context-protocol |
|
|
265
|
+
| [exa-labs/exa-mcp-server](https://github.com/exa-labs/exa-mcp-server) | 4,728 | model-context-protocol |
|
|
266
|
+
| [taylorwilsdon/google_workspace_mcp](https://github.com/taylorwilsdon/google_workspace_mcp) | 2,856 | model-context-protocol |
|
|
267
|
+
| [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) | 2,961 | model-context-protocol |
|
|
268
|
+
|
|
269
|
+
## Search evidence
|
|
270
|
+
|
|
271
|
+
- **MCP** (40 API results): `topic:mcp archived:false fork:false pushed:>=2026-05-17`
|
|
272
|
+
- **Model Context Protocol** (40 API results): `topic:model-context-protocol archived:false fork:false pushed:>=2026-05-17`
|
|
273
|
+
- **Agent skills** (40 API results): `topic:agent-skills archived:false fork:false pushed:>=2026-05-17`
|
|
274
|
+
- **Claude Code** (40 API results): `topic:claude-code archived:false fork:false pushed:>=2026-05-17`
|
|
275
|
+
- **Codex** (40 API results): `topic:codex archived:false fork:false pushed:>=2026-05-17`
|
|
276
|
+
- **AI agents** (40 API results): `topic:ai-agents archived:false fork:false pushed:>=2026-05-17`
|
|
277
|
+
- **Recently created MCP repositories** (40 API results): `mcp in:name,description archived:false fork:false created:>=2026-01-17`
|
|
278
|
+
- **Recently created agent-skill repositories** (40 API results): `skills agent in:name,description archived:false fork:false created:>=2026-01-17`
|
|
279
|
+
|
|
280
|
+
The machine-readable evidence, query counts, bounded observation history, and catalog status are in [`catalog/discovered.json`](../catalog/discovered.json).
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Evaluation protocol and uncertainty
|
|
2
|
+
|
|
3
|
+
Loadout evaluates package **evidence**, not the universal quality of an agent.
|
|
4
|
+
Scores are category-specific, reproducible, and carry an uncertainty statement.
|
|
5
|
+
|
|
6
|
+
## Category 1: Skill package hygiene
|
|
7
|
+
|
|
8
|
+
Inputs are a pinned source snapshot and discovered `SKILL.md` directories. Checks:
|
|
9
|
+
|
|
10
|
+
- required frontmatter name and description parse;
|
|
11
|
+
- names are unique within the package;
|
|
12
|
+
- paths stay within the snapshot and are not symlinks;
|
|
13
|
+
- instruction text is scanned for scripts, credential references, and external
|
|
14
|
+
domains; and
|
|
15
|
+
- the package declares at least one compatible target layout.
|
|
16
|
+
|
|
17
|
+
Result: `ready`, `needs-review`, `blocked`, or `not-applicable`, plus findings.
|
|
18
|
+
An absent component category is `not-applicable` and never blocks a different
|
|
19
|
+
supported component. This says nothing about whether the instructions improve a
|
|
20
|
+
particular model's output.
|
|
21
|
+
|
|
22
|
+
## Category 2: MCP manifest safety
|
|
23
|
+
|
|
24
|
+
Inputs are static JSON manifests only. Checks:
|
|
25
|
+
|
|
26
|
+
- valid command/argument structure or HTTPS endpoint;
|
|
27
|
+
- no inline credential values;
|
|
28
|
+
- declared environment variable names only;
|
|
29
|
+
- no executable runs during evaluation; and
|
|
30
|
+
- each server has a concrete compatible configuration target.
|
|
31
|
+
|
|
32
|
+
Result: `ready`, `needs-approval`, or `blocked`, plus the exact permission/finding
|
|
33
|
+
that led there. A passing result does not attest to server reliability or data access.
|
|
34
|
+
|
|
35
|
+
## Uncertainty rules
|
|
36
|
+
|
|
37
|
+
No score uses stars, social mentions, or a single benchmark as proof of quality.
|
|
38
|
+
Missing evidence lowers confidence; it is not treated as negative evidence. Evaluators
|
|
39
|
+
are deterministic over the same pinned snapshot and report their version and inputs.
|
|
40
|
+
Human review remains mandatory for all findings that require approval.
|