███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8801 | compose-side-effects | chrisbanes/skills |
Compose: side effects Core principle Composable bodies describe UI. They can be recomposed, skipped, or abandoned. Work that changes the outside world belongs in an effect API whose lifecycle matches the work. Pick the smallest effect Need API Publish Compose state to non-Compose code after every successful recomposition SideEffect Register/unregister a listener, callback, observer, or resource DisposableEffect(keys...) Run suspending, deferred, or keyed one-shot work LaunchedEffect(keys...) Lau...
|
814 |
| 8802 | casely | johnwayneeee/casely-qa-skill |
Casely — QA Test Case Generator Casely automates the most time-consuming part of a QA engineer's job: writing test cases. It reads requirement documents and learns from your team's existing test case examples to produce structured, style-consistent test suites ready for import into any Test Management System. Why this matters Manual test case writing accounts for ~40% of a QA engineer's time. Requirements come in fragmented formats (PDF, DOCX, XLSX). Every team has its own column structure, nami...
|
814 |
| 8803 | dask | k-dense-ai/scientific-agent-skills |
Dask Overview Dask is a Python library for parallel and distributed computing that enables three critical capabilities: Larger-than-memory execution on single machines for data exceeding available RAM Parallel processing for improved computational speed across multiple cores Distributed computation supporting terabyte-scale datasets across multiple machines Dask scales from laptops (processing ~100 GiB) to clusters (processing ~100 TiB) while maintaining familiar Python APIs. When to Use This Sk...
|
814 |
| 8804 | recursive-decision-ledger | affaan-m/everything-claude-code |
Recursive Decision Ledger Use this skill when the user is trying to force deeper computation through repeated rollouts or "Prime Gauss" style recursive prompting. Preserve the useful part: repeated trials, prior memory, fresh information, and explicit marks. Remove the unsafe part: pretending the loop proves certainty. Ledger Contract Every rollout should record: Show more Installs 492 Repository affaan-m/ecc GitHub Stars 213.1K First Seen May 25, 2026
|
814 |
| 8805 | linting-neostandard-eslint9 | mcollina/skills |
When to use Use this skill when you need to: Set up linting in a JavaScript or TypeScript project Use neostandard as a Standard-like ESLint v9 flat-config baseline Configure eslint@9 with the flat config system ( eslint.config.js / eslint.config.mjs ) Migrate from standard to neostandard or ESLint v9 Migrate from legacy .eslintrc* configuration to ESLint v9 Run linting consistently in CI and local development How to use Read individual rule files for implementation details and examples: rules/ne...
|
814 |
| 8806 | write-guide | vercel/next.js |
Writing Guides Goal Produce a technical guide that teaches a real-world use case through progressive examples. Concepts are introduced only when the reader needs them. Each guide solves one specific problem . Not a category of problems. If the outline has 5+ steps or covers multiple approaches, split it. Structure Every guide follows this arc: introduction, example setup, 2-5 progressive steps, next steps. Each step follows this loop: working code → new requirement → friction → explanation → res...
|
813 |
| 8807 | taste-skill | nexu-io/open-design |
taste-skill Curated from @Leonxlnx. What it does High-agency frontend skill that gives AI good taste with tunable design variance, motion intensity, and visual density to stop generic UI slop. Source Upstream: https://github.com/Leonxlnx/taste-skill Category: design-systems How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install the upstream bundle i...
|
813 |
| 8808 | muapi-workflow | samuraigpt/generative-media-skills |
AI Workflow Builder Chain any combination of muapi.ai generation steps into automated pipelines. The AI architect converts your plain-language description into a runnable node graph. Prerequisites Always ensure the muapi CLI is up-to-date before running any commands. Reinstall from source at the start of every session: pip install --upgrade /path/to/muapi-cli Replace /path/to/muapi-cli with the actual path to the muapi-cli directory in the workspace (the directory containing pyproject.toml ). Co...
|
813 |
| 8809 | do-and-judge | neolabhq/context-engineering-kit |
do-and-judge Task Execute a single task by dispatching an implementation sub-agent, verifying with an independent judge, and iterating with feedback until passing or max retries exceeded. Context This command implements a single-task execution pattern with meta-judge → LLM-as-a-judge verification . You (the orchestrator) dispatch a meta-judge (to generate evaluation criteria) and an implementation agent in parallel , then dispatch a judge with the meta-judge's evaluation specification to verify ...
|
813 |
| 8810 | esp32-firmware-engineer | adamlipecz/esp32-firmware-engineer-skill |
ESP32 Firmware Engineer Act as a senior ESP-IDF firmware engineer focused on correctness, debuggability, and fast iteration. Work Style Start by identifying chip/board, ESP-IDF version, target behavior, reproduction steps, and available logs. State assumptions explicitly when hardware details, pin mappings, or sdkconfig values are missing. Prefer small, reviewable changes that preserve existing project structure and ESP-IDF conventions. Use ESP-IDF APIs and idioms first; avoid custom abstraction...
|
813 |
| 8811 | fix-tests | neolabhq/context-engineering-kit |
Fix Tests User Arguments User can provide to focus on specific tests or modules: $ARGUMENTS If nothing is provided, focus on all tests. Context After business logic changes, refactoring, or dependency updates, tests may fail because they no longer match the current behavior or implementation. This command orchestrates automated fixing of all failing tests using specialized agents. Goal Fix all failing tests to match current business logic and implementation. Show more
|
813 |
| 8812 | why | neolabhq/context-engineering-kit |
Five Whys Analysis Apply Five Whys root cause analysis to investigate issues by iteratively asking "why" to drill from symptoms to root causes. Description Iteratively ask "why" to move from surface symptoms to fundamental causes. Identifies systemic issues rather than quick fixes. Usage /why [issue_description] Variables ISSUE: Problem or symptom to analyze (default: prompt for input) DEPTH: Number of "why" iterations (default: 5, adjust as needed) Steps Show more
|
813 |
| 8813 | excel-cli | sbroenne/mcp-server-excel |
Excel Automation with excelcli Preconditions Windows host with Microsoft Excel installed (2016+) Uses COM interop — does NOT work on macOS or Linux Install: dotnet tool install --global Sbroenne.ExcelMcp.CLI Workflow Checklist Step Command When 1. Session session create/open Always first 2. Sheets worksheet create/rename If needed 3. Write data See below If writing values 4. Save & close session close --save Always last 10+ commands? Use excelcli -q batch --input commands.json — sends all comman...
|
813 |
| 8814 | kafka-development | mindrally/skills |
Kafka Development You are an expert in Apache Kafka event streaming and distributed messaging systems. Follow these best practices when building Kafka-based applications. Core Principles Kafka is a distributed event streaming platform for high-throughput, fault-tolerant messaging Unlike traditional pub/sub, Kafka uses a pull model - consumers pull messages from partitions Design for scalability, durability, and exactly-once semantics where needed Leave NO todos, placeholders, or missing pieces...
|
813 |
| 8815 | auth0-mfa | auth0/agent-skills |
Auth0 MFA Guide Add Multi-Factor Authentication to protect user accounts and require additional verification for sensitive operations. Overview What is MFA? Multi-Factor Authentication (MFA) requires users to provide two or more verification factors to access their accounts. Auth0 supports multiple MFA factors and enables step-up authentication for sensitive operations. When to Use This Skill Adding MFA to protect user accounts Requiring additional verification for sensitive actions (payments, s...
|
813 |
| 8816 | nemoclaw-user-deploy-remote | nvidia/skills |
Deploy NemoClaw to a Remote GPU Instance Gotchas The nemoclaw deploy command is deprecated. On Brev, set CHAT_UI_URL in the launchable environment configuration so it is available when the installer builds the sandbox image. Prerequisites The Brev CLI installed and authenticated. A provider credential for the inference backend you want to use during onboarding. HF_TOKEN or HUGGING_FACE_HUB_TOKEN exported when your remote vLLM or Hugging Face workflow needs access to gated models. NemoClaw instal...
|
812 |
| 8817 | data-fetching | lobehub/lobehub |
LobeHub Data Fetching Architecture
|
812 |
| 8818 | community-forum | kostja94/marketing-skills |
Channels: Community & Forum Promotion Guides forum promotion, community invitation, and vertical community marketing. Community-led growth (CLG) costs ~90% less than paid acquisition with ~3.2x higher customer LTV. Indie Hackers delivers ~23% conversion vs Product Hunt ~3%; HN and Reddit require sustained engagement. For cold start planning (first users, launch channels), see cold-start-strategy . For indie hacker strategy (first 100 users, Build in Public content framework, Indie Hackers tactic...
|
812 |
| 8819 | open-notebook | k-dense-ai/scientific-agent-skills |
Open Notebook Overview Open Notebook is an open-source, self-hosted alternative to Google's NotebookLM that enables researchers to organize materials, generate AI-powered insights, create podcasts, and have context-aware conversations with their documents — all while maintaining complete data privacy. Unlike Google's Notebook LM, which has no publicly available API outside of the Enterprise version, Open Notebook provides a comprehensive REST API, supports 16+ AI providers, and runs entirely on ...
|
812 |
| 8820 | scikit-survival | k-dense-ai/scientific-agent-skills |
scikit-survival: Survival Analysis in Python Overview scikit-survival is a Python library for survival analysis built on top of scikit-learn. It provides specialized tools for time-to-event analysis, handling the unique challenge of censored data where some observations are only partially known. Survival analysis aims to establish connections between covariates and the time of an event, accounting for censored records (particularly right-censored data from studies where participants don't experi...
|
812 |
| 8821 | create-pr-from-spec | giuseppe-trisciuoglio/developer-kit |
Create Pull Request from Specification Create a GitHub Pull Request for a specification using the pull_request_template.md template located at ${workspaceFolder}/.github/pull_request_template.md . Overview This skill automates the creation of GitHub Pull Requests directly from specifications. It follows a structured process: Analyzes the specification template requirements Creates a draft PR with the target branch Verifies no duplicate PRs exist Updates PR body and title with template-compliant ...
|
812 |
| 8822 | product-planner | buildgreatproducts/builder-os |
Product Planner — Vision Intake + Document Generation This skill captures a founder's product vision through a structured intake conversation and then generates three product documents that downstream skills (Launch Checklist, the Build Loop skills) and coding agents consume. Shared Context You are a product development advisor. You are warm, direct, and opinionated. You treat the founder as capable and smart — you're here to help them articulate what's already in their head, not to lecture them...
|
812 |
| 8823 | prediction-market-risk-review | affaan-m/everything-claude-code |
Prediction Market Risk Review Use this skill before a prediction-market workflow touches user financial context, venue authentication, portfolio data, automation, or execution-capable tools. Review Gates Advice Boundary Confirm the output is informational. Remove buy/sell/hold/size recommendations. Keep manual user decision points explicit. Venue And Regulatory Boundary Show more Installs 490 Repository affaan-m/ecc GitHub Stars 213.1K First Seen May 25, 2026
|
812 |
| 8824 | crm-maintenance | anthropics/knowledge-work-plugins |
CRM Maintenance Quick start Pull context from the referenced email or calendar event, resolve the right HubSpot contact and deal, log the activity, and surface what changed. For a deal cleanup, audit the deal against recent email/calendar activity and propose updates — never apply them without approval. User: "log this call to the Acme deal" → Read the most recent completed calendar event → Confirm attendees map to the Acme deal's contacts → Write a call activity on the Acme deal → Report: "Logg...
|
812 |
| 8825 | markit-markdown-converter | aradotso/trending-skills |
markit-markdown-converter Skill by ara.so — Daily 2026 Skills collection. markit converts almost anything to markdown: PDFs, Word docs, PowerPoint, Excel, HTML, EPUB, Jupyter notebooks, RSS feeds, CSV, JSON, YAML, images (with EXIF + AI description), audio (with metadata + AI transcription), ZIP archives, URLs, Wikipedia pages, and source code files. It works as a CLI tool and as a TypeScript/Node.js library, supports pluggable converters, and integrates with OpenAI, Anthropic, and any OpenAI-co...
|
811 |
| 8826 | judge | neolabhq/context-engineering-kit |
Judge Command Your Workflow Phase 1: Context Extraction Show more
|
811 |
| 8827 | tavily-search | framix-team/openclaw-tavily |
tavily search Web search returning LLM-optimized results with content snippets and relevance scores. Before running any command If tvly is not found on PATH, install it first: curl -fsSL https://cli.tavily.com/install.sh | bash && tvly login Do not skip this step or fall back to other tools. See tavily-cli for alternative install methods and auth options. When to use You need to find information on any topic You don't have a specific URL yet First step in the workflow : search → extract → map → ...
|
811 |
| 8828 | huashu-douyin-script | alchaincyf/huashu-skills |
抖音爆款脚本创作 从竞品视频拆解到脚本生成的完整工作流。将「凭感觉模仿爆款」变成「AI系统拆解+结构化复制」。 环境要求 uv (Python包管理器) yt-dlp (抖音视频下载,需 pip install yt-dlp 或 brew install yt-dlp ) GEMINI_API_KEY 环境变量(用于Gemini视频分析,从 https://aistudio.google.com/apikey 获取) Chrome浏览器已登录抖音(用于提取下载Cookie) 路径约定 :下文中 SKILL_DIR 指本SKILL.md所在目录的绝对路径。运行脚本前,先用 dirname 或 Glob 工具确定SKILL.md的实际位置,替换 SKILL_DIR 。 6步工作流 Step 1: 收集输入 向用户收集以下信息: 必填 : 抖音视频链接(1-5个对标/竞品视频) 产品信息(名称、核心卖点、目标人群、价格) 脚本类型:种草视频 or 千川投放素材 选填 : 产品图片(用于脚本中的视觉参考) 目标时长(种草默认30秒,千川默认15秒) 品牌调性要求 投放目标(直播间引流/商品详情...
|
811 |
| 8829 | risk-management-specialist | alirezarezvani/claude-skills |
Risk Management Specialist ISO 14971:2019 risk management implementation throughout the medical device lifecycle. Table of Contents Risk Management Planning Workflow Risk Analysis Workflow Risk Evaluation Workflow Risk Control Workflow Post-Production Risk Management Risk Assessment Templates Decision Frameworks Tools and References Risk Management Planning Workflow Establish risk management process per ISO 14971. Workflow: Create Risk Management Plan Define scope of risk management activities: ...
|
811 |
| 8830 | parallel-web | k-dense-ai/scientific-agent-skills |
Parallel Web Toolkit A unified skill for all web-powered tasks: searching, extracting, enriching, and researching — with academic and scientific sources as the default priority. Routing — pick the right capability Read the user's request and match it to one of the capabilities below. For web search, extract, enrichment, and deep research, read the corresponding reference file for detailed instructions. User wants to... Capability Where Look something up, research a topic, find current info Web S...
|
811 |
| 8831 | amazon-listing-optimization | nexscope-ai/amazon-skills |
Amazon Listing Optimization 📝 Build keyword-optimized listings from scratch, or audit and optimize existing ones. No API key — works out of the box. Installation npx skills add nexscope-ai/Amazon-Skills --skill amazon-listing-optimization -g Two Modes Mode When to Use Input Output A — Create Building a new listing Keywords and/or competitor ASINs + product info + tone Full listing copy + keyword coverage score B — Optimize Improving an existing listing Your ASIN or URL (+ optional keywords or co...
|
811 |
| 8832 | new | railwayapp/railway-skills |
New Project / Service / Database Create Railway projects, services, and databases with proper configuration. When to Use User says "deploy to railway" (add service if linked, init if not) User says "create a railway project", "init", "new project" (explicit new project) User says "link to railway", "connect to railway" User says "create a service", "add a backend", "new api service" User says "create a vite app", "create a react website", "make a python api" User says "deploy from github.com/u...
|
810 |
| 8833 | he4rt-twitter-engagement-tracker | aradotso/marketing-skills |
He4rt Twitter Engagement Tracker Skill by ara.so — Marketing Skills collection. Browser extension that passively captures X/Twitter GraphQL responses to track community engagement. Intercepts native Twitter API calls to extract tweets, likes, replies, and user interactions without hitting rate limits. Exports structured JSON for backend ingestion. What It Does Passive capture : Intercepts GraphQL responses as you browse X/Twitter normally Community tracking : Monitors tweets, replies, likes, and...
|
810 |
| 8834 | skill-creator | anthropics/financial-services-plugins |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
810 |
| 8835 | inngest-flow-control | inngest/inngest-skills |
Inngest Flow Control Master Inngest flow control mechanisms to manage resources, prevent overloading systems, and ensure application reliability. This skill covers all flow control options with prescriptive guidance on when and how to use each. These skills are focused on TypeScript. For Python or Go, refer to the Inngest documentation for language-specific guidance. Core concepts apply across all languages. Quick Decision Guide "Limit how many run at once" → Concurrency "Spread runs over time" ...
|
810 |
| 8836 | codebase-cleanup-refactor-clean | sickn33/antigravity-awesome-skills |
Refactor and Clean Code You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its quality, maintainability, and performance. Use this skill when Cleaning up large codebases with accumulated debt Removing duplication and simplifying modules Preparing a codebase for new feature work Aligning implementation with clean code standards Do not use this skill when Y...
|
810 |
| 8837 | red-team-tactics | sickn33/antigravity-awesome-skills |
Red Team Tactics Adversary simulation principles based on MITRE ATT&CK framework. 1. MITRE ATT&CK Phases Attack Lifecycle RECONNAISSANCE → INITIAL ACCESS → EXECUTION → PERSISTENCE ↓ ↓ ↓ ↓ PRIVILEGE ESC → DEFENSE EVASION → CRED ACCESS → DISCOVERY ↓ ↓ ↓ ↓ LATERAL MOVEMENT → COLLECTION → C2 → EXFILTRATION → IMPACT Phase Objectives Phase Objective Recon Map attack surface Initial Access Get first foothold E...
|
810 |
| 8838 | skill-creator | daymade/claude-code-skills |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
810 |
| 8839 | build-loop-claude-code | buildgreatproducts/builder-os |
Claude Code Build Loop Quality-gated feature work: nothing ships on "it compiles" — every increment is built, reviewed, tested end to end, and fixed before the user hears "done." Source of work A plan file exists (roadmap, refactor plan, or task list with - [ ] checkboxes — search the repo): work the first unchecked task. Tasks are ordered intentionally — never skip ahead. If the plan references spec docs, read only the sections relevant to the current task. No plan (or the request is outside it...
|
810 |
| 8840 | m01-ownership | zhanghandong/rust-skills |
Ownership & Lifetimes Layer 1: Language Mechanics Core Question Who should own this data, and for how long? Before fixing ownership errors, understand the data's role: Is it shared or exclusive? Is it short-lived or long-lived? Is it transformed or just read? Error → Design Question Show more
|
809 |
| 8841 | xyq-skill | pippit-dev/pippit-skills |
No SKILL.md available for this skill. View on GitHub Installs 457 Repository pippit-dev/pippit-skills First Seen 4 days ago
|
809 |
| 8842 | feishu-cli-search | riba2534/feishu-cli |
飞书搜索 搜索飞书云文档、消息和应用。所有搜索命令 必须使用 User Access Token 。 执行流程 每次执行搜索前,按以下流程操作: 1. 检查 Token 状态 feishu-cli auth status -o json 根据返回结果判断: logged_in=false → 需要登录(步骤 2) access_token_valid=true + scope 包含所需权限 → 直接搜索(步骤 3) access_token_valid=false + refresh_token_valid=true → 无需操作,下次搜索时自动刷新 access_token_valid=false + refresh_token_valid=false → 需要重新登录(步骤 2) scope 缺少所需权限 → 需要重新登录并补充 scope(步骤 2) 2. 登录获取 Token(如需要) 使用两步式非交互登录, 始终使用最大 scope 范围 (覆盖搜索 + wiki + 日历 + 任务等全部功能): 步骤 A:生成授权 URL(最大 scope) feishu-cli aut...
|
809 |
| 8843 | voice-ai-development | sickn33/antigravity-awesome-skills |
Voice AI Development Role: Voice AI Architect You are an expert in building real-time voice applications. You think in terms of latency budgets, audio quality, and user experience. You know that voice apps feel magical when fast and broken when slow. You choose the right combination of providers for each use case and optimize relentlessly for perceived responsiveness. Capabilities OpenAI Realtime API Vapi voice agents Deepgram STT/TTS ElevenLabs voice synthesis LiveKit real-time infrastructur...
|
809 |
| 8844 | skybridge | alpic-ai/skybridge |
Creating Apps For LLMs Those are conversational experiences that extend AI assistants through tools and custom UI widgets. They're built as MCP servers invoked during conversations. ⚠️ The app is consumed by two users at once: the human and the AI Assistant LLM . They collaborate through the widget—the human interacts with it, the LLM sees its state. Internalize this before writing code: the widget is your shared surface. SPEC.md keeps track of the app's requirements and design decisions. Keep i...
|
809 |
| 8845 | design-system | jezweb/claude-skills |
Design System Token architecture, component specifications, systematic design, slide generation. When to Use Design token creation Component state definitions CSS variable systems Spacing/typography scales Design-to-code handoff Tailwind theme configuration Slide/presentation generation Token Architecture Load: references/token-architecture.md Three-Layer Structure Show more Installs 4.4K Repository nextlevelbuilde…ax-skill GitHub Stars 101.7K First Seen 12 days ago Security Audits Gen Agent Tru...
|
809 |
| 8846 | affiliate-page-generator | kostja94/marketing-skills |
Pages: Affiliate Program Guides affiliate program page content and structure for conversion and quality affiliate signups. 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 when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, rea...
|
808 |
| 8847 | canonical-tag | kostja94/marketing-skills |
SEO Technical: Canonical Guides canonical tag configuration to consolidate duplicate content and declare preferred URLs. 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 when the user asks to skip, go directly to the main output. Scope (Technical SEO) Duplicate site versions : HTTPS vs HTTP; www vs non-www; trailing slash (/page vs /page/) — choose one, 301 redirect others Duplicate...
|
808 |
| 8848 | ai-ui-patterns | patternsdev/skills |
AI UI Patterns Table of Contents When to Use Instructions Details Source Building AI-powered interfaces – from chatbots to intelligent assistants – requires careful integration of backend AI services with reactive UI components. In this chapter, we explore design patterns in React for such interfaces, focusing on two implementations : a plain React app (using Vite) and a Next.js app. We'll use OpenAI's API (via the Vercel AI SDK) as our AI engine, and TailwindCSS for styling. Key topics include ...
|
808 |
| 8849 | claude-scientific-skills | sickn33/antigravity-awesome-skills |
Claude Scientific Skills Overview Scientific research and analysis skills When to Use This Skill Use this skill when you need to work with scientific research and analysis skills. Instructions This skill provides guidance and patterns for scientific research and analysis skills. For more information, see the source repository .
|
808 |
| 8850 | fpga | mindrally/skills |
FPGA Development You are an expert in FPGA development with Vivado, SystemVerilog, and hardware design optimization. Modular Design & Code Organization Structure designs into small, reusable modules to enhance readability and testability Start with a top-level design module and gradually break it down into sub-modules Use SystemVerilog interface blocks for clear interfaces Maintain consistent naming conventions across modules Synchronous Design Principles Prioritize single clock domains to simpl...
|
808 |