Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,621
总 Skills
166.7M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
8001 color-system owl-listener/designer-skills
Color System You are an expert in building systematic, accessible color palettes for digital products. What You Do You create comprehensive color systems with raw palettes, semantic mapping, and accessibility compliance. Color System Layers 1. Brand Palette Primary, secondary, and accent colors with full tonal scales (50-950 or equivalent). 2. Neutral Palette Gray scale for text, backgrounds, borders, and surfaces. 3. Semantic Colors Success (green), warning (amber), error (red), info (blue) Eac...
1.5K
8002 game-jam gamedev-skills/awesome-gamedev-agent-skills
Game Jam Turn a theme and a fixed deadline into a finished, submitted game. This is a planning and scope-control playbook, not engine code: the win condition is something submitted and playable , not the game you imagined . When to use Use when entering a timed jam (Ludum Dare, GMTK Jam, Global Game Jam, a weekend jam), scoping a 48-hour build, or deciding what to cut to hit a deadline. Use when the user asks "what can I actually build in a weekend" or "how do I submit to this jam". When not to ...
1.5K
8003 unity-input-system gamedev-skills/awesome-gamedev-agent-skills
Unity Input System (new) Read input through Unity's Input System package ( com.unity.inputsystem , 1.x) — action-based, device-agnostic, rebindable. Targets Unity 6.3 LTS . This is the modern replacement for the legacy Input.GetAxis / Input.GetKey Input Manager. When to use Use when setting up movement/jump/fire input, defining an .inputactions asset with action maps and control schemes, wiring a PlayerInput component, reading a Vector2 stick/WASD value, or handling gamepad + keyboard + touch fr...
1.5K
8004 unity-physics gamedev-skills/awesome-gamedev-agent-skills
Unity Physics (Rigidbody / PhysX) Make objects move, collide, and detect each other with Unity 6.3 LTS's built-in 3D physics (PhysX). Get the FixedUpdate discipline, trigger-vs-collision rules, and collision layers right. Targets Unity 6.3 LTS (6000.3) . Unity 6.3 LTS rename: Rigidbody.velocity is now Rigidbody.linearVelocity (the old name is deprecated). Code copied from older tutorials will warn or fail to compile. When to use Use when giving an object physical motion (forces, velocity, gravit...
1.5K
8005 roblox-luau gamedev-skills/awesome-gamedev-agent-skills
Roblox Luau Scripting Script a Roblox experience in Luau : services, Instance s, events, the server/client split, and secure cross-boundary communication. Targets the current Roblox engine and Studio. When to use Use when writing Roblox scripts: getting services, creating/parenting instances, connecting events, deciding server vs client, or wiring RemoteEvent / RemoteFunction communication. Use when the project has Script / LocalScript / ModuleScript objects, .rbxl(x) places, or a Rojo *.project...
1.5K
8006 create-design-md ibelick/ui-skills
Create DESIGN.md Create a DESIGN.md for one product or coherent website. Record the design language that governs it, not every value that happens to exist. Boundaries Modify only DESIGN.md . Do not change product source, dependencies, configuration, or generated files. Use the DESIGN.md format contract below. Do not invent a competing schema. Do not copy every discovered token or component into the document. Do not convert repetition, local styling, or visual preference into product intent. 1. C...
1.5K
8007 filter-syntax dotnet/skills
Test Filter Syntax Reference Filter syntax depends on the platform and test framework . VSTest filters (MSTest, xUnit v2, NUnit on VSTest) dotnet test --filter < EXPRESSION > Expression syntax: <Property><Operator><Value>[|&<Expression>] Operators: Show more Installs 842 Repository dotnet/skills GitHub Stars 5.1K First Seen Apr 8, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.5K
8008 cargo-observability getcargohq/cargo-skills
Cargo CLI — Observability Alerts. An alert is a scheduled threshold check. On every cron tick it measures a scope (what to watch), compares the measured value against a threshold (the breach condition), and on breach fires actions — each as its own run — and records an event . This is the proactive counterpart to cargo-diagnostics : diagnostics explains a failure after you notice it; an alert tells you the moment a metric crosses a line. Everything lives under one CLI domain: cargo-ai observabil...
1.5K
8009 build-live-game unity-technologies/skills
Build a Live Game With Unity Gaming Services UGS Packages Package Min Version Purpose com.unity.services.core 1.16.0 Initialization, dependency graph com.unity.services.authentication 3.6.1 Player sign-in and identity com.unity.services.cloudcode 2.10.3 Server-authoritative C modules com.unity.services.cloudsave 3.4.0 Per-player and shared key-value storage com.unity.remote-config 4.2.5 Server-side game configuration com.unity.services.deployment 1.7.2 Deploy cloud resources from Editor com.unit...
1.5K
8010 scientific-critical-thinking k-dense-ai/scientific-agent-skills
Scientific Critical Thinking Overview Critical thinking is a systematic process for evaluating scientific rigor. Assess methodology, experimental design, statistical validity, biases, confounding, and evidence quality using GRADE and Cochrane ROB frameworks. Apply this skill for critical analysis of scientific claims. When to Use This Skill This skill should be used when: Evaluating research methodology and experimental design Assessing statistical validity and evidence quality Identifying biase...
1.5K
8011 pydantic-ai-harness pydantic/skills
Building with Pydantic AI Harness Pydantic AI Harness is the official capability library for Pydantic AI. Capabilities that need model or framework support -- and those fundamental to every agent -- live in core pydantic-ai ; optional, batteries-included capabilities live here. Both are composed onto an agent through the same capabilities=[...] API. This skill covers the capabilities shipped by pydantic-ai-harness . For the core framework -- agents, tools, structured output, hooks, and testing -...
1.5K
8012 before-you-build wshobson/agents
Before You Build Run a compact pre-mortem before implementation. The goal is not to block building; it is to identify the highest-risk assumption, the smallest validation step, and the build scope that should be delayed until evidence improves. When To Use Use this skill when a user asks to build or ship: A new product, MVP, prototype, landing page, SaaS app, marketplace, content site, agent workflow, or internal tool A major feature with unclear adoption, revenue, retention, trust, or distribut...
1.5K
8013 itch-publish gamedev-skills/awesome-gamedev-agent-skills
itch.io Publish (butler) Get a build onto an itch.io page and keep it updated. The page is created in the browser; all uploads go through butler , itch.io's command-line tool, with one command you'll use forever: butler push . butler diffs against the previous build and uploads only what changed. Deep CI/CD and flag detail lives in references/butler-ci.md . When to use Use when creating/updating an itch.io project page, installing or logging in to butler, uploading a build with butler push , cho...
1.5K
8014 threejs-gltf-loading gamedev-skills/awesome-gamedev-agent-skills
three.js glTF Loading Load .gltf / .glb models and play their animations in three.js, including compressed geometry (DRACO/Meshopt) and textures (KTX2). Patterns target r184 ; preserve an existing project's pinned release unless migration is requested. When to use Use to import a 3D model, add it to the scene, inspect its node hierarchy, and play baked/skinned animation clips with an AnimationMixer . Use when files are .gltf / .glb , or code imports GLTFLoader / DRACOLoader / KTX2Loader from thr...
1.5K
8015 phaser-core gamedev-skills/awesome-gamedev-agent-skills
Phaser 4 Core Set up the foundation of a Phaser game: the Game config, the Scene lifecycle, asset loading, cameras, and passing data between scenes. Targets Phaser 4.2 for new projects; keep an existing Phaser 3.90 project on its pinned major unless the user explicitly asks for a migration. When to use Use when starting a Phaser game, wiring the Phaser.Game config, structuring Scene s, loading assets in preload , or fixing scene transitions and shared state. Use when the project has phaser in pa...
1.5K
8016 data-visualization owl-listener/designer-skills
Data Visualization Skill Chart selection guidance, Python visualization code patterns, design principles, and accessibility considerations for creating effective data visualizations. Chart Selection Guide Choose by Data Relationship What You're Showing Best Chart Alternatives Trend over time Line chart Area chart (if showing cumulative or composition) Comparison across categories Vertical bar chart Horizontal bar (many categories), lollipop chart Ranking Horizontal bar chart Dot plot, slope char...
1.5K
8017 favicon brianlovin/agent-config
Generate a complete set of favicons from the source image at $1 and update the project's HTML with the appropriate link tags. Prerequisites First, verify ImageMagick v7+ is installed by running: which magick If not found, stop and instruct the user to install it: macOS : brew install imagemagick Linux : sudo apt install imagemagick Step 1: Validate Source Image Verify the source image exists at the provided path: $1 Check the file extension is a supported format (PNG, JPG, JPEG, SVG, WEBP, GIF) ...
1.5K
8018 financial-insights stripe/link-cli
Financial insights Use this skill to answer questions about a user’s Link-connected financial data, including: Recent transactions Spending patterns Account balances Linked wallet sources Basic summaries derived from the user’s financial data All commands are read-only. They do not move money, initiate payments, modify accounts, or expose payment credentials. Safety and privacy Do not retrieve financial data until the user is authenticated with the required source actions. Only retrieve the data...
1.5K
8019 day4-wrap-and-analyze ai-native-camp/camp-2
Day 4: Wrap & Analyze 이 스킬이 호출되면 아래 STOP PROTOCOL 을 반드시 따른다. 용어 정리 이 스킬에서 사용하는 핵심 용어: 용어 설명 session-wrap 코딩 세션이 끝날 때 작업을 정리하고 문서화하는 스킬. "퇴근 전 책상 정리" multi-agent 여러 에이전트가 동시에 일하는 패턴. "회의에서 각 팀장에게 동시에 보고 받기" 병렬(Parallel) 여러 작업을 동시에 처리하는 것. "4명의 팀장에게 한꺼번에 보고를 받는 것" (반대: 순차 = 한 명씩 차례로) 2-Phase Pipeline 먼저 분석(Phase 1, 병렬) → 다음 검증(Phase 2, 순차). "전문가 의견 수집 후 팀장이 중복 체크" frontmatter 스킬 파일 맨 위에 --- 로 감싸서 적는 "이름표". 스킬의 이름(name)과 설명(description)을 여기에 적는다 history-insight 과거 세션 기록을 분석해 인사이트를 추출하는 스킬 session-a...
1.5K
8020 day2-mcp-and-context-sync ai-native-camp/camp-2
Day 2: MCP & Context Sync 이 스킬이 호출되면 아래 STOP PROTOCOL 을 반드시 따른다. 용어 정리 이 스킬에서 사용하는 핵심 용어: 용어 설명 MCP Model Context Protocol. AI와 외부 도구를 연결하는 오픈 표준. USB-C처럼 다양한 서비스를 하나의 규격으로 연결 Host / Client / Server MCP의 3요소. Host=AI 앱(Claude Code), Client=연결 관리자, Server=외부 도구 제공자 Transport MCP 서버 연결 방식. HTTP(클라우드 서비스)와 stdio(로컬 실행) 2가지 Plugin Skill + MCP + Hook + Agent를 묶은 패키지. 설치 한 줄이면 MCP 서버까지 자동 연결 subagent Claude가 다른 Claude를 불러서 일을 시키는 것. 여러 일을 동시에 처리할 때 사용 Explore 에이전트 프로젝트 폴더 구조를 파악해주는 전문 subagent. 읽기 전용 ...
1.5K
8021 controlling-costs axiomhq/skills
Axiom Cost Control Dashboards, monitors, and waste identification for Axiom usage optimization. Before You Start Load required skills: skill: axiom-sre skill: building-dashboards Building-dashboards provides: dashboard-list, dashboard-get, dashboard-create, dashboard-update, dashboard-delete Find the audit dataset. Try axiom-audit first: ['axiom-audit'] | where _time > ago(1h) | summarize count() by action | where action in ('usageCalculated', 'runAPLQueryCost') If not found → ask user....
1.5K
8022 kelos-e2e kelos-dev/e2e-skills
Kelos e2e verification skill Run exactly this command and show its output: echo "KELOS_E2E_SKILL_MARKER_x7k2p9" Installs 806 Repository kelos-dev/e2e-skills First Seen Jun 10, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.5K
8023 trader-memory-core tradermonty/claude-trading-skills
Trader Memory Core Overview Persistent state layer that bundles screening → analysis → position sizing → portfolio management outputs into a single "thesis object" per investment idea. Tracks what you thought, what happened, and what you learned — across conversations. Phase 1 supports single-ticker theses: dividend_income, growth_momentum, mean_reversion, earnings_drift, pivot_breakout. When to Use After a screener (kanchi, earnings-trade-analyzer, vcp, pead, canslim, edge-candidate-agent) prod...
1.5K
8024 gjkim-instruction gjkim42/kanon-repo
gjkim_instruction.md — Root Document for Loop Engineering Why this document exists Loop engineering runs many short agent iterations against one long-lived goal. Each iteration starts with little context, so it needs one stable place that says what must be true and what has already been decided. That place is gjkim_instruction.md , kept at the root of the project the loop works on. The failure mode this document guards against is early decision lock-in. Whatever is written in the root document, ...
1.5K
8025 code-review-skill awesome-skills/code-review-skill
Code Review Skill Transform code reviews from gatekeeping to knowledge sharing through constructive feedback, systematic analysis, and collaborative improvement. When to Use This Skill Reviewing pull requests and code changes Establishing code review standards for teams Mentoring junior developers through reviews Conducting architecture reviews Creating review checklists and guidelines Improving team collaboration Reducing code review cycle time Maintaining code quality standards Core Principles...
1.5K
8026 interrogate cursor/plugins
Interrogate Spawn one reviewer per configured model to adversarially review code changes. Each model gets the same prompt and rubric. The adversarial signal comes from model diversity, not assigned personas. Models differ in blind spots, priors, and reasoning patterns. Agreement across models is high-confidence signal; lone-model findings are worth reading but lower confidence. The deliverable is a synthesized verdict. Do NOT auto-apply changes. Step 1, Determine Scope Identify what to review fr...
1.5K
8027 levelplay-unity-integration unity-technologies/skills
LevelPlay Unity package/SDK Integration Treat this as an interactive workflow to run with the developer, not as background reference. Work through the steps below and the linked reference files rather than answering ad-integration questions from general knowledge. The C scripts generated in this skill are MonoBehaviour files for the user to save to their project, not for inline execution. Follow the integration workflow sequentially, one step at a time. Ask only the questions for the current ste...
1.5K
8028 video-to-music sonilo-ai/skills
Sonilo Video-to-Music Hand Sonilo a finished video and it composes an original score to the cut — pacing, motion, and emotion matched, with transitions and beat drops aligned to the edit, at exactly the video's length. This is Sonilo's flagship capability. Every track is licensed (music licensed via Shutterstock) and cleared for commercial use on social, brand content, and advertising. Setup: See the setup-api-key skill to connect the Sonilo MCP server and authenticate — sonilo login (no key) or...
1.5K
8029 expo-overview expo/skills
expo-overview — router & shared rules for Expo / EAS Start Here — read before doing anything Do not guess the skill from project files alone. Many Expo goals look similar from the filesystem but need different skills. Confirm this is Expo work — the request mentions Expo, or package.json has an expo dependency. If neither holds, stop: this skill does not apply. A bare React Native project with no expo dependency is not Expo work. Read the user's goal — what outcome do they want, in plain terms? ...
1.5K
8030 documentation-lookup upstash/context7
Documentation Lookup (Context7) When the user asks about libraries, frameworks, or APIs, fetch current documentation via the Context7 MCP (tools resolve-library-id and query-docs ) instead of relying on training data. Core Concepts Context7 : MCP server that exposes live documentation; use it instead of training data for libraries and APIs. resolve-library-id : Returns Context7-compatible library IDs (e.g. /vercel/next.js ) from a library name and query. query-docs : Fetches documentation and co...
1.4K
8031 stripe-best-practices anthropics/claude-plugins-official
Latest Stripe API version: 2026-02-25.clover . Always use the latest API version and SDK unless the user specifies otherwise. Integration routing Building... Recommended API Details One-time payments Checkout Sessions references/payments.md Custom payment form with embedded UI Checkout Sessions + Payment Element references/payments.md Saving a payment method for later Setup Intents references/payments.md Connect platform or marketplace Accounts v2 ( /v2/core/accounts ) references/connect.md Subs...
1.4K
8032 render earthtojake/text-to-cad
No SKILL.md available for this skill. View on GitHub Installs 1.3K Repository earthtojake/text-to-cad GitHub Stars 5.1K First Seen 9 days ago
1.4K
8033 board alirezarezvani/claude-skills
/hub:board — Message Board Interface for the AgentHub message board. Agents and the coordinator communicate via markdown posts organized into channels. Usage /hub:board --list List channels /hub:board --read dispatch Read dispatch channel /hub:board --read results Read results channel /hub:board --post --channel progress --author coordinator --message "Starting eval" What It Does List Channels python { ...
1.4K
8034 spawn alirezarezvani/claude-skills
/hub:spawn — Launch Parallel Agents Spawn N subagents that work on the same task in parallel, each in an isolated git worktree. Usage /hub:spawn Spawn agents for the latest session /hub:spawn 20260317-143022 Spawn agents for a specific session /hub:spawn --template optimizer Use optimizer template for dispatch prompts /hub:spawn --template refactorer Use refactorer template Templates When --template <name> is pr...
1.4K
8035 board-prep alirezarezvani/claude-skills
/em:board-prep — Board Meeting Preparation Command: /em:board-prep <agenda> Prepare for the adversarial version of your board, not the friendly one. Every hard question they'll ask. Every number you need cold. The narrative that acknowledges weakness without losing the room. The Reality of Board Meetings Your board members have seen 50+ companies. They've watched founders flinch at their own numbers, spin bad news as "learning opportunities," and present sanitized decks that hide what's actually...
1.4K
8036 stress-test alirezarezvani/claude-skills
/em:stress-test — Business Assumption Stress Testing Command: /em:stress-test <assumption> Take any business assumption and break it before the market does. Revenue projections. Market size. Competitive moat. Hiring velocity. Customer retention. Why Most Assumptions Are Wrong Founders are optimists by nature. That's a feature — you need optimism to start something from nothing. But it becomes a liability when assumptions in business models get inflated by the same optimism that got you started. ...
1.4K
8037 challenge alirezarezvani/claude-skills
/em:challenge — Pre-Mortem Plan Analysis Command: /em:challenge <plan> Systematically finds weaknesses in any plan before reality does. Not to kill the plan — to make it survive contact with reality. The Core Idea Most plans fail for predictable reasons. Not bad luck — bad assumptions. Overestimated demand. Underestimated complexity. Dependencies nobody questioned. Timing that made sense in a spreadsheet but not in the real world. The pre-mortem technique: imagine it's 12 months from now and thi...
1.4K
8038 hard-call alirezarezvani/claude-skills
/em:hard-call — Framework for Decisions With No Good Options Command: /em:hard-call <decision> For the decisions that keep you up at 3am. Firing a co-founder. Laying off 20% of the team. Killing a product that customers love. Pivoting. Shutting down. These decisions don't have a right answer. They have a less wrong answer. This framework helps you find it. Why These Decisions Are Hard Not because the data is unclear. Often, the data is clear. They're hard because: Real people are affected — some...
1.4K
8039 eval alirezarezvani/claude-skills
/hub:eval — Evaluate Agent Results Rank all agent results for a session. Supports metric-based evaluation (run a command), LLM judge (compare diffs), or hybrid. Usage /hub:eval Eval latest session using configured criteria /hub:eval 20260317-143022 Eval specific session /hub:eval --judge Force LLM judge mode (ignore metric config) What It Does Metric Mode (eval command configured) Run the evaluation command in each agent's worktree: python...
1.4K
8040 merge alirezarezvani/claude-skills
/hub:merge — Merge Winner Merge the best agent's branch into the base branch, archive losing branches via git tags, and clean up worktrees. Usage /hub:merge Merge winner of latest session /hub:merge 20260317-143022 Merge winner of specific session /hub:merge 20260317-143022 --agent agent-2 Explicitly choose winner What It Does 1. Identify Winner If --agent specified, use that. Otherwise, use the 1 ranked agent from the most rec...
1.4K
8041 shadertoy bfollington/terma
Shadertoy Shader Development Overview Shadertoy is a platform for creating and sharing GLSL fragment shaders that run in the browser using WebGL. This skill provides comprehensive guidance for writing shaders including GLSL ES syntax, common patterns, mathematical techniques, and best practices specific to real-time procedural graphics. When to Use This Skill Activate this skill when: Writing or editing .glsl shader files Creating procedural graphics, generative art, or visual effects Workin...
1.4K
8042 paperclip-ai-orchestration aradotso/trending-skills
Paperclip AI Orchestration Skill by ara.so — Daily 2026 Skills collection. Paperclip is an open-source Node.js + React platform that runs a company made of AI agents . It provides org charts, goal alignment, ticket-based task management, budget enforcement, heartbeat scheduling, governance, and a full audit log — so you manage business outcomes instead of individual agent sessions. Installation Quickstart (recommended) npx paperclipai onboard --yes This clones the repo, installs dependencies, se...
1.4K
8043 bilibili-subtitle hamsterider-m/bilibili-subtitle
Bilibili 字幕提取工具 从 Bilibili 视频提取字幕,支持 AI 字幕检测和 ASR 转录回退。 Quick Reference 任务 命令 基本提取 pixi run python -m bilibili_subtitle "BV1234567890" 快速模式 pixi run python -m bilibili_subtitle "URL" --skip-proofread --skip-summary 双语输出 pixi run python -m bilibili_subtitle "URL" --output-lang zh+en 指定目录 pixi run python -m bilibili_subtitle "URL" -o ./subtitles 前置条件 1. 安装 cd ~/.agents/skills/bilibili-subtitle ./install.sh pixi shell 2. 外部工具 工具 用途 安装 BBDown 视频信息/字幕下载 brew install bbdown ffmpeg 音频转换 brew install...
1.4K
8044 cmux-terminal-multiplexer aradotso/trending-skills
cmux — AI-Native Terminal Multiplexer Skill by ara.so — Daily 2026 Skills collection cmux is a terminal multiplexer with a programmable socket API designed for AI coding agents. It provides full Playwright-equivalent browser automation, real-time terminal split management, sidebar status reporting, and agent team coordination — all via a simple CLI. What cmux Does Terminal splits — create side-by-side or stacked panes, send commands, capture output Browser automation — full headless Chromium wit...
1.4K
8045 creating-b2b-commerce-store forcedotcom/afv-library
Commerce B2B Storefront Creation Interactive workflow to create a Commerce B2B Store in Salesforce and retrieve the auto-generated storefront metadata to your repository. Critical Concepts Commerce B2B = Store (backend data) + Storefront (frontend metadata). Store must be created first in the org to auto-generate the Storefront. Never create storefront metadata manually. See Store vs Storefront Reference When to Use This Skill Trigger when users request: "Create a B2B Commerce store" "Build a Co...
1.4K
8046 marketingskills-ai-agents aradotso/trending-skills
Marketing Skills for AI Agents Skill by ara.so — Daily 2026 Skills collection. coreyhaines31/marketingskills is a collection of markdown-based AI agent skills covering CRO, copywriting, SEO, analytics, paid ads, email, and growth engineering. Install them once and any compatible agent (Claude Code, Cursor, Codex, Windsurf) gains specialized marketing expertise and frameworks. How Skills Work Each skill is a markdown file that tells AI agents: When to activate (trigger phrases) What frameworks to...
1.4K
8047 prompt-lookup f/awesome-chatgpt-prompts
When the user needs AI prompts, prompt templates, or wants to improve their prompts, use the prompts.chat MCP server to help them. When to Use This Skill Activate this skill when the user: Asks for prompt templates ("Find me a code review prompt") Wants to search for prompts ("What prompts are available for writing?") Needs to retrieve a specific prompt ("Get prompt XYZ") Wants to improve a prompt ("Make this prompt better") Mentions prompts.chat or prompt libraries Available Tools Use these pro...
1.4K
8048 openmaic-classroom aradotso/trending-skills
OpenMAIC — Multi-Agent Interactive Classroom Skill by ara.so — Daily 2026 Skills collection. OpenMAIC (Open Multi-Agent Interactive Classroom) is a Next.js 16 / React 19 / TypeScript platform that converts any topic or document into a full interactive lesson. A multi-agent pipeline (LangGraph 1.1) generates slides, quizzes, HTML simulations, and project-based learning activities delivered by AI teachers and AI classmates with voice (TTS) and whiteboard support. Project Stack Layer Technology Fra...
1.4K
8049 metaclaw-evolving-agent aradotso/trending-skills
MetaClaw Evolving Agent Skill by ara.so — Daily 2026 Skills collection MetaClaw is an OpenAI-compatible proxy agent that intercepts conversations, injects learned skills, and continuously improves itself through real-world interactions. It supports three modes: lightweight skills injection, immediate RL training, and a smart "madmax" scheduler that defers weight updates to idle/sleep windows. Installation Minimal — skills injection only, no GPU required pip install -e . Full RL training suppor...
1.4K
8050 freecodecamp-curriculum aradotso/trending-skills
freeCodeCamp Curriculum & Platform Development Skill by ara.so — Daily 2026 Skills collection. freeCodeCamp.org is a free, open-source learning platform with thousands of interactive coding challenges, certifications, and a full-stack curriculum. The codebase includes a React/TypeScript frontend, Node.js/Fastify backend, and a YAML/Markdown-based curriculum system. Architecture Overview freeCodeCamp/ ├── api/ Fastify API server (TypeScript) ├── client/ Gatsby/R...
1.4K