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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,699
总 Skills
169.1M
总安装量
2,751
贡献者
# Skill 仓库 描述 安装量
10451 coordinate-components dotnet/skills
Coordinate Components Step 1 — Read AGENTS.md Read AGENTS.md at the workspace root to learn the project's conventions before making changes. Step 2 — Decide the scope Need Mechanism When to use Subtree (same render mode) CascadingValue component Theme, layout config within a layout App-wide (all render modes) CascadingValueSource<T> via DI Current user, feature flags, theme shared globally Mutable shared state within a circuit Scoped service + Action event Shopping cart, notification count, sele...
1K
10452 email-marketing kostja94/marketing-skills
Email Marketing Comprehensive email marketing skill covering campaign creation, automated sequences, A/B testing, segmentation, and deliverability optimization. Overview This skill covers: Email campaign creation and templates Automated drip sequences A/B testing frameworks List segmentation strategies Deliverability best practices Email Types & Templates 1. Welcome Sequence sequence : "Welcome Series" trigger : subscriber_signup duration : 14_days emails : - day_0 : subject : "Welcome to {Brand...
1K
10453 hugging-science k-dense-ai/scientific-agent-skills
Hugging Science Hugging Science is a curated, LLM-friendly index of scientific datasets, models, blog posts, and interactive demos for ML researchers. Use it when a scientific ML question lands in front of you — it's much higher signal than generic search and the entries are pre-filtered for quality and openness. There are two related surfaces, and you should use both: The catalog at huggingscience.co — a static, parseable index of resources across 17 scientific domains. It exposes llms.txt (com...
1K
10454 compose-animations chrisbanes/skills
Compose: animations Core principle Pick the smallest API that matches the problem : built-in visibility and layout transitions first, then a single animated value, then a shared transition object when several values must move together, then gesture-level or imperative APIs when the framework cannot express the motion. Review procedure Identify the visual job: show/hide, one value, coordinated values, content swap, size change, or gesture-driven motion. Choose the smallest API from the table belo...
1K
10455 collect-user-input dotnet/skills
Collect User Input Step 1 — Read the Project's AGENTS.md Check AGENTS.md for Interactivity Mode and Interactivity Scope . This determines which form patterns apply: Mode Form mechanism None (Static SSR) EditForm with FormName + [SupplyParameterFromForm] . No @bind , no @onchange . Server EditForm with @bind-Value . Full interactivity — real-time validation, dynamic UI. WebAssembly Same as Server, but validators needing server data must call APIs. Auto Same as WebAssembly — code must work in both...
1K
10456 test-analysis-extensions dotnet/skills
Test Analysis Extensions This skill provides access to per-language reference files used by the polyglot test analysis skills. Call this skill to get the list of available extension files, then read the one matching the target codebase's language and test framework. Available Extension Files File Languages / Frameworks Contents extensions/dotnet.md .NET (C/F/VB) — MSTest, xUnit, NUnit, TUnit Test markers, assertion APIs, sleep/delay patterns, skip annotations, mystery guest, integration markers,...
1K
10457 plan-ui-change dotnet/skills
Plan a Blazor UI Change When asked to build a complex UI feature, plan the component decomposition first, then immediately implement it . A single monolithic page component is almost never the right answer — break the UI into focused, composable components. Planning Workflow Step 1 — Map the Visual Regions Read the request and identify every distinct visual region. Each region that has its own data, behavior, or layout responsibility is a candidate component. Draw the component tree: Show more I...
1K
10458 item-management dotnet/skills
MSBuild Item Management Patterns Canonical patterns for working with item groups, from Microsoft.Common.CurrentVersion.targets . Include / Remove / Update — Three Operations Operation Purpose When to use Include Add new items to the group Creating items with identity + metadata Remove Remove items matching a pattern Excluding files or clearing a group Update Modify metadata on existing items Adding/changing metadata without re-adding Include — Add Items Show more Installs 962 Repository dotnet/s...
1K
10459 extension-points dotnet/skills
MSBuild Extension Points How the MSBuild pipeline provides hooks for SDKs, NuGet packages, repos, and users to inject custom logic. CustomBefore / CustomAfter Hooks Every major .targets file defines import hooks: < PropertyGroup > < CustomBeforeMicrosoftCommonTargets Condition = " ' $(CustomBeforeMicrosoftCommonTargets)' == '' " > $(MSBuildExtensionsPath)\v$(MSBuildToolsVersion)\Custom.Before.Microsoft.Common.targets </ CustomBeforeMicrosoftCommonTargets > </ PropertyGroup > Show more Installs 9...
1K
10460 grilling pandoscope/skills
Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer. Ask the questions one at a time, waiting for feedback on each question before continuing. Asking multiple questions at once is bewildering. If a question can be answered by exploring the codebase, explore the codebase instead. Installs 1.7K Repository matt...
1K
10461 initialize-ai-navigation unity-technologies/skills
Determine what the user needs and guide them through navigation setup. See navigation-system.md for expanded component details, API notes, code recipes, and troubleshooting. Passing C to eval eval compiles a statement block, not a file . Two consequences, both of which cause a compile error rather than a warning: No using directives. The compiler reads using UnityEngine; as a resource-disposal statement and rejects it ( CS0210 ). Types must be fully qualified. A bare AssetDatabase or Volume does...
1K
10462 shadcn bergside/awesome-design-skills
shadcn/ui A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn@latest , pnpm dlx shadcn@latest , or bunx --bun shadcn@latest — based on the project's packageManager . Examples below use npx shadcn@latest but substitute the correct runner for the project. Current Project Context !`npx shadcn@latest info --json 2 >/dev/ null || echo ' { "error...
1K
10463 convert-blazor-server-to-webapp dotnet/skills
Convert Blazor Server App to Blazor Web App This skill helps an agent convert a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. The old hosting model uses AddServerSideBlazor / MapBlazorHub with a _Host.cshtml Razor Page as the entry point. The new Blazor Web App model uses AddRazorComponents / MapRazorComponents with an App.razor root component, enabling per-component render modes, enhanced navigation, streaming rendering, and other .NET 8+ features. The converted app uses Interacti...
1K
10464 typescript sentimony/skills
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
1K
10465 thermos cursor/plugins
Thermos Run the two thermo review passes as async background subagents in parallel, then synthesize their results. Workflow Determine the review scope from the user request, PR, current branch, or relevant changed files. Gather the diff and any file/context excerpts needed for reviewers to evaluate the change without guessing. Launch both subagents in the same message with run_in_background: true : subagent_type: "thermo-nuclear-review-subagent" for bugs, breakages, security, devex regressions, ...
1K
10466 using-n8n-skills-official n8n-io/skills
Using n8n Skills The official n8n MCP evolves over time, so tool names, parameters, and default behaviors can drift between versions. When you spot drift (a tool a skill names doesn't exist, a parameter shape doesn't match what get_node_types returns, or behavior differs from what the skill describes), suggest updating the skill and n8n instance to the latest stable. Non-negotiables Three rules with no exceptions. Violating any produces workflows that look right but break in production. Invoke t...
1K
10467 vitest sentimony/skills
Vitest is a next-generation testing framework powered by Vite. It provides a Jest-compatible API with native ESM, TypeScript, and JSX support out of the box. Vitest shares the same config, transformers, resolvers, and plugins with your Vite app. Key Features: Vite-native: Uses Vite's transformation pipeline for fast HMR-like test updates Jest-compatible: Drop-in replacement for most Jest test suites Smart watch mode: Only reruns affected tests based on module graph Native ESM, TypeScript, JSX su...
1K
10468 create-game-assets gamedev-skills/awesome-gamedev-agent-skills
Create Game Assets Turn a game's visual intent into a consistent, engine-ready asset set. Treat image generation as one production tool inside a controlled pipeline, never as proof that an asset is shippable. Core workflow Show more Installs 976 Repository gamedev-skills/…t-skills GitHub Stars 686 First Seen Aug 8, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
1K
10469 ml-paper-writing zechenzhangagi/ai-research-skills
ML Paper Writing for Top AI Conferences Expert-level guidance for writing publication-ready papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, COLM . This skill combines writing philosophy from top researchers (Nanda, Farquhar, Karpathy, Lipton, Steinhardt) with practical tools: LaTeX templates, citation verification APIs, and conference checklists. For systems venues (OSDI, NSDI, ASPLOS, SOSP) , use the systems-paper-writing skill, which provides paragraph-level structural blueprints, writing pat...
999
10470 huashu-md-to-pdf alchaincyf/huashu-skills
Markdown to PDF Skill 将 Markdown 文档转换为专业的苹果设计风格 PDF 白皮书。 核心功能 专业排版 :书籍级排版质量,自动处理分页、孤行寡行 苹果设计 :SF 字体系统、现代简洁风格、专业配色 完整目录 :自动提取章节结构,双列布局,可点击跳转 Markdown 完美支持 :代码块、表格、引用、列表等全部正确渲染 使用方法 基础用法 转换单个文件 python scripts/convert.py input.md 指定输出文件名 python scripts/convert.py input.md -o "我的白皮书.pdf" 自定义标题和作者 python scripts/convert.py input.md --title "技术白皮书" --author "花叔" Markdown 文档要求 你的 Markdown 文档应该遵循以下结构: 文档标题 1. 第一章 1.1 第一节 1.2 第二节 2. 第二章 2.1 第一节 关键规则 : 主章节: 1. 标题 (数字 + 点 + 空格 + 标题) 子章节: 1.1 标题 ...
999
10471 deep-interview devbrother2024/skills
Deep Interview 모호한 요청을 바로 실행하지 말고, 명확한 요구사항으로 정리한다. 핵심은 질문을 많이 하는 것이 아니라, 가장 큰 불확실성 하나를 골라 한 번에 하나씩 푸는 것이다. 소크라테스식으로 묻는다. 답을 대신 정하기보다 사용자의 암묵적 가정, 선택지, 판단 기준이 드러나게 질문한다. 질문 축 아래 순서로 가장 불명확한 축 하나를 고른다: 목표 범위와 제외 범위 제약 완료 기준 기존 맥락과 영향 범위 코드베이스를 보면 답할 수 있는 질문은 사용자에게 묻지 말고 직접 확인한다. Show more Installs 300 Repository devbrother2024/skills GitHub Stars 56 First Seen 6 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
999
10472 go-control-flow cxuu/golang-skills
Go Control Flow Source: Effective Go. Go's control structures are related to C but differ in important ways. Understanding these differences is essential for writing idiomatic Go code. Go has no do or while loop—only a generalized for. There are no parentheses around conditions, and bodies must always be brace-delimited. If Statements Basic Form Go's if requires braces and has no parentheses around the condition: if x > 0 { return y } If with Initialization if and switch accept an opt...
999
10473 threat-model anthropics/defending-code-reference-harness
threat-model A threat model answers "what could go wrong with this system, who would do it, and what should we do about it?" independently of whether any specific bug has been found yet. It is the map; vulnerability discovery is the metal detector. A good threat model tells the pipeline where to look and tells triage which findings matter. Litmus test: If patching one line of code makes an entry disappear, it was a vulnerability, not a threat. A threat ("attacker achieves RCE via untrusted media...
999
10474 title-tag kostja94/marketing-skills
SEO On-Page: Title Tag Guides optimization of the HTML title tag for search engines and SERP display. 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 (On-Page SEO) Title tag : Primary search snippet; primary keyword near start; unique per page Length by Language Google truncates by pixel width (~580–600px desktop), n...
999
10475 xml-sitemap kostja94/marketing-skills
SEO Technical: Sitemap Guides sitemap creation, auditing, and optimization for search engine discovery. 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) Sitemap : Create XML sitemap; submit to Google Search Console URL discovery : Help search engines find pages; especially important for large sites or ...
999
10476 stripe-payments jezweb/claude-skills
Stripe Payments Add Stripe payments to a web app. Covers the common patterns — one-time payments, subscriptions, webhooks, customer portal — with working code. No MCP server needed. Which Stripe API Do I Need? You want to... Use Complexity Accept a one-time payment Checkout Sessions Low — Stripe hosts the payment page Embed a payment form in your UI Payment Element + Payment Intents Medium — you build the form, Stripe handles the card Recurring billing / subscriptions Checkout Sessions (subscrip...
999
10477 echarts sentimony/skills
ECharts Use this skill to build, audit, or fix Apache ECharts charts without turning the task into an option-reference lookup. Match the project's existing setup first; only introduce wrappers or new dependencies when the project has none. Decision Tree User task -> Does the project already use ECharts? - Yes -> Find existing chart components/helpers, reuse their init, theme, and resize patterns. Match import style (full vs echarts/core). - No -> Pick integration by framework: - React -> echarts...
999
10478 avatar-video heygen-com/skills
Avatar Video Create AI avatar videos with full control over avatars, voices, scripts, scenes, and backgrounds. Build single or multi-scene videos with exact configuration using HeyGen's /v2/video/generate API. Authentication All requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable. curl -X GET "https://api.heygen.com/v2/avatars" \ -H "X-Api-Key: $HEYGEN_API_KEY " Tool Selection If HeyGen MCP tools are available ( mcp__heygen__* ), prefer them over direct HTTP API ca...
998
10479 tdd-guide alirezarezvani/claude-skills
TDD Guide - Test Driven Development for Engineering Teams A comprehensive Test Driven Development skill that provides intelligent test generation, coverage analysis, framework integration, and TDD workflow guidance across multiple languages and testing frameworks. Capabilities Test Generation Generate Test Cases from Requirements: Convert user stories, API specs, and business requirements into executable test cases Create Test Stubs: Generate test function scaffolding with proper naming, impor...
998
10480 api-design-principles sickn33/agentic-awesome-skills
API Design Principles Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers and stand the test of time. When to Use This Skill Designing new REST or GraphQL APIs Refactoring existing APIs for better usability Establishing API design standards for your team Reviewing API specifications before implementation Migrating between API paradigms (REST to GraphQL, etc.) Creating developer-friendly API documentation Optimizing APIs for ...
998
10481 k6-cloud-investigate-test grafana/skills
k6 Cloud test investigator Structured 9-step workflow for investigating a Grafana Cloud k6 test or run. This skill is workflow-only . All API calls go through gcx api against the plugin proxy, using v6 for REST and v5 for metrics. For the underlying mechanics (gcx auth, path conventions, endpoint discovery, log queries, script editing, threshold semantics, gotchas), see the k6-manage skill — every step below references it. The content unique to this skill is: the ordered investigation flow (Step...
998
10482 initiating-coverage anthropics/financial-services-plugins
Initiating Coverage Create institutional-quality equity research initiation reports through a structured 5-task workflow. Each task must be executed separately with verified inputs. Overview This skill produces comprehensive first-time coverage reports following institutional standards (JPMorgan, Goldman Sachs, Morgan Stanley format). Tasks are executed individually, each verifying prerequisites before proceeding. Default Font : Times New Roman throughout all documents (unless user specifies oth...
997
10483 ecommerce-growth-strategy nexscope-ai/ecommerce-skills
E-Commerce Growth Strategy 🚀 Your strategic growth advisor for e-commerce. This skill diagnoses where your business stands today, identifies the highest-impact growth opportunities, and builds a prioritized roadmap to get you to the next stage — whether that's your first $10K month or scaling past $1M. This is the strategy layer above marketing execution. It tells you what to do next and why , then connects you to specialized skills like ecommerce-marketing-strategy-builder for how to do it . np...
997
10484 content-marketing kostja94/marketing-skills
Content Marketing Help the user build effective content marketing using frameworks from 23 product leaders who have built content engines at companies like Notion, First Round, and The Pragmatic Engineer. How to Help When the user asks for help with content marketing: Identify the goal - Determine if content is for SEO, brand building, lead generation, or thought leadership Find content-market fit - Help them identify the specific anxieties or needs their content will solve Choose the right form...
997
10485 datalocastle-r03-anthropics-skills-seo aradotso/marketing-skills
📈 SEO & Content Marketing Skills Suite Skill by ara.so — Marketing Skills collection. This skill suite provides 10 specialized SEO commands and 5 multi-step workflows derived from anthropics/skills . It enables AI coding agents to perform comprehensive SEO analysis, content audits, keyword research, and technical optimization with consistent structured output. What This Project Does The r03-anthropics-skills-seo suite delivers: Keyword Research — clustering, opportunity scoring, SERP intent mapp...
996
10486 seo-content-marketing-skill-factory aradotso/marketing-skills
SEO & Content Marketing Skill Factory Skill by ara.so — Marketing Skills collection. What This Project Does A specialized skill suite derived from alirezarezvani/claude-code-skill-factory that provides 10 SEO and content marketing commands plus 5 multi-step workflows. Handles keyword research, content audits, SERP analysis, technical SEO diagnostics, competitor analysis, and content strategy with structured output and progress tracking. Core capabilities: Keyword clustering and opportunity scori...
996
10487 fixed-income-portfolio anthropics/financial-services-plugins
Fixed Income Portfolio Analysis You are an expert fixed income portfolio analyst. Combine bond pricing, reference data, cashflow projections, and scenario stress testing from MCP tools into comprehensive portfolio reviews. Focus on aggregating tool outputs into portfolio-level metrics and risk exposures — let the tools compute bond-level analytics, you aggregate and present. Core Principles Always compute portfolio-level metrics as market-value weighted averages (yield, duration, convexity). Pri...
996
10488 autonomous-agent-patterns sickn33/agentic-awesome-skills
🕹️ Autonomous Agent Patterns Design patterns for building autonomous coding agents, inspired by Cline and OpenAI Codex . When to Use This Skill Use this skill when: Building autonomous AI agents Designing tool/function calling APIs Implementing permission and approval systems Creating browser automation for agents Designing human-in-the-loop workflows 1. Core Agent Architecture 1.1 Agent Loop Show more Installs 980 Repository sickn33/agentic…e-skills GitHub Stars 45.1K First Seen Jan 19, 2026 Se...
996
10489 amazon-a-plus-content nexscope-ai/amazon-skills
Amazon A+ Content 🎨 Strategic Amazon A+ Content planning and optimization. Create compelling product storytelling that converts browsers into buyers. Installation npx skills add nexscope-ai/Amazon-Skills --skill amazon-a-plus-content -g Usage Examples Complete A+ Content strategy development: "Create A+ Content plan for my premium kitchen knife set - need module layouts, copy strategy, and image briefs for conversion optimization" Show more Installs 847 Repository nexscope-ai/ama…n-skills GitHub...
996
10490 playwright mindrally/skills
Playwright CLI Skill Drive a real browser from the terminal using playwright-cli . Prefer the bundled wrapper script so the CLI works even when it is not globally installed. Treat this skill as CLI-first automation. Do not pivot to @playwright/test unless the user explicitly asks for test files. Prerequisite check (required) Before proposing commands, check whether npx is available (the wrapper depends on it): command -v npx > /dev/null 2 > &1 If it is not available, pause and ask the user to in...
996
10491 pyqt6-ui-development-rules oimiragieo/agent-studio
Pyqt6 Ui Development Rules Skill Create stunning, responsive user interfaces that rival the best web designs. Implement advanced PyQt6 features for smooth user experiences. Optimize performance and resource usage in GUI applications. Craft visually appealing interfaces with attention to color theory and layout. Ensure accessibility and cross-platform compatibility. Implement responsive designs that adapt to various screen sizes. Memory Protocol (MANDATORY) Before starting: cat .claude/context/...
996
10492 target-authoring dotnet/skills
Custom Target Authoring Patterns Canonical patterns from Microsoft.Common.CurrentVersion.targets in the MSBuild repository. The Three-Level Target Chain Every major entry point (Build, Rebuild, Clean) delegates to a property listing its dependencies, which chains through Before → Core → After: < PropertyGroup > < BuildDependsOn > BeforeBuild; CoreBuild; AfterBuild </ BuildDependsOn > </ PropertyGroup > Show more Installs 973 Repository dotnet/skills GitHub Stars 5.3K First Seen May 22, 2026 Secu...
996
10493 pentesting-with-aws-security-agent aws/agent-toolkit-for-aws
AWS Security Agent — Penetration Test This skill handles pentest setup, execution, and findings. Initial Security Agent setup (agent space, role, bucket) is handled by the setup-security-agent skill — if .security-agent/config.json is missing, the pentest workflow auto-runs setup inline first. Pentests are slow (1-24 hours) and active — they probe a real running app. Always confirm the user is authorized to test the target before starting. Resolving the values you need The CLI examples below use...
996
10494 pixabay-downloader serpdownloaders/skills
Pixabay Downloader — Coming Soon (Browser Extension) Download free stock photos, illustrations, vectors, videos, music, and sound effects from Pixabay in original quality. This extension is currently in development and has not been released yet. Pixabay Downloader is an upcoming browser extension designed to streamline the process of saving media from Pixabay directly to your local machine. Pixabay hosts a vast library of royalty-free content under a permissive license, but downloading files at ...
995
10495 twill-cloud-coding-agent twillai/skills
Twill Cloud Coding Agent Use this skill to run Twill workflows through the public v1 API. Setup Set API key and optional base URL: export TWILL_API_KEY = "your_api_key" export TWILL_BASE_URL = " ${TWILL_BASE_URL :- https : / / twill.ai} " All API calls use: Authorization: Bearer $TWILL_API_KEY Use this helper to reduce repetition: api ( ) { curl -sS " $@ " \ -H "Authorization: Bearer $TWILL_API_KEY " \ -H "Content-Type: application/json" } Endpoint Coverage (Public v1) GET /api/v1/auth/me GET /a...
995
10496 capacitor-testing cap-go/capgo-skills
Testing Capacitor Applications Comprehensive testing strategies for Capacitor mobile apps. When to Use This Skill User wants to add tests User asks about testing strategies User needs E2E testing User wants to mock native plugins User needs CI testing setup Testing Pyramid /\ / \ E2E Tests (Few) /----\ - Real devices / \ - Full user flows /--------\ Integration Tests (Some) / \ - Component interactions /------------\ - API integration / \ U...
995
10497 pinterest-downloader serpdownloaders/skills
Pinterest Downloader (Browser Extension) Download Pinterest videos, images, pins, and post text in one browser workflow. Pinterest Downloader is a browser extension built for users who want a cleaner way to save Pinterest content for offline reference. It scans the pins visible on the current page, detects downloadable media, and lets you save videos, images, and text without using external downloader sites or extra software. Save Pinterest videos as MP4 files Download images and pin media in av...
994
10498 database-architect sickn33/agentic-awesome-skills
You are a database architect specializing in designing scalable, performant, and maintainable data layers from the ground up. Use this skill when Selecting database technologies or storage patterns Designing schemas, partitions, or replication strategies Planning migrations or re-architecting data layers Do not use this skill when You only need query tuning You need application-level feature design only You cannot modify the data model or infrastructure Instructions Capture data domain, access p...
994
10499 qiaomu-opencli-oneshot joeseesun/qiaomu-opencli-skills
CLI-ONESHOT — 单点快速 CLI 生成 给一个 URL + 一句话描述,4 步生成一个 CLI 命令。 完整探索式开发请看 opencli-explorer skill 。 输入 项目 示例 URL https://x.com/jakevin7/lists Goal 获取我的 Twitter Lists 流程 Step 1: 打开页面 + 抓包 Show more Installs 422 Repository joeseesun/qiaom…i-skills GitHub Stars 979 First Seen Apr 9, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Fail
994
10500 hyva-child-theme hyva-themes/hyva-ai-tools
Hyvä Child Theme Creator This skill creates a complete Hyvä child theme with the proper directory structure, configuration files, and Tailwind CSS build setup. Command execution: For commands that need to run inside the development environment (e.g., bin/magento), use the hyva-exec-shell-cmd skill to detect the environment and determine the appropriate command wrapper. Workflow Step 1: Gather Theme Information Prompt the user to provide the following information: Vendor Name: The vendor/com...
994