███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8351 | spl-to-apl | axiomhq/skills |
Type safety: Fields like status are often stored as strings. Always cast before numeric comparison: toint(status) >= 500, not status >= 500. Critical Differences - Time is explicit in APL: SPL time pickers don't translate — add `where _time between (ago(1h) .. now())` - Structure: SPL `index=... | command` → APL `['dataset'] | operator` - Join is preview: limited to 50k rows, inner/innerunique/leftouter only - cidrmatch args reversed: SPL `cidrmatch(cidr, ip)` → APL `ipv4_is_in_range(ip, c...
|
1.4K |
| 8352 | migrate-to-parallel | parallel-web/parallel-agent-skills |
Migrate to Parallel Replace the provider boundary end to end. Treat a successful HTTP response as the midpoint, not completion: migrate request construction, response consumers, dependencies, configuration, tests, and operational behavior. Resolve <skill-root> to the directory containing this SKILL.md . Resolve every bundled reference and script from that directory, regardless of the current working directory. The scanner uses only the Python standard library. If Python 3.9 or newer is unavailab...
|
1.4K |
| 8353 | technology-selection | dotnet/skills |
No SKILL.md available for this skill. View on GitHub Installs 337 Repository dotnet/skills GitHub Stars 2.1K First Seen Mar 12, 2026
|
1.4K |
| 8354 | migrate-dotnet9-to-dotnet10 | dotnet/skills |
.NET 9 → .NET 10 Migration Migrate a .NET 9 project or solution to .NET 10, systematically resolving all breaking changes. The outcome is a project targeting net10.0 that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in the .NET 10 release. When to Use Upgrading TargetFramework from net9.0 to net10.0 Resolving build errors or new warnings after updating the .NET 10 SDK Adapting to behavioral changes in .NET 10 runt...
|
1.4K |
| 8355 | build-perf-diagnostics | dotnet/skills |
Performance Analysis Methodology Generate a binlog : dotnet build /bl:{} -m Replay to diagnostic log with performance summary : dotnet msbuild build.binlog -noconlog -fl -flp:v = diag ; logfile = full.log ; performancesummary Read the performance summary (at the end of full.log ): grep "Target Performance Summary\|Task Performance Summary" -A 50 full.log Find expensive targets and tasks : The PerformanceSummary section lists all targets/tasks sorted by cumulative time Check for node utilization ...
|
1.4K |
| 8356 | dotnet-maui-doctor | dotnet/skills |
.NET MAUI Doctor Validate and fix .NET MAUI development environments. All version requirements are discovered dynamically from NuGet APIs — never hardcode versions. When to Use Setting up a new .NET MAUI development environment Build errors mentioning missing SDKs, workloads, JDK, or Android components Errors like "Android SDK not found", "Java version", or "Xcode not found" Verifying environment health after SDK or OS updates When Not to Use Non-MAUI .NET projects (use standard .NET SDK trouble...
|
1.4K |
| 8357 | google-ads-api-account-diagnostics | google/skills |
Google Ads API Account Performance Diagnostics Skill This skill provides instructions on how to use the Google Ads MCP server tools to diagnose common account performance issues. Workflows Identifying Active Client Accounts Most diagnostics tasks require sending GAQL queries to a specific customer account. If the customer ID is not explicitly provided by the user, you must first call the list_accessible_customers (or customers_list_accessible_customers ) tool to retrieve the customer resource na...
|
1.4K |
| 8358 | principle-type-system-discipline | cursor/plugins |
Type System Discipline The type checker is a proof assistant. Use it to eliminate impossible states, mismatched primitives, and unhandled variants at compile time. A case the types let you ignore becomes a runtime failure the compiler could have stopped. Prefer defining errors and special cases out of existence over proliferating handlers; unrepresentable states, total functions, and interface redesign (the patterns below) are the tools. Applies to any typed language. Skills like typescript-best...
|
1.4K |
| 8359 | dx-apexguru-scan | forcedotcom/sf-skills |
ApexGuru Performance Scan Skill CRITICAL: Mandatory Script Usage Every step — token resolution, zipping, API calls, and report decoding — MUST go through the bundled scripts in <skill_dir>/scripts/ . No exceptions. WRONG — never do this: WRONG: hand-rolled curl to the API curl -X POST https://api.salesforce.com/ .. . -F file = @x.zip WRONG: inline base64 + jq to read the report cat raw.json | jq -r .report | base64 -d | jq '.[]' WRONG: reading the raw result file directly (report is a large b...
|
1.4K |
| 8360 | frontend-design | cline/skills |
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
|
1.4K |
| 8361 | implement-in-app-purchases | unity-technologies/skills |
Unity In-App Purchasing Namespace: UnityEngine.Purchasing | Security: UnityEngine.Purchasing.Security Package: com.unity.purchasing Unity IAP has its own initialization path via UnityIAPServices.StoreController() → store.Connect() . It does not require UnityServices.InitializeAsync() , but they can coexist if your project uses other UGS services. If Analytics is present and InitializeAsync() is called, IAP will automatically send transaction events. Before You Start Always read references/pre-ch...
|
1.4K |
| 8362 | 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.4K |
| 8363 | video-to-sfx | sonilo-ai/skills |
Sonilo Video-to-SFX Hand Sonilo a video and it generates sound effects matching what it sees — footsteps, impacts, ambience, UI sounds, whatever the scene calls for — or pin specific sounds to specific moments with segments . Generation runs as an async task on the backend; the tools poll internally and hand back the saved file. Setup: See the setup-api-key skill. ⚠️ Cost: every tool below makes an API call that may incur charges. Only call it when explicitly requested. Transport: MCP or CLI Pic...
|
1.4K |
| 8364 | github-issue-triage | code-yeongyu/oh-my-opencode |
No SKILL.md available for this skill. View on GitHub
|
1.3K |
| 8365 | flutter-layout | flutter/skills |
Goal Constructs robust, responsive Flutter user interfaces by composing layout widgets, managing constraints, and implementing adaptive design patterns. Assumes the target environment has the Flutter SDK installed and the user is familiar with Dart syntax and state management fundamentals. Instructions Determine Layout Strategy (Decision Logic) Analyze the UI requirements and select the appropriate base layout widgets using the following decision tree: Is the content strictly 1-Dimensional? Hori...
|
1.3K |
| 8366 | convert | binance/binance-skills-hub |
Binance Convert Skill Convert request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /sapi/v1/convert/exchangeInfo (GET) List All Convert Pairs None fromAsset, toAsset No /sapi/v1/convert/assetInfo (GET) Query order quantity precision per asset(USER_DATA) None recvWindow Yes /sapi/v1/convert/acceptQuote (POST) Accept Quote (TRADE) quoteId r...
|
1.3K |
| 8367 | vertex-ai-api-dev | google-gemini/gemini-skills |
Gemini API in Vertex AI Access Google's most advanced AI models built for enterprise use cases using the Gemini API in Vertex AI. Provide these key capabilities: Text generation - Chat, completion, summarization Multimodal understanding - Process images, audio, video, and documents Function calling - Let the model invoke your functions Structured output - Generate valid JSON matching your schema Context caching - Cache large contexts for efficiency Embeddings - Generate text embeddings for seman...
|
1.3K |
| 8368 | react-devtools | callstackincubator/agent-device |
agent-react-devtools CLI that connects to a running React or React Native app via the React DevTools protocol and exposes the component tree, props, state, hooks, and profiling data in a token-efficient format. Core Workflow Ensure connection — check agent-react-devtools status . If the daemon is not running, start it with agent-react-devtools start . Use agent-react-devtools wait --connected to block until a React app connects. Inspect — get the component tree, search for components, inspect pr...
|
1.3K |
| 8369 | salesforce | membranedev/application-skills |
Salesforce Salesforce is a leading cloud-based CRM platform that helps businesses manage customer relationships and sales processes. It's primarily used by sales, marketing, and customer service teams to track leads, automate marketing campaigns, and provide customer support. Official docs: https://developer.salesforce.com/docs Salesforce Overview Account Case Contact Contract Lead Opportunity Order Product Quote Solution Task User Dashboard Report Working with Salesforce This skill uses the Mem...
|
1.3K |
| 8370 | zustand-state-management | jezweb/claude-skills |
Zustand State Management Last Updated: 2026-01-21 Latest Version: zustand@5.0.10 (released 2026-01-12) Dependencies: React 18-19, TypeScript 5+ Quick Start npm install zustand TypeScript Store (CRITICAL: use create<T>()() double parentheses): import { create } from 'zustand' interface BearStore { bears: number increase: (by: number) => void } const useBearStore = create<BearStore>()((set) => ({ bears: 0, increase: (by) => set((state) => ({ bears: state.bears + by })), })) Use in...
|
1.3K |
| 8371 | create mcp app | modelcontextprotocol/ext-apps |
Create MCP App Build interactive UIs that run inside MCP-enabled hosts like Claude Desktop. An MCP App combines an MCP tool with an HTML resource to display rich, interactive content. Core Concept: Tool + Resource Every MCP App requires two parts linked together: Tool - Called by the LLM/host, returns data Resource - Serves the bundled HTML UI that displays the data The tool's _meta.ui.resourceUri references the resource's URI. Host calls tool → Host renders resource UI → Server returns result →...
|
1.3K |
| 8372 | picoclaw-ai-assistant | aradotso/trending-skills |
PicoClaw AI Assistant Skill by ara.so — Daily 2026 Skills collection. PicoClaw is an ultra-lightweight personal AI assistant written in Go. It runs on $10 hardware with under 10MB RAM and boots in under 1 second. It supports multiple LLM providers (OpenAI-compatible, Anthropic, Volcengine), optional web search tools, and deploys as a single self-contained binary on x86_64, ARM64, MIPS, and RISC-V Linux devices. Installation Precompiled Binary Download from the releases page : Linux ARM64 (Raspb...
|
1.3K |
| 8373 | minecraftconsoles-lce | aradotso/trending-skills |
MinecraftConsoles (Legacy Console Edition) Skill Skill by ara.so — Daily 2026 Skills collection. What This Project Is MinecraftConsoles is a C++ reimplementation/continuation of Minecraft Legacy Console Edition v1.6.0560.0 (TU19) , targeting modern Windows (and unofficially macOS/Linux via Wine). Goals include: Multi-platform base for modding, backports, and LCE development Quality desktop experience with keyboard/mouse and controller support LAN multiplayer and dedicated server software Splitsc...
|
1.3K |
| 8374 | obsidian-wiki-ingest | ar9av/obsidian-wiki |
Obsidian Wiki Ingest — Automation Skill You are the automation layer that ingests documents into the Obsidian wiki project. This skill orchestrates the ingestion workflow, ensuring deduplication, proper frontmatter, and cross-linking with existing pages. Trigger User says: "ingest to wiki", "add to wiki", or any phrasing that targets the obsidian-wiki repository. Context: active in the /home/ubuntu/projects/obsidian-wiki workspace. Responsibilities Validate target vault path from the environment...
|
1.3K |
| 8375 | vinext-vite-nextjs | aradotso/trending-skills |
vinext — Next.js API on Vite, Deploy Anywhere Skill by ara.so — Daily 2026 Skills collection. vinext is a Vite plugin that reimplements the Next.js public API surface (routing, SSR, RSC, next/* imports, CLI) so existing Next.js apps run on Vite instead of the Next.js compiler. It targets ~94% API coverage, supports both Pages Router and App Router, and deploys natively to Cloudflare Workers with optional Nitro support for AWS, Netlify, Vercel, and more. Installation New project (migrate from Nex...
|
1.3K |
| 8376 | ui-ux-pro-max | likaia/nginxpulse |
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
|
1.3K |
| 8377 | create-branch | ruchernchong/claude-kit |
Create Branch Create a git branch following Sentry naming conventions. Keep this workflow non-interactive unless the user explicitly asks to choose the name manually. Workflow Resolve the prefix: First try gh api user --jq .login Then git config github.user Then the local part of git config user.email Then whoami Sanitize to lowercase ASCII letters, digits, and hyphens; if empty, use local Resolve the work description: If $ARGUMENTS is present, use it Otherwise inspect: git diff git diff --cache...
|
1.3K |
| 8378 | nelson | harrymunro/nelson |
Nelson Execute this workflow for the user's mission. 1. Issue Sailing Orders Review the user's brief for ambiguity. If the outcome, scope, or constraints are unclear, ask the user to clarify before drafting sailing orders. Write one sentence for outcome , metric , and deadline . Set constraints: token budget, reliability floor, compliance rules, and forbidden actions. Define what is out of scope. Define stop criteria and required handoff artifacts. You MUST read references/admiralty-templates/sa...
|
1.3K |
| 8379 | mirofish-offline-simulation | aradotso/trending-skills |
MiroFish-Offline Skill Skill by ara.so — Daily 2026 Skills collection. MiroFish-Offline is a fully local multi-agent swarm intelligence engine. Feed it any document (press release, policy draft, financial report) and it generates hundreds of AI agents with unique personalities that simulate public reaction on social media — posts, arguments, opinion shifts — hour by hour. No cloud APIs required: Neo4j CE 5.15 handles graph memory, Ollama serves the LLMs. Architecture Overview Document Input │ ▼ ...
|
1.3K |
| 8380 | nanochat-llm-training | aradotso/trending-skills |
nanochat LLM Training Skill by ara.so — Daily 2026 Skills collection. nanochat is Karpathy's minimal, hackable harness for training LLMs end-to-end on a single GPU node. It covers tokenization, pretraining, SFT finetuning, RL, evaluation (DCLM CORE score), inference with KV cache, and a ChatGPT-like web UI. A single complexity dial ( --depth ) auto-configures all other hyperparameters (width, heads, LR, training horizon, weight decay) for compute-optimal training. You can reproduce GPT-2 capabil...
|
1.3K |
| 8381 | corridorkey-green-screen | aradotso/trending-skills |
CorridorKey Green Screen Keying Skill by ara.so — Daily 2026 Skills collection. CorridorKey is a neural network that solves the color unmixing problem in green screen footage. For every pixel — including semi-transparent ones from motion blur, hair, or out-of-focus edges — it predicts the true straight (un-premultiplied) foreground color and a clean linear alpha channel. It reads/writes 16-bit and 32-bit EXR files for VFX pipeline integration. How It Works Two inputs required per frame: RGB gree...
|
1.3K |
| 8382 | openviking-context-database | aradotso/trending-skills |
OpenViking Context Database Skill by ara.so — Daily 2026 Skills collection. OpenViking is an open-source context database for AI Agents that replaces fragmented vector stores with a unified filesystem paradigm . It manages agent memory, resources, and skills in a tiered L0/L1/L2 structure, enabling hierarchical context delivery, observable retrieval trajectories, and self-evolving session memory. Installation Python Package pip install openviking --upgrade --force-reinstall Optional Rust CLI In...
|
1.3K |
| 8383 | git-city-3d-github-visualization | aradotso/trending-skills |
Git City — 3D GitHub Profile Visualization Skill by ara.so — Daily 2026 Skills collection. Git City transforms GitHub profiles into a 3D pixel art city. Each user becomes a unique building: height from contributions, width from repos, window brightness from stars. Built with Next.js 16 (App Router), React Three Fiber, and Supabase. Quick Setup git clone https://github.com/srizzon/git-city.git cd git-city npm install Copy env template cp .env.example .env.local Linux/macOS copy .env.example .en...
|
1.3K |
| 8384 | day6-prd-submit | ai-native-camp/camp-1 |
Day 6: PRD 작성 & PR 제출 PRD(Product Requirements Document) 초안을 템플릿 기반으로 작성하고, 필수 형식을 검증한 뒤, GitHub PR 제출 과정을 안내한다. 용어 정리 이 스킬에서 사용하는 핵심 용어: 용어 설명 PRD Product Requirements Document. "이 프로젝트가 뭘 해결하고, 뭘 만드는지" 정리한 문서 GitHub 코드와 문서를 함께 관리하고 공유하는 온라인 서비스. Google Docs의 코드 버전 GitHub ID GitHub 사이트에서 나를 식별하는 이름. 프로필 URL의 마지막 부분 (github.com/여기) Repository (Repo) 프로젝트 파일이 모여있는 폴더. Google Drive의 공유 폴더와 비슷 브랜치(Branch) 원본을 건드리지 않고 내 작업 공간을 따로 만드는 것. "사본으로 저장"과 비슷 커밋(Commit) 변경사항을 저장하는 것. Ctrl+S의 Git 버전 Push 내 컴퓨...
|
1.3K |
| 8385 | box | membranedev/application-skills |
Box Box is a cloud-based content management and file sharing service. It's used by businesses of all sizes to securely store, access, and collaborate on files from anywhere. Think of it as a more business-focused alternative to Dropbox or Google Drive. Official docs: https://developer.box.com/ Box Overview File File Version Folder Folder Collaboration Web Link Task User Group Event Search Use action names and parameters as needed. Working with Box This skill uses the Membrane CLI to interact wit...
|
1.3K |
| 8386 | karpathy-jobs-bls-visualizer | aradotso/trending-skills |
karpathy/jobs — BLS Job Market Visualizer Skill by ara.so — Daily 2026 Skills collection. A research tool for visually exploring Bureau of Labor Statistics Occupational Outlook Handbook data across 342 occupations. The interactive treemap colors rectangles by employment size (area) and any chosen metric (color): BLS growth outlook, median pay, education requirements, or LLM-scored AI exposure. The pipeline is fully forkable — write a new prompt, re-run scoring, get a new color layer. Live demo: ...
|
1.3K |
| 8387 | json-render-generative-ui | aradotso/trending-skills |
json-render Generative UI Framework Skill by ara.so — Daily 2026 Skills collection. json-render is a Generative UI framework that lets AI generate dynamic interfaces from natural language prompts, constrained to a predefined component catalog. AI outputs JSON; json-render renders it safely and predictably across any platform. Installation React (core) npm install @json-render/core @json-render/react React + shadcn/ui (36 pre-built components) npm install @json-render/shadcn React Native npm i...
|
1.3K |
| 8388 | clui-cc-claude-overlay | aradotso/trending-skills |
Clui CC — Claude Code Desktop Overlay Skill by ara.so — Daily 2026 Skills collection. Clui CC wraps the Claude Code CLI in a transparent, floating macOS overlay with multi-tab sessions, a permission approval UI (PreToolUse HTTP hooks), voice input via Whisper, conversation history, and a skills marketplace. It requires an authenticated claude CLI and runs entirely local — no telemetry or cloud dependency. Prerequisites Requirement Minimum Notes macOS 13+ Overlay is macOS-only Node.js 18+ LTS 20 ...
|
1.3K |
| 8389 | news-summary | sundial-org/awesome-openclaw-skills |
News Summary Overview Fetch and summarize news from trusted international sources via RSS feeds. RSS Feeds BBC (Primary) World news curl -s "https://feeds.bbci.co.uk/news/world/rss.xml" Top stories curl -s "https://feeds.bbci.co.uk/news/rss.xml" Business curl -s "https://feeds.bbci.co.uk/news/business/rss.xml" Technology curl -s "https://feeds.bbci.co.uk/news/technology/rss.xml" Reuters World news curl -s "https://www.reutersagency.com/feed/?best-regions=world&post_type=best" NPR (US perspe...
|
1.3K |
| 8390 | asc-whats-new-writer | rudrankriyam/app-store-connect-cli-skills |
asc What's New Writer Generate engaging, localized release notes from flexible input. Optionally pair with promotional text updates. Preconditions Metadata pulled locally into canonical files via asc metadata pull --app "APP_ID" --version "1.2.3" --dir "./metadata" . OR: user provides keywords manually. Auth configured for upload ( asc auth login or ASC_* env vars). The primary locale is en-US unless the user specifies otherwise. Before You Start Read references/release_notes_guidelines.md for t...
|
1.3K |
| 8391 | toon-format | aradotso/trending-skills |
Token-Oriented Object Notation (TOON) Skill by ara.so — Daily 2026 Skills collection. TOON is a compact, human-readable encoding of the JSON data model that minimizes tokens for LLM input. It combines YAML-style indentation for nested objects with CSV-style tabular layout for uniform arrays, achieving ~40% token reduction while maintaining or improving LLM comprehension accuracy. Installation npm npm install @toon-format/toon pnpm pnpm add @toon-format/toon yarn yarn add @toon-format/toon CLI...
|
1.3K |
| 8392 | autoresearch-genealogy | aradotso/trending-skills |
autoresearch-genealogy Skill by ara.so — Daily 2026 Skills collection. A structured system of autoresearch prompts, Obsidian vault templates, archive guides, and methodology references for AI-assisted genealogy research. Built for Claude Code's autonomous research loops, adaptable to any AI tool or manual workflow. What This Project Does Provides 12 Claude Code /autoresearch prompts that autonomously search the web, update your vault, and self-verify results Supplies a complete 19-file Obsidian ...
|
1.3K |
| 8393 | cuopt-numerical-optimization-api-cli | nvidia/skills |
cuOpt Numerical Optimization — CLI Solve LP, MILP, and QP problems from MPS files via cuopt_cli . The same command, options, and MPS workflow apply across all three; QP uses the standard MPS quadratic-objective extension. Confirm problem type and formulation (variables, objective, constraints, variable types) before coding. This skill is CLI only (MPS input). Basic usage Solve LP or MILP from MPS file cuopt_cli problem.mps With options cuopt_cli problem.mps --time-limit 120 --mip-relative-tole...
|
1.3K |
| 8394 | cuopt-numerical-optimization-api-c | nvidia/skills |
cuOpt Numerical Optimization — C API Solve LP, MILP, and QP problems via the cuOpt C API. The same library, headers, build pattern, and core calls ( cuOptCreate*Problem , cuOptSolve , cuOptGetObjectiveValue ) apply across all three; QP extends the API with quadratic-objective creation calls. Confirm problem type and formulation (variables, objective, constraints, variable types) before coding. This skill is C only . API Call Sequence For LP/MILP, the ordered C entry points are: cuOptCreateRanged...
|
1.3K |
| 8395 | cuopt-server-common | nvidia/skills |
cuOpt Server (common) Domain concepts for the cuOpt REST server. No deploy commands or client code here. What the server does Accepts optimization requests (routing, LP, MILP) over HTTP. Returns a request ID; solution is obtained by polling with that ID. Does not support QP via REST. Problem types supported Problem type Supported Routing ✓ LP ✓ MILP ✓ QP ✗ Show more Installs 507 Repository nvidia/skills GitHub Stars 1.3K First Seen May 15, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pas...
|
1.3K |
| 8396 | cuopt-skill-evolution | nvidia/skills |
Skill Evolution Skills improve through a single workflow: solve the user's problem, notice when a generalizable learning surfaced, score it if you can, then propose an update. The presence or absence of ground truth changes the confidence attached to a proposal, not the steps you take. Trigger conditions You MUST evaluate whether to enter the skill evolution workflow when ANY of these events occur during a conversation: User correction — The user corrects your output (e.g., "the answer should be...
|
1.3K |
| 8397 | modly-image-to-3d | aradotso/trending-skills |
Modly Image-to-3D Skill Skill by ara.so — Daily 2026 Skills collection. Modly is a local, open-source desktop application (Windows/Linux) that converts photos into 3D mesh models using AI models running entirely on your GPU — no cloud, no API keys required. Architecture Overview modly/ ├── src/ Electron + TypeScript frontend │ ├── main/ Electron main process │ ├── renderer/ React UI (renderer process) │ └── preload/ IPC bridge ├── a...
|
1.3K |
| 8398 | deployments-cicd | vercel-labs/vercel-plugin |
Vercel Deployments & CI/CD You are an expert in Vercel deployment workflows — vercel deploy , vercel promote , vercel rollback , vercel inspect , vercel build , and CI/CD pipeline integration with GitHub Actions, GitLab CI, and Bitbucket Pipelines. Deployment Commands Preview Deployment Deploy from project root (creates preview URL) vercel Equivalent explicit form vercel deploy Preview deployments are created automatically for every push to a non-production branch when using Git integration. T...
|
1.3K |
| 8399 | vercel-agent | vercel-labs/vercel-plugin |
Vercel Agent You are an expert in Vercel Agent — AI-powered development tools built into the Vercel platform. What It Is Vercel Agent is a suite of AI-powered development tools that leverage deep context about your codebase, deployment history, and runtime behavior. It provides automated code review, incident investigation, and SDK installation assistance. Capabilities Code Review Automatic PR analysis triggered on push or via @vercel mention in PR comments Multi-step reasoning: identifies secur...
|
1.3K |
| 8400 | turbopack | vercel-labs/vercel-plugin |
Turbopack You are an expert in Turbopack — the Rust-powered JavaScript/TypeScript bundler built by Vercel. It is the default bundler in Next.js 16. Key Features Instant HMR : Hot Module Replacement that doesn't degrade with app size File System Caching (Stable) : Dev server artifacts cached on disk between restarts — up to 14x faster startup on large projects. Enabled by default in Next.js 16.1+, no config needed. Build caching planned next. Multi-environment builds : Browser, Server, Edge, SSR,...
|
1.3K |