███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 4851 | windows privilege escalation | sickn33/antigravity-awesome-skills |
Windows Privilege Escalation Purpose Provide systematic methodologies for discovering and exploiting privilege escalation vulnerabilities on Windows systems during penetration testing engagements. This skill covers system enumeration, credential harvesting, service exploitation, token impersonation, kernel exploits, and various misconfigurations that enable escalation from standard user to Administrator or SYSTEM privileges. Inputs / Prerequisites Initial Access : Shell or RDP access as standard...
|
178 |
| 4852 | parallel-agent-contracts | parcadei/continuous-claude-v3 |
Parallel Agent Type Contracts When launching parallel agents for code implementation, prevent type duplication. Required in Every Agent Prompt 1. Verification Command (MANDATORY) Before Marking Complete Run verification: \`\`\`bash npx tsc --noEmit 2>&1 | head -20 \`\`\` If ANY type errors exist, fix them before completing. 2. Grep-Before-Create Before Creating Any Type/Interface First check if it exists: \`\`\`bash grep -r "interface YourTypeName\|type YourTypeName" src/ \`\`\` If found, i...
|
178 |
| 4853 | qlty-during-development | parcadei/continuous-claude-v3 |
QLTY During Development Run QLTY checks during code writing to catch issues early. When to Run Run QLTY after significant code changes: After completing a new file After substantial edits to existing files Before committing changes Commands Quick lint check qlty check Format code qlty fmt Check specific files qlty check src/sdk/providers.ts Auto-fix issues qlty check --fix Integration Pattern After writing code: Run qlty check on changed files If errors, fix them before proceeding ...
|
177 |
| 4854 | tradingview-quantitative | hypier/tradingview-quantitative-skills |
Quantitative Investment Analysis Expert Professional quantitative investment analysis system based on TradingView MCP tools providing insights and decision recommendations. Core Rules Metadata First Principle Before calling tradingview_get_leaderboard , you must first call tradingview_get_metadata to get parameter values: type='markets' → Get market_code (required for stock leaderboard) type='tabs' + asset_type → Get available tab values type='columnsets' → Get available columnset values Complet...
|
177 |
| 4855 | agentica-spawn | parcadei/continuous-claude-v3 |
Agentica Spawn Skill Use this skill after user selects an Agentica pattern. When to Use After agentica-orchestrator prompts user for pattern selection When user explicitly requests a multi-agent pattern (swarm, hierarchical, etc.) When implementing complex tasks that benefit from parallel agent execution For research tasks requiring multiple perspectives (use Swarm) For implementation tasks requiring coordination (use Hierarchical) For iterative refinement (use Generator/Critic) For high-stake...
|
177 |
| 4856 | internal-comms | sickn33/antigravity-awesome-skills |
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
|
177 |
| 4857 | financial-calculator | dkyazzentwatwa/chatgpt-skills |
Professional-grade financial calculations with detailed breakdowns, visualizations, and exportable reports. Handles everything from simple loan payments to complex retirement projections with Monte Carlo simulations. Core Calculators - Loan Calculator: Amortization schedules, payment breakdowns, prepayment scenarios - Investment Calculator: Future value, compound growth, recurring contributions - NPV/IRR Calculator: Net present value, internal rate of return, payback period - Retirement Ca...
|
177 |
| 4858 | artifacts-builder | davila7/claude-code-templates |
Artifacts Builder To build powerful frontend claude.ai artifacts, follow these steps: Initialize the frontend repo using scripts/init-artifact.sh Develop your artifact by editing the generated code Bundle all code into a single HTML file using scripts/bundle-artifact.sh Display artifact to user (Optional) Test the artifact Stack : React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui Design & Style Guidelines VERY IMPORTANT: To avoid what is often referred to as "AI slop", ...
|
177 |
| 4859 | diagram-creator | claude-office-skills/skills |
Diagram Creator Skill Overview I help you create professional diagrams using text-based diagram tools like Mermaid and PlantUML. These diagrams can be rendered in documentation, presentations, and development tools. What I can do: Create flowcharts and process diagrams Generate sequence diagrams Build architecture and system diagrams Design ER (Entity-Relationship) diagrams Create class diagrams and UML Generate organizational charts Build Gantt charts and timelines What I cannot do: Render imag...
|
177 |
| 4860 | 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...
|
177 |
| 4861 | tldr-router | parcadei/continuous-claude-v3 |
TLDR Smart Router Maps questions to the optimal tldr command. Use this to pick the right layer. Question → Command Mapping "What files/functions exist?" tldr tree . --ext .py File overview tldr structure src/ --lang python Function/class overview Use: Starting exploration, orientation "What does X call / who calls X?" tldr context <function> --project . --depth 2 tldr calls src/ Use: Understanding architecture, finding entry points "How complex is X?" tldr cfg <file> <functio...
|
177 |
| 4862 | search-hierarchy | parcadei/continuous-claude-v3 |
Search Tool Hierarchy Use the most token-efficient search tool for each query type. Decision Tree Query Type? ├── STRUCTURAL (code patterns) │ → AST-grep (~50 tokens output) │ Examples: "def foo", "class Bar", "import X", "@decorator" │ ├── SEMANTIC (conceptual questions) │ → LEANN (~100 tokens if path-only) │ Examples: "how does auth work", "find error handling patterns" │ ├── LITERAL (exact identifiers) │ → Grep (variable output) │ Examples: "TemporalMemory", "check_evocation", r...
|
177 |
| 4863 | search-router | parcadei/continuous-claude-v3 |
Search Tool Router Use the most token-efficient search tool for each query type. When to Use Searching for code patterns Finding where something is implemented Looking for specific identifiers Understanding how code works Decision Tree Query Type? ├── CODE EXPLORATION (symbols, call chains, data flow) │ → TLDR Search - 95% token savings │ DEFAULT FOR ALL CODE SEARCH - use instead of Grep │ Examples: "spawn_agent", "DataPoller", "redis usage" │ Command: tldr search "query" . │ ├── STRUC...
|
177 |
| 4864 | financial-modeling | claude-office-skills/skills |
Financial Modeling Skill Overview I help you build integrated 3-statement financial models that link Income Statement, Balance Sheet, and Cash Flow Statement. These models are essential for valuation, budgeting, and strategic planning. What I can do: Build income statement projections Create balance sheet forecasts Generate cash flow statements Model working capital requirements Build debt schedules and interest calculations Create scenario analysis (base/bull/bear cases) What I cannot do: Acces...
|
177 |
| 4865 | no-task-output | parcadei/continuous-claude-v3 |
Never Use TaskOutput TaskOutput floods the main context window with agent transcripts (70k+ tokens). Rule NEVER use TaskOutput tool. Use Task tool with synchronous mode instead. Why TaskOutput reads full agent transcript into context This causes mid-conversation compaction Defeats the purpose of agent context isolation Pattern WRONG - floods context Task(run_in_background=true) TaskOutput(task_id="...") // 70k tokens dumped RIGHT - isolated context, returns summary Task(run_in_background...
|
177 |
| 4866 | search-tools | parcadei/continuous-claude-v3 |
Search Tool Hierarchy When searching code, use this decision tree: Decision Tree Need CONCEPTUAL/SEMANTIC search? (how does X work, find patterns, understand architecture) → Use LEANN (/leann-search) - embedding-based semantic search → PreToolUse hook auto-redirects semantic Grep queries Need to understand code STRUCTURE? (find function calls, class usages, refactor patterns) → Use AST-grep (/ast-grep-find) Need to find TEXT in code? → Use Morph (/morph-search) - 20x faster → I...
|
177 |
| 4867 | faiss | davila7/claude-code-templates |
FAISS - Efficient Similarity Search Facebook AI's library for billion-scale vector similarity search. When to use FAISS Use FAISS when: Need fast similarity search on large vector datasets (millions/billions) GPU acceleration required Pure vector similarity (no metadata filtering needed) High throughput, low latency critical Offline/batch processing of embeddings Metrics: 31,700+ GitHub stars Meta/Facebook AI Research Handles billions of vectors C++ with Python bindings Use alternatives i...
|
177 |
| 4868 | n8n-workflow | claude-office-skills/skills |
N8N Workflow Skill Overview This skill enables document workflow automation using n8n - the most popular workflow automation platform with 7800+ community templates. Chain document operations, integrate with 400+ apps, and build complex document pipelines. How to Use Describe what you want to accomplish Provide any required input data or files I'll execute the appropriate operations Example prompts: "Automate PDF → OCR → Translation → Email workflow" "Watch folder for new contracts → Review → No...
|
177 |
| 4869 | html | mindrally/skills |
HTML Development Guidelines Core Principles Write semantic HTML to improve accessibility and SEO Use appropriate elements for their intended purpose Ensure proper document structure and hierarchy Prioritize accessibility by using ARIA roles and attributes when needed Semantic Elements Document Structure Use <header> for introductory content and navigation Use <main> for the primary content (one per page) Use <footer> for footer content Use <nav> for navigation sections Use <aside> for tangential...
|
177 |
| 4870 | system-overview | parcadei/continuous-claude-v3 |
System Overview Show users how Continuous Claude works - the opinionated setup with hooks, memory, and coordination. When to Use User asks "how does this work?" User asks "what can you remember?" User asks "what's different about this setup?" User runs /system_overview Response CONTINUOUS CLAUDE SYSTEM OVERVIEW ================================= MEMORY LAYER (PostgreSQL + pgvector) ------------------------------------ - 78,000+ temporal facts from past sessions - Learnings extracted automatica...
|
177 |
| 4871 | svg-icon-generator | jeremylongshore/claude-code-plugins-plus-skills |
Svg Icon Generator Purpose This skill provides automated assistance for svg icon generator tasks within the Visual Content domain. When to Use This skill activates automatically when you: Mention "svg icon generator" in your request Ask about svg icon generator patterns or best practices Need help with visual content skills covering diagrams, charts, presentations, and visual documentation tools. Capabilities Provides step-by-step guidance for svg icon generator Follows industry best practices a...
|
177 |
| 4872 | guidance | davila7/claude-code-templates |
Guidance: Constrained LLM Generation When to Use This Skill Use Guidance when you need to: Control LLM output syntax with regex or grammars Guarantee valid JSON/XML/code generation Reduce latency vs traditional prompting approaches Enforce structured formats (dates, emails, IDs, etc.) Build multi-step workflows with Pythonic control flow Prevent invalid outputs through grammatical constraints GitHub Stars: 18,000+ | From: Microsoft Research Installation Base installation pip install guidanc...
|
177 |
| 4873 | implement_plan_micro | parcadei/continuous-claude-v3 |
Formal Specification Multimodal Logic Integration Five modal logics via fusion with bridge principles: JL: Justification Logic - evidence-backed claims IEL: Inferential Erotetic Logic - question handling TEL: Temporal Epistemic Logic - phase sequencing SDL: Standard Deontic Logic - obligations/permissions DEL: Dynamic Epistemic Logic - action modalities Justification Logic (JL) Justification terms [h]:context(task_n) Handoff h justifies task context [v]:verified(phase_n) ...
|
177 |
| 4874 | agentica-sdk | parcadei/continuous-claude-v3 |
Agentica SDK Reference (v0.3.1) Build AI agents in Python using the Agentica framework. Agents can implement functions, maintain state, use tools, and coordinate with each other. When to Use Use this skill when: Building new Python agents Adding agentic capabilities to existing code Integrating MCP tools with agents Implementing multi-agent orchestration Debugging agent behavior Quick Start Agentic Function (simplest) from agentica import agentic @agentic() async def add(a: int, b: int) -> ...
|
177 |
| 4875 | mobile-developer | sickn33/antigravity-awesome-skills |
Mobile Developer Skill I help you build cross-platform mobile apps with React Native and Expo. What I Do App Development: React Native / Expo apps (iOS + Android) Navigation and routing State management API integration Native Features: Camera, location, notifications Biometric authentication File system access Device sensors Performance: Optimize bundle size Lazy loading Image optimization Memory management Distribution: App Store / Google Play submission Over-the-air (OTA) updates Bet...
|
177 |
| 4876 | tdd | parcadei/continuous-claude-v3 |
/tdd - Test-Driven Development Workflow Strict TDD workflow: tests first, then implementation. When to Use "Implement X using TDD" "Build this feature test-first" "Write tests for X then implement" Any feature where test coverage is critical Bug fixes that need regression tests TDD Philosophy Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is ...
|
177 |
| 4877 | skill-downloader | nicepkg/ai-workflow |
Skill Downloader Download and install Claude Code skills from multiple sources. Supported Sources Source Type Examples GitHub Repository https://github.com/user/repo, github.com/user/repo Compressed Archive .zip, .tar.gz, .tgz, .skill (renamed zip) Direct URL URL pointing to archive or skill folder Usage Download from GitHub python scripts/download_from_github.py <repo-url> <skill-path> --output <target-dir> Examples: Official Anthropic skills python scripts/download_from_github.py https:/...
|
177 |
| 4878 | tldr-stats | parcadei/continuous-claude-v3 |
TLDR Stats Skill Show a beautiful dashboard with token usage, actual API costs, TLDR savings, and hook activity. When to Use See how much TLDR is saving you in real $ terms Check total session token usage and costs Before/after comparisons of TLDR effectiveness Debug whether TLDR/hooks are being used See which model is being used Instructions IMPORTANT: Run the script AND display the output to the user. Run the stats script: python3 $CLAUDE_PROJECT_DIR/.claude/scripts/tldr_stats.py Copy the...
|
177 |
| 4879 | router-first-architecture | parcadei/continuous-claude-v3 |
Router-First Architecture Route through domain routers before using individual tools. Routers abstract tool selection. Pattern Domain routers (like math-router) provide deterministic mapping from user intent to exact CLI commands. Always use the router first; only bypass for edge cases. DO Call math-router route "<intent>" before any math operation Let domain skills co-activate with their router (via coActivate in skill-rules.json) Trust the router's confidence score; only fall back if comma...
|
177 |
| 4880 | workflow-creator | nicepkg/ai-workflow |
Workflow Creator Create complete workflow directories with curated skills downloaded from GitHub. Workflow Creation Process Step 1: Create directory structure Run scripts/create_workflow.py to initialize: python scripts/create_workflow.py <workflow-name> --path <output-dir> Creates (with multi-AI tool support): workflows/<workflow-name>-workflow/ ├── README.md User documentation (English) ├── README_cn.md User documentation (Chinese) ├── AGENTS.md AI context (au...
|
177 |
| 4881 | requirements-gathering | aj-geddes/useful-ai-prompts |
Requirements Gathering Overview Effective requirements gathering establishes a shared understanding of what will be built, preventing misalignment and expensive changes later in the project. When to Use Project kickoff and planning Feature development initiation Product roadmap planning System modernization projects Customer discovery Stakeholder alignment sessions Writing user stories and acceptance criteria Instructions 1. Stakeholder Discovery Identify and analyze stakeholders class Stake...
|
177 |
| 4882 | repoprompt | parcadei/continuous-claude-v3 |
RepoPrompt Skill When to Use Explore codebase structure (tree, codemaps) Search code with context lines Get code signatures without full file content (token-efficient) Read file slices (specific line ranges) Build context for tasks Token Optimization RepoPrompt is more token-efficient than raw file reads: structure → signatures only (not full content) read --start-line --limit → slices instead of full files search --context-lines → relevant matches with context CLI Usage If installed to PATH ...
|
177 |
| 4883 | command development | anthropics/claude-plugins-official |
Command Development for Claude Code Overview Slash commands are frequently-used prompts defined as Markdown files that Claude executes during interactive sessions. Understanding command structure, frontmatter options, and dynamic features enables creating powerful, reusable workflows. Key concepts: Markdown file format for commands YAML frontmatter for configuration Dynamic arguments and file references Bash execution for context Command organization and namespacing Command Basics What is a Slas...
|
177 |
| 4884 | index-at-creation | parcadei/continuous-claude-v3 |
Index at Creation Time Index artifacts when they're created, not at batch boundaries. Pattern If downstream logic depends on artifacts being queryable, index immediately at write time. DO Index handoffs in PostToolUse Write hook (immediately after creation) Use --file flag for fast single-file indexing Trigger indexing from the same event that creates the artifact DON'T Wait for SessionEnd to batch-index Rely on cron/scheduled jobs for time-sensitive data Assume data will be available "soon ...
|
177 |
| 4885 | pitch-deck | ailabs-393/ai-labs-claude-skills |
Pitch Deck Generator Overview Generate professional PowerPoint pitch decks following industry best practices. This skill creates structured presentations for fundraising, sales, and business development using a proven 10-slide format. When to Use This Skill Activate this skill when users request: Investor pitch decks for fundraising Sales or business development presentations Product launch presentations Startup pitch competition decks Any structured business presentation following standard ...
|
177 |
| 4886 | related-skill | inference-sh/skills | 177 | |
| 4887 | drive-motivation | wondelai/skills |
Drive Motivation Framework Framework for designing motivation systems in products, teams, and organizations based on the science of what actually motivates humans. Replaces outdated carrot-and-stick thinking with intrinsic motivation. Core Principle The secret to high performance isn't rewards and punishment — it's the deeply human need to direct our own lives, learn and create new things, and do better for ourselves and our world. The foundation: For any task requiring even rudimentary cognitiv...
|
177 |
| 4888 | create-pr | marcelorodrigo/agent-skills |
Create Pull Request Creates GitHub PRs with titles that pass n8n's check-pr-title CI validation. PR Title Format <type>(<scope>): <summary> Types (required) Type Description Changelog feat New feature Yes fix Bug fix Yes perf Performance improvement Yes test Adding/correcting tests No docs Documentation only No refactor Code change (no bug fix or feature) No build Build system or dependencies No ci CI configuration No chore Routine tasks, maintenance No Scopes (optional but recommended) API -...
|
177 |
| 4889 | mcp integration | anthropics/claude-plugins-official |
MCP Integration for Claude Code Plugins Overview Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code. Key capabilities: Connect to external services (databases, APIs, file systems) Provide 10+ related tools from a single service Handle OAuth and complex authentication flows Bundle MCP servers with plugins for automatic setu...
|
177 |
| 4890 | quality-manager-qms-iso13485 | alirezarezvani/claude-skills |
Quality Manager - QMS ISO 13485 Specialist ISO 13485:2016 Quality Management System implementation, maintenance, and certification support for medical device organizations. Table of Contents QMS Implementation Workflow Document Control Workflow Internal Audit Workflow Process Validation Workflow Supplier Qualification Workflow QMS Process Reference Decision Frameworks Tools and References QMS Implementation Workflow Implement ISO 13485:2016 compliant quality management system from gap analysis t...
|
177 |
| 4891 | sf-ai-agentforce-testing | jaganpro/sf-skills |
Expert testing engineer specializing in Agentforce agent testing, topic/action coverage analysis, and agentic fix loops. Execute agent tests, analyze failures, and automatically fix issues via sf-ai-agentscript (or sf-ai-agentforce-legacy for existing agents). Core Responsibilities - Test Execution: Run agent tests via `sf agent test run` with coverage analysis - Test Spec Generation: Create YAML test specifications for agents - Coverage Analysis: Track topic selection accuracy, action invo...
|
177 |
| 4892 | product-skills | alirezarezvani/claude-skills |
Product Team Skills 8 production-ready product skills covering product management, UX/UI design, and SaaS development. Quick Start Claude Code /read product-team/product-manager-toolkit/SKILL.md Codex CLI npx agent-skills-cli add alirezarezvani/claude-skills/product-team Skills Overview Skill Folder Focus Product Manager Toolkit product-manager-toolkit/ RICE prioritization, customer discovery, PRDs Agile Product Owner agile-product-owner/ User stories, sprint planning, backlog Product Strategist...
|
177 |
| 4893 | compliance-tracking | anthropics/knowledge-work-plugins |
Compliance Tracking Help track compliance requirements, prepare for audits, and maintain regulatory readiness. Common Frameworks Framework Focus Key Requirements SOC 2 Service organizations Security, availability, processing integrity, confidentiality, privacy ISO 27001 Information security Risk assessment, security controls, continuous improvement GDPR Data privacy (EU) Consent, data rights, breach notification, DPO HIPAA Healthcare data (US) PHI protection, access controls, audit trails PCI DS...
|
177 |
| 4894 | comfyui-workflow-builder | mckruz/comfyui-expert |
ComfyUI Workflow Builder Translates natural language requests into executable ComfyUI workflow JSON. Always validates against inventory before generating. Workflow Generation Process Step 1: Understand the Request Parse the user's intent into: Output type : Image, video, or audio Source material : Text-only, reference image(s), existing video Identity method : None, zero-shot (InstantID/PuLID), LoRA, Kontext Quality level : Draft (fast iteration) vs production (maximum quality) Special requireme...
|
177 |
| 4895 | crossing-the-chasm | wondelai/skills |
Crossing the Chasm Framework Strategic framework for marketing and selling disruptive technology products, particularly for transitioning from early adopters to mainstream customers. Core Principle There is a chasm between early adopters and the mainstream market. Most tech companies fail not because they can't build great products, but because they can't cross from visionaries who love new technology to pragmatists who just want solutions that work. The foundation: Early adopters and mainstream...
|
177 |
| 4896 | agent-browser | jezweb/claude-skills |
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
|
177 |
| 4897 | async-repl-protocol | parcadei/continuous-claude-v3 |
Async REPL Protocol When working with Agentica's async REPL harness for testing. Rules 1. Use await for Future-returning tools content = await view_file(path) NOT view_file(path) answer = await ask_memory("...") 2. Single code block per response Compute AND return in ONE block. Multiple blocks means only first executes. GOOD: Single block content = await view_file(path) return any(c.isdigit() for c in content) BAD: Split blocks (second block never runs) content = await view_file(path)
|
177 |
| 4898 | seo-optimizer | claude-office-skills/skills |
SEO Optimizer Overview This skill provides comprehensive SEO optimization capabilities for HTML/CSS websites. It analyzes websites for SEO issues, implements best practices, and generates optimization reports covering all critical SEO aspects including meta tags, heading structure, image optimization, schema markup, mobile optimization, and technical SEO. When to Use This Skill Use this skill when the user requests: "Analyze my website for SEO issues" "Optimize this page for SEO" "Generate an SE...
|
176 |
| 4899 | init | astronomer/agents |
Initialize Playwright Project Set up a production-ready Playwright testing environment. Detect the framework, generate config, folder structure, example test, and CI workflow. Steps 1. Analyze the Project Use the Explore subagent to scan the project: Check package.json for framework (React, Next.js, Vue, Angular, Svelte) Check for tsconfig.json → use TypeScript; otherwise JavaScript Check if Playwright is already installed ( @playwright/test in dependencies) Check for existing test directories (...
|
176 |
| 4900 | create-skill-from-repo | hairyf/skills |
Create Skills from Repo Workflow for quickly producing a skill set from any repository and applying it in the project. Use when the user supplies <repo-url> and <skills-name> and there is no existing skill source for that framework or project (i.e. not in meta.ts submodules or vendors). When to Use User provides a repository URL and a desired skills name. No entry exists in meta.ts submodules or vendors for that project. Goal is to bootstrap skills from docs/source in this repo (output under ski...
|
176 |