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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,436
总 Skills
89.7M
总安装量
2,579
贡献者
# Skill 仓库 描述 安装量
4151 memory-leak-audit microsoft/vscode
Memory Leak Audit The 1 bug category in VS Code. This skill encodes the patterns that prevent and fix leaks. When to Use Reviewing code that registers event listeners or DOM handlers Fixing reported memory leaks (listener counts growing over time) Creating objects in methods that are called repeatedly Working with model lifecycle events (onWillDispose, onDidClose) Adding event subscriptions in constructors or setup methods Audit Checklist Work through each check in order. A single missed pattern...
1.4K
4152 sf-lwc jaganpro/sf-skills
Expert frontend engineer specializing in Lightning Web Components for Salesforce. Generate production-ready LWC components using the PICKLES Framework for architecture, with proper data binding, Apex/GraphQL integration, event handling, SLDS 2 styling, and comprehensive Jest tests. Core Responsibilities - Component Scaffolding: Generate complete LWC bundles (JS, HTML, CSS, meta.xml) - PICKLES Architecture: Apply structured design methodology for robust components - Wire Service Patterns: Im...
1.4K
4153 cross-functional-collaboration refoundai/lenny-skills
Cross-functional Collaboration Help the user work effectively across functions using frameworks from 57 product leaders who have built high-performing cross-functional teams at companies from Linear to Airbnb. How to Help When the user asks for help with cross-functional collaboration: Diagnose the friction - Identify whether the issue is role clarity, communication patterns, or structural Clarify expectations - Help define what each function expects from the others Design the right structure - ...
1.4K
4154 harmonyos-device-automation web-infra-dev/midscene-skills
HarmonyOS Device Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time ...
1.4K
4155 pixijs-scene-container pixijs/pixijs-skills
Container is the general-purpose node of the PixiJS v8 scene graph. It holds children and applies transforms, alpha, tint, and blend mode to its whole subtree. Every display object you make will either be a Container you're building a branch on, or a leaf ( Sprite , Graphics , Text , Mesh ) that you nest inside one. Assumes familiarity with pixijs-scene-core-concepts . Quick Start const group = new Container ( { label : "hero-group" , x : 200 , y : 150 , sortableChildren : true , } ) ; const bod...
1.4K
4156 evaluating-candidates refoundai/lenny-skills
Evaluating Candidates Help the user make stronger hiring decisions using battle-tested frameworks from 94 product leaders. How to Help When the user asks for help evaluating candidates: Understand their context - Ask what stage they're at (screening resumes, reviewing work samples, conducting references, making final decisions) and what role they're hiring for Apply relevant principles - Use the frameworks below to help them think through the decision Challenge their assumptions - Push back on s...
1.4K
4157 pixijs-scene-core-concepts pixijs/pixijs-skills
This skill is the shared mental model referenced by all pixijs-scene-* leaves. It explains what the scene graph is in PixiJS v8, how a Container differs from a leaf, and where each concept lives. It does not go deep on any single API; it frames the pieces and points to the skill or reference file that does. Quick Start const world = new Container ( { isRenderGroup : true } ) ; app . stage . addChild ( world ) ; const hero = new Container ( { label : "hero" } ) ; hero . addChild ( new Sprite ( bo...
1.4K
4158 pixijs-assets pixijs/pixijs-skills
The Assets API is PixiJS's asset loader, resolver, and cache in one singleton. Use it to load textures, video, spritesheets, fonts, JSON, and other resources with format detection, resolution switching, bundle grouping, progress tracking, and GPU cleanup. Quick Start await Assets . init ( { basePath : "/static/" } ) ; const texture = await Assets . load ( "bunny.png" ) ; const sprite = new Sprite ( texture ) ; app . stage . addChild ( sprite ) ; const [ hero , enemy ] = await Assets . load ( [ "...
1.4K
4159 pixijs-performance pixijs/pixijs-skills
Profile before optimizing. PixiJS handles a lot of content well out of the box; browser DevTools Performance + GPU profiling should be your first move. Once you've found the bottleneck, apply the targeted pattern below (destroy, pool, batch, cache, or cull). Quick Start container . cacheAsTexture ( true ) ; container . updateCacheTexture ( ) ; container . cacheAsTexture ( false ) ; container . destroy ( { children : true } ) ; import { CullerPlugin , extensions } from "pixi.js" ; extensions . ad...
1.4K
4160 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
4161 building-sales-team refoundai/lenny-skills
Building Sales Team Help the user build and scale a high-performing sales organization using frameworks from 14 product leaders who have built sales teams from zero to scale. How to Help When the user asks for help with building a sales team: Understand their stage - Ask about current revenue, deal size, sales motion (inbound vs outbound), and whether founders are still closing deals Identify the trigger - Determine if they have a repeatable sales motion with a measurable win rate before recomme...
1.4K
4162 managing-timelines refoundai/lenny-skills
Managing Timelines Help the user set and hit realistic project timelines using approaches from 13 product leaders. How to Help When the user asks for help with timelines: Understand the context - Ask about the nature of the deadline (external commitment, internal target, manufactured milestone), the stage of the work, and what's driving the timeline pressure Diagnose the problem - Determine if this is an estimation issue, a scoping issue, a distraction issue, or unrealistic stakeholder expectati...
1.4K
4163 bash-linux sickn33/antigravity-awesome-skills
Bash Linux Patterns Essential patterns for Bash on Linux/macOS. 1. Operator Syntax Chaining Commands Operator Meaning Example ; Run sequentially cmd1; cmd2 && Run if previous succeeded npm install && npm run dev || Run if previous failed npm test || echo "Tests failed" | Pipe output ls | grep ".js" 2. File Operations Essential Commands Task Command List all ls -la Find files find . -name "*.js" -type f File content cat file.txt First N lines head -n 20 file.txt Last N lines tail -n 20 file.txt...
1.4K
4164 working-backwards refoundai/lenny-skills
Working Backwards Help the user apply the working backwards methodology using frameworks and insights from 12 product leaders. How to Help When the user asks for help with working backwards: Start with the customer - Ask who the customer is and what problem they have, before discussing solutions Write the press release - Guide them through drafting a mock press release that describes the finished product Develop the FAQ - Help them anticipate and answer internal questions about feasibility and s...
1.4K
4165 flags-sdk vercel/flags
Flags SDK The Flags SDK ( flags npm package) is a feature flags toolkit for Next.js and SvelteKit. It turns each feature flag into a callable function, works with any flag provider via adapters, and keeps pages static using the precompute pattern. Docs: https://flags-sdk.dev Repo: https://github.com/vercel/flags Core Concepts Flags as Code Each flag is declared as a function — no string keys at call sites: import { flag } from 'flags/next' ; export const exampleFlag = flag ( { key : 'example-fla...
1.4K
4166 customer-journey-map deanpeters/product-manager-skills
Purpose Create a comprehensive customer journey map that visualizes how customers interact with your brand across all stages—from awareness to loyalty—documenting their actions, touchpoints, emotions, KPIs, business goals, and teams involved at each stage. Use this to identify pain points, align cross-functional teams, and systematically improve the customer experience to achieve business objectives. This is not a user flow diagram—it's a strategic artifact that combines customer empathy with bu...
1.4K
4167 observing-agentforce forcedotcom/afv-library
Agentforce Observability Improve Agentforce agents using session trace data and live preview testing. Three-phase workflow: Observe -- Query STDM sessions from Data Cloud (if available), OR run test suites + preview with local traces as fallback Reproduce -- Use sf agent preview to simulate problematic conversations live Improve -- Edit the .agent file directly, validate, publish, verify Platform Notes Shell examples below use bash syntax. On Windows, use PowerShell equivalents or Git Bash. Repl...
1.4K
4168 trigger-cost-savings triggerdotdev/skills
Trigger.dev Cost Savings Analysis Analyze task runs and configurations to find cost reduction opportunities. Prerequisites: MCP Tools This skill requires the Trigger.dev MCP server to analyze live run data. Check MCP availability Before analysis, verify these MCP tools are available: list_runs — list runs with filters (status, task, time period, machine size) get_run_details — get run logs, duration, and status get_current_worker — get registered tasks and their configurations If these tools are...
1.4K
4169 add-uint-support pytorch/pytorch
Add Unsigned Integer (uint) Support to Operators This skill helps add support for unsigned integer types (uint16, uint32, uint64) to PyTorch operators by updating their AT_DISPATCH macros. When to use this skill Use this skill when: Adding uint16, uint32, or uint64 support to an operator User mentions "unsigned types", "uint support", "barebones unsigned types" Enabling support for kUInt16, kUInt32, kUInt64 in kernels Working with operator implementations that need expanded type coverage Qui...
1.4K
4170 pixijs-math pixijs/pixijs-skills
PixiJS exposes lightweight math primitives (Point, Matrix, shape classes) used throughout the library for transforms, hit testing, and coordinate conversion. Import pixi.js/math-extras to add vector operations (add, dot, magnitude, reflect) and Rectangle intersection/union helpers. Quick Start const parent = new Container ( ) ; parent . position . set ( 100 , 100 ) ; parent . scale . set ( 2 ) ; app . stage . addChild ( parent ) ; const child = new Container ( ) ; child . position . set ( 50 , 5...
1.4K
4171 pixijs-scene-sprite pixijs/pixijs-skills
PixiJS has three sprite classes for different drawing tasks. Sprite is the default image-drawing leaf; NineSliceSprite is a resizable UI-panel variant that preserves corner art; TilingSprite repeats a texture across an area. The AnimatedSprite subclass of Sprite cycles through texture frames for frame-based animation. Assumes familiarity with pixijs-scene-core-concepts . All sprite classes are leaf nodes; they cannot have children. Wrap multiple sprites in a Container to group them. Quick Start ...
1.4K
4172 gtm-enterprise-onboarding github/awesome-copilot
Enterprise Onboarding Four-phase framework for onboarding enterprise customers from contract to value realization. The goal isn't just go-live — it's sustained adoption that doesn't cliff at Week 12. When to Use Triggers: "How do we onboard this enterprise customer?" "Customer went live but adoption is weak" "We keep losing customers 3 months after go-live" "POC to production transition" "How do I prevent Week 4 ghosting?" "Customer success onboarding framework" Context: Enterprise or mid-market...
1.4K
4173 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
4174 post-mortems-retrospectives refoundai/lenny-skills
Post-mortems & Retrospectives Help the user run effective post-mortems and retrospectives that drive genuine learning using frameworks from 11 product leaders. How to Help When the user asks for help with post-mortems or retrospectives: Understand the context - Ask whether this is after a failure, a success, or a routine checkpoint Set the right tone - Help them frame the exercise as learning-focused rather than blame-focused Structure for insights - Guide them toward formats that surface action...
1.4K
4175 organizational-design refoundai/lenny-skills
Organizational Design Help the user design effective organizational structures using frameworks from 2 product leaders. How to Help When the user asks for help with organizational design: Understand their context - Ask about their current structure, company stage, what problem they're trying to solve, and what trade-offs they're willing to make Identify the core trade-off - Help them see the spectrum between centralized (Apple-style) and decentralized (Amazon-style) models Evaluate options - Wal...
1.4K
4176 scoping-cutting refoundai/lenny-skills
Scoping & Cutting Help the user scope projects and cut features effectively using frameworks from 15 product leaders. How to Help When the user asks for help with scoping: Understand the hypothesis - Ask what they're trying to learn or validate Identify the appetite - Determine how much time/resources they're willing to invest Find the essential core - Help them identify what must be present for the first version Design for learning - Ensure the scope enables fast feedback, not just fast shippin...
1.4K
4177 branding kostja94/marketing-skills
Strategies: Branding Guides brand strategy: purpose, values, positioning, storytelling, voice, and visual identity. Companies with consistent branding see 23–33% revenue lift; people remember stories ~22× more than facts alone. Use this skill when defining a new brand, auditing consistency, or aligning messaging across touchpoints. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or wh...
1.4K
4178 writing-job-descriptions refoundai/lenny-skills
Writing Job Descriptions Help the user write effective job descriptions using frameworks and insights from 6 product leaders. How to Help When the user asks for help with job descriptions: Define success first - Ask what success looks like 12 months after the hire, not what tasks they'll do Identify the spike - Determine the one or two areas where this person needs to excel (not everything) Write for progress - Frame the role around the progress to be made, not a list of arbitrary tasks Consider...
1.4K
4179 testing-agentforce forcedotcom/afv-library
ADLC Test Automated testing for Agentforce agents with smoke tests, batch execution, and iterative fix loops. Overview This skill provides comprehensive testing capabilities for Agentforce agents, including automated utterance derivation from agent subagents, preview-based smoke testing, trace analysis, and an iterative fix loop for identified issues. It bridges the gap between initial development and production deployment. Platform Notes Shell examples below use bash syntax. On Windows, use Pow...
1.4K
4180 switching-org forcedotcom/afv-library
Steps Identify the org: the user provides a username or alias ( orgIdentifier ). If not provided, run sf org list to show authenticated orgs and ask the user which one to use. Set the default org: Local (default): sf config set target-org <orgIdentifier> Applies only within the current project directory. Use this for normal project work. Global (only if user explicitly requests): sf config set target-org <orgIdentifier> --global Applies system-wide across all directories. Use when working outsid...
1.4K
4181 building-ui-bundle-app forcedotcom/afv-library
Building a UI Bundle App Overview Build a complete, deployable Salesforce React UI bundle application from a natural language description by orchestrating specialized UI bundle skills in correct dependency order. Each skill MUST be explicitly loaded before executing its phase. When to Use This Skill Use when: User requests a "React app", "UI bundle", "web app", or "full-stack app" on Salesforce User says "build an app", "create an application" and the context implies a non-LWC based frontend (e....
1.4K
4182 building-ui-bundle-frontend forcedotcom/afv-library
UI Bundle UI Identify the Task Determine which category the request falls into: Category Examples Implementation Guide Page New routed page (contacts, dashboard, settings) implementation/page.md Header / Footer Site-wide nav bar, footer, branding implementation/header-footer.md Component Widget, card, table, form, dialog implementation/component.md Layout and Navigation appLayout.tsx is the source of truth for navigation and layout. Every page shares this shell. When making any change that affec...
1.4K
4183 generating-ui-bundle-metadata forcedotcom/afv-library
UI Bundle Metadata Scaffolding a New UI Bundle Use sf template generate ui-bundle to create new apps — not create-react-app, Vite, or other generic scaffolds. Always pass --template reactbasic to scaffold a React-based bundle. UI bundle name ( -n ): Alphanumerical only — no spaces, hyphens, underscores, or special characters. Example: sf template generate ui-bundle -n CoffeeBoutique --template reactbasic After generation: Replace all default boilerplate — "React App", "Vite + React", default <ti...
1.4K
4184 generating-ui-bundle-features forcedotcom/afv-library
UI Bundle Features Installing Pre-built Features Always check for an existing feature before building something from scratch. The features CLI installs pre-built, tested packages into Salesforce UI bundles — from foundational UI libraries (shadcn/ui) to full-stack capabilities (authentication, search, navigation, GraphQL, Agentforce AI). Workflow Search project code first — check src/ for existing implementations before installing anything. Scope searches to src/ to avoid matching node_modules/ ...
1.4K
4185 deploying-ui-bundle forcedotcom/afv-library
Deploying a UI Bundle The order of operations is critical when deploying to a Salesforce org. This sequence reflects the canonical flow. Step 1: Org Authentication Check if the org is connected. If not, authenticate. All subsequent steps require an authenticated org. Step 2: Pre-deploy UI Bundle Build Install dependencies and build the UI bundle to produce dist/ . Required before deploying UI bundle entities. Run when: deploying UI bundles and dist/ is missing or source has changed. Step 3: Depl...
1.4K
4186 using-ui-bundle-salesforce-data forcedotcom/afv-library
Salesforce Data Access Data SDK Requirement All Salesforce data access MUST use the Data SDK ( @salesforce/sdk-data ). The SDK handles authentication, CSRF, and base URL resolution. import { createDataSDK , gql } from "@salesforce/sdk-data" ; import type { ResponseTypeQuery } from "../graphql-operations-types" ; const sdk = await createDataSDK ( ) ; // GraphQL for record queries/mutations (PREFERRED) const response = await sdk . graphql ?. < ResponseTypeQuery > ( query , variables ) ; // REST fo...
1.4K
4187 elicit juxt/allium
Elicitation This skill guides you through building Allium specifications by conversation. The goal is to surface ambiguities and produce a specification that captures what the software does without prescribing implementation. The same principles apply to distillation. Whether you are hearing a stakeholder describe a feature or reading code that implements it, the challenge is identical: finding the right level of abstraction. Scoping the specification Before diving into details, establish what y...
1.4K
4188 propagate juxt/allium
Propagation This skill generates tests from Allium specifications. Propagation is how plants reproduce from cuttings of the parent: the spec is the parent, the tests are the offspring. Deterministic tools guarantee completeness (every spec construct maps to a test obligation). You handle the implementation bridge: correlating spec constructs with code, generating tests in the project's conventions. Prerequisites Before propagating tests, you need: An Allium spec — the .allium file describing the...
1.4K
4189 cloudkit dpearson2699/swift-ios-skills
CloudKit Sync data across devices using CloudKit, iCloud key-value storage, and iCloud Drive. Covers container setup, record CRUD, queries, subscriptions, CKSyncEngine, SwiftData integration, conflict resolution, and error handling. Targets iOS 26+ with Swift 6.3; older availability noted where relevant. Contents Container and Database Setup CKRecord CRUD CKQuery CKSubscription CKSyncEngine (iOS 17+) SwiftData + CloudKit NSUbiquitousKeyValueStore iCloud Drive File Sync Account Status and Error H...
1.4K
4190 activitykit dpearson2699/swift-ios-skills
ActivityKit Build real-time, glanceable experiences on the Lock Screen, Dynamic Island, StandBy, CarPlay, and a paired Mac using ActivityKit. Patterns target iOS 26+ with Swift 6.3, backward-compatible to iOS 16.1 unless noted. See references/activitykit-patterns.md for complete code patterns including push payload formats, concurrent activities, state observation, and testing. Contents Workflow ActivityAttributes Definition Activity Lifecycle Lock Screen Presentation Dynamic Island Push-to-Upda...
1.4K
4191 at-dispatch-v2 pytorch/pytorch
AT_DISPATCH to AT_DISPATCH_V2 Converter This skill helps convert PyTorch's legacy AT_DISPATCH macros to the new AT_DISPATCH_V2 format, as defined in aten/src/ATen/Dispatch_v2.h. When to use this skill Use this skill when: Converting AT_DISPATCH_* macros to AT_DISPATCH_V2 Porting ATen kernels to use the new dispatch API Working with files in aten/src/ATen/native/ that use dispatch macros User mentions "AT_DISPATCH", "dispatch v2", "Dispatch_v2.h", or macro conversion Quick reference Old form...
1.4K
4192 rhwp-edit nomadamas/k-skill
rhwp-edit What this skill does k-skill-rhwp CLI로 .hwp 문서의 본문 텍스트 , 표 구조 , 셀 내용 을 round-trip 안전하게 수정한다. CLI는 @rhwp/core (Rust + WebAssembly) 위에 얇은 Node 래퍼를 씌워 insertText , deleteText , replaceAll , createTable , setCellText 같은 편집 동작을 서브커맨드로 노출한다. 결과는 항상 새 파일로 저장한다. 이 스킬은 편집 전용 이다. 문서를 Markdown/JSON으로 변환하거나 필드만 추출하려면 hwp 스킬을 사용한다. 페이지 렌더링 디버깅이나 IR 비교가 필요하면 rhwp-advanced 스킬을 사용한다. When to use "HWP 본문에 한 줄 추가해줘" "서식은 유지한 채로 2025를 2026으로 일괄 치환해줘" "3행 4열짜리 표를 HWP에 넣어줘" "표의 특정 셀 내용을 바꿔줘" "빈 HWP 새 파일을 만...
1.4K
4193 youtube-seo kostja94/marketing-skills
Platforms: YouTube SEO Guides YouTube video and channel optimization for search and discovery. Title, description, and thumbnail form an interconnected system; channels using systematic keyword strategies see 156% longer view durations, 89% better CTR, and 312% higher search discovery. Use this skill when optimizing videos for YouTube search and recommendations. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main ...
1.4K
4194 pixijs-events pixijs/pixijs-skills
PixiJS's federated event system mirrors DOM events on the scene graph. Set container.eventMode = 'static' to opt an object in, then listen with .on() , addEventListener() , or onEventName property handlers. Move events fire only over the listening object; use globalpointermove for drag. Quick Start const button = new Sprite ( await Assets . load ( "button.png" ) ) ; button . eventMode = "static" ; button . cursor = "pointer" ; app . stage . addChild ( button ) ; button . on ( "pointertap" , ( ev...
1.4K
4195 douyin-viral-content vickyhan924/self-media-script
抖音爆款文案生成器 核心理念 用户只需说:"生成新文案",提供书籍摘录或金句内容。 所有分析、优化、打分、预估全部自动完成,直到输出5星级爆款文案。 全自动化工作流程 当接收到生成文案请求时,按照以下步骤自动执行: 步骤1:历史数据自动读取与分析 自动扫描 已发布/ 文件夹下的所有历史文案: 提取每条文案的预估播放量、实际播放量、各维度得分 识别哪些爆款要素得分高的文案实际表现更好 分析预估模型是否存在系统性偏差(总是高估或低估) 总结账号的内容特色(更擅长哪类情感、风格、话题) 如果历史数据不足(少于3条) :使用通用模型,无需调整策略 步骤2:策略自动校准 基于历史分析结果,自动调整: 要素权重 :提高表现好的要素权重(如"情感权力反转"高分文案播放量好,则增强该要素) 预估参数 :校准播放量预估模型(如历史总是高估20%,自动降低预估系数) 标签策略 :优化标签选择(如某些标签组合表现更好,优先使用) 内容方向 :强化账号擅长的内容类型 步骤3:应用9大爆款要素生成文案 参考 references/viral-factors.md ,确保文案包含关键要素: 情感权力反转 认知重构...
1.4K
4196 energy-management refoundai/lenny-skills
Energy Management Help the user manage their energy for sustained performance using frameworks from 5 product leaders who have optimized their personal productivity and avoided burnout. How to Help When the user asks for help with energy management: Diagnose the current state - Help them identify what's draining vs energizing them Audit their calendar - Review how they're spending time and categorize by energy impact Design for their superpowers - Help them spend more time in their zone of geniu...
1.4K
4197 tutor-setup roundtable02/tutor-skills
Tutor Setup — Knowledge to Obsidian StudyVault CWD Boundary Rule (ALL MODES) NEVER access files outside the current working directory (CWD). All source scanning, reading, and vault output MUST stay within CWD and its subdirectories. If the user provides an external path, ask them to copy the files into CWD first. Mode Detection On invocation, detect mode automatically: Check for project markers in CWD: package.json , pom.xml , build.gradle , Cargo.toml , go.mod , Makefile , *.sln , pyproject.tom...
1.4K
4198 react-hook-form pproenca/dot-skills
React Hook Form Best Practices Comprehensive performance optimization guide for React Hook Form applications. Contains 41 rules across 8 categories, prioritized by impact to guide form development, automated refactoring, and code generation. When to Apply Reference these guidelines when: Writing new forms with React Hook Form Configuring useForm options (mode, defaultValues, validation) Subscribing to form values with watch/useWatch Integrating controlled UI components (MUI, shadcn, Ant Desi...
1.4K
4199 deepseek-ocr aradotso/trending-skills
DeepSeek-OCR Skill by ara.so — Daily 2026 Skills collection. DeepSeek-OCR is a vision-language model for Optical Character Recognition with "Contexts Optical Compression." It supports native and dynamic resolutions, multiple prompt modes (document-to-markdown, free OCR, figure parsing, grounding), and can be run via vLLM (high-throughput) or HuggingFace Transformers. It processes images and PDFs, outputting structured text or markdown. Installation Prerequisites CUDA 11.8+, PyTorch 2.6.0 Python ...
1.4K
4200 project-overview lobehub/lobehub
LobeHub Project Overview Project Description Open-source, modern-design AI Agent Workspace: LobeHub (previously LobeChat). Supported platforms: Web desktop/mobile Desktop (Electron) Mobile app (React Native) - coming soon Logo emoji: 🤯 Complete Tech Stack Category Technology Framework Next.js 16 + React 19 Routing SPA inside Next.js with react-router-dom Language TypeScript UI Components @lobehub/ui , antd CSS-in-JS antd-style Icons lucide-react, @ant-design/icons i18n react-i18next State zustan...
1.4K