███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 19651 | infographic-template-updater | antvis/infographic |
Infographic Template Updater Overview Update public template lists and gallery mappings when new templates are added in src/templates. Workflow Collect new template names from the added src/templates/*.ts file (object keys). If templates are composed via spreads (e.g. ...listZigzagTemplates), also confirm the final keys in src/templates/built-in.ts. Update template lists: .skills/infographic-creator/SKILL.md in the "Available Templates" list. site/src/components/AIPlayground/Prompt.ts in the t...
|
45 |
| 19652 | monorepo-architecture | thebushidocollective/han |
This skill provides comprehensive guidance on designing and structuring monorepos, including workspace organization, dependency management, versioning strategies, and architectural patterns that scale from small projects to enterprise applications. Monorepo vs Polyrepo When to Choose Monorepo A monorepo is beneficial when: - Code sharing is frequent: Multiple projects share common libraries, utilities, or components - Atomic changes needed: Changes span multiple packages and need to be de...
|
45 |
| 19653 | monorepo-setup | patricio0312rev/skills |
Monorepo Setup Configure a scalable monorepo with Turborepo and pnpm workspaces. Core Workflow Initialize structure: Create workspace layout Configure pnpm: Setup workspaces Add Turborepo: Configure build pipeline Create shared packages: Common utilities Setup apps: Applications consuming packages Configure CI/CD: Optimized builds Directory Structure monorepo/ ├── apps/ │ ├── web/ Next.js app │ ├── api/ Express/Fastify API │ └── mobile/ Rea...
|
45 |
| 19654 | site-reliability-engineer | erichowens/some_claude_skills |
Site Reliability Engineer Expert in Docusaurus build health, MDX validation, and deployment safety for the Claude Skills showcase website. Prevents common build failures through pre-commit validation and automated health checks. When to Use Use for: Pre-commit validation of markdown/MDX files Catching Liquid template syntax errors Validating SkillHeader component props Checking for missing hero images/ZIP files Pre-build link validation Post-build health reports Diagnosing Docusaurus build f...
|
45 |
| 19655 | router-engineering | vasilyu1983/ai-agents-public |
Router: Engineering Routes technical problems through the complete engineering skill set. Routing Workflow Identify the primary user intent (what they want done). Match the intent to a domain (AI/ML, software, data, dev workflow, Claude Code). Select a primary skill and up to 2 supporting skills (a chain) when the task spans domains. If confidence is below 0.8 or intents tie, ask 1 clarifying question before routing. If the request is mainly business/marketing or QA/DevOps, hand off to the app...
|
45 |
| 19656 | logo-management | sgcarstrends/sgcarstrends |
Logo Management Skill This skill helps you manage car logos in packages/logos/. When to Use This Skill Adding new car brand logos Updating logo sources or URLs Debugging logo fetching failures Implementing brand name normalization Managing Vercel Blob storage Optimizing logo caching with Redis Scraping logos from external sources Logo Package Architecture packages/logos/ ├── src/ │ ├── services/ │ │ └── logo/ │ │ ├── fetch.ts Logo fetching logic │ │ ├── list.ts ...
|
45 |
| 19657 | pentest-expert | duck4nh/antigravity-kit |
No SKILL.md available for this skill. View on GitHub
|
45 |
| 19658 | finops-waste | laurigates/claude-plugins |
/finops:waste Identify GitHub Actions waste patterns and provide actionable fix suggestions. Analyzes skipped runs, bot triggers, missing concurrency groups, and missing path filters. Context Current repo: ! gh repo view --json nameWithOwner --jq '.nameWithOwner' Workflow files: ! find .github/workflows -maxdepth 1 \( -name '*.yml' -o -name '*.yaml' \) Parameters Parameter Description Default repo Repository in owner/name format Current repository Execution 1. Run API-based waste analysis: bash ...
|
45 |
| 19659 | content-trend-researcher | nicepkg/ai-workflow |
Content Trend Researcher A comprehensive content research and analysis skill designed for content creators, marketers, and publishers who need to create high-performing content based on real-world trends and user intent signals. What This Skill Does This skill acts as your content intelligence system, analyzing trends across 10+ platforms to help you: Identify trending topics - Find what's gaining traction across platforms Understand user intent - Analyze search patterns and engagement signa...
|
45 |
| 19660 | workflow-brainstorm | heyvhuang/ship-faster |
Brainstorming Ideas Into Designs Goal Transform "vague ideas/requirements" into actionable designs and specifications , producing reusable file artifacts (rather than just staying in chat). Key requirement: Ask only one question at a time . If a topic is complex, break it into multiple rounds of Q&A—don't throw out a checklist all at once. Core Process (Must Follow) 0) Check Project Context First (Required When Repo Exists) Before asking questions, quickly check: Key documentation: README.md , d...
|
45 |
| 19661 | dify-knowledge-base-search | tiangong-ai/skills |
Dify Knowledge Base Search Prepare required inputs Provide data as JSON containing query and optional retrieval_model.top_k . Read these env vars: DIFY_API_BASE_URL : base API URL and include /v1 (example: https://api.dify.ai/v1 ). DIFY_DATASET_ID : target dataset ID. DIFY_API_KEY : send as Authorization: Bearer <DIFY_API_KEY> . Send request Endpoint: ${DIFY_API_BASE_URL}/datasets/${DIFY_DATASET_ID}/retrieve Headers: Content-Type: application/json Authorization: Bearer <DIFY_API_KEY> Use assets/...
|
45 |
| 19662 | method-shorthand-jsdoc | epicenterhq/epicenter |
Method Shorthand for JSDoc Preservation When factory functions have helper functions that are only used by returned methods, move them INTO the return object using method shorthand. This ensures JSDoc comments are properly passed through to consumers. The Problem You write a factory function with a well-documented helper: function createHeadDoc ( options : { workspaceId : string } ) { const { workspaceId } = options ; / * Get the current epoch number. * * Computes the maximum of all client-propo...
|
45 |
| 19663 | sports-podcast-outline-generator | onewave-ai/claude-skills |
Sports Podcast Outline Generator Create structured podcast episodes. Segment timing, debate points, hot takes, listener questions, ad break placement. Instructions You are an expert sports podcast producer and content strategist. Generate: episode outlines with segment timing, debate topics and hot takes, listener question integration, ad break placement, show flow optimization, and guest interview prep. Output Format Sports Podcast Outline Generator Output Generated: {timestamp} --- Re...
|
45 |
| 19664 | alicloud-ai-multimodal-qwen-omni-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate that the omni skill includes the correct latest model family and sample payload. Prerequisites Target skill: skills/ai/multimodal/alicloud-ai-multimodal-qwen-omni Recommended check python skills/ai/multimodal/alicloud-ai-multimodal-qwen-omni/scripts/prepare_omni_request.py \ --output output/alicloud-ai-multimodal-qwen-omni/request.json
|
45 |
| 19665 | solidity-deploy | 0xlayerghost/solidity-agent-kit |
Deployment Workflow Language Rule Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English. Pre-deployment Checklist (all must pass) Step Command / Action Format code forge fmt Run all tests forge test — zero failures required Check gas report forge test --gas-report — review critical functions Verify config Manually check config/*.json parameters Dry-run forge script <Script> --fork-url <RPC_URL> -vvvv (no --broadc...
|
45 |
| 19666 | nextjs-15 | gentleman-programming/gentleman-skills |
App Router File Conventions app/ ├── layout.tsx Root layout (required) ├── page.tsx Home page (/) ├── loading.tsx Loading UI (Suspense) ├── error.tsx Error boundary ├── not-found.tsx 404 page ├── (auth)/ Route group (no URL impact) │ ├── login/page.tsx /login │ └── signup/page.tsx /signup ├── api/ │ └── route.ts API handler └── _components/ Private folder (not routed) Server Components (Default) // No directi...
|
45 |
| 19667 | golang-best-practices | difyz9/golang-best-practices |
Golang Best Practices Overview This skill provides battle-tested best practices for Go development, covering project organization, error handling, concurrency patterns, testing strategies, performance optimization, and code quality standards. Use these guidelines when writing, reviewing, or refactoring Go code. Project Structure Standard Layout Follow a clean and practical Go project structure: project/ ├── cmd/ │ └── server/ │ └── main.go Application entry point ├── internal/...
|
45 |
| 19668 | k6-script-generator | jeremylongshore/claude-code-plugins-plus-skills |
K6 Script Generator Purpose This skill provides automated assistance for k6 script generator tasks within the Performance Testing domain. When to Use This skill activates automatically when you: Mention "k6 script generator" in your request Ask about k6 script generator patterns or best practices Need help with performance testing skills covering load testing, stress testing, benchmarking, and performance monitoring. Capabilities Provides step-by-step guidance for k6 script generator Follows ind...
|
45 |
| 19669 | cards-containers | dylantarre/animation-principles |
Card & Container Animation Principles Apply Disney's 12 principles to cards and containers for engaging, dimensional interfaces. Principles Applied to Cards 1. Squash & Stretch Cards can subtly compress on drag-start and stretch when released. Keep it minimal: 2-3% scale change maximum. 2. Anticipation Before expanding a card to detail view, briefly scale down (0.98) for 50ms, then expand. Prepares user for the transformation. 3. Staging The card being interacted with should lift above ot...
|
45 |
| 19670 | laravel:writing-plans | jpcaparas/superpowers-laravel |
Turn a confirmed design into a sequence of small, testable steps. Include guardrails and validation before handoff. Structure - Scaffolding Runner: confirm Sail or host - Branch & workspace prep (worktrees optional) - Data Model Migrations and factories (one commit per change) - Seeders if needed for demo flows - Services & Interfaces Controllers/Requests/Resources (or actions) - Ports & adapters for external systems - Jobs/events/listeners as needed - Tests (TDD) Feature tests for...
|
45 |
| 19671 | video-production | cklxx/elephant.ai |
Remotion Video Production Programmable video production skill using Remotion. Generate automated videos from text instructions and produce consistent, brand-aligned videos at scale. When to use this skill Automated video generation : Generate videos from text instructions Brand video production : High-volume videos with consistent style Programmable content : Combine narration, visuals, and animation Marketing content : Product intros, onboarding, promo videos Instructions Step 1: Define the Vid...
|
45 |
| 19672 | git-branch-naming | laurigates/claude-plugins |
Git Branch Naming Conventions Consistent branch naming improves traceability, enables automation, and makes repository history easier to navigate. When to Use This Skill Use this skill when... Use something else when... Creating a new feature/fix branch Managing PR workflows → git-branch-pr-workflow Setting up team branch conventions Committing changes → git-commit-workflow Discussing naming standards Rebase/merge strategies → git-branch-pr-workflow Branch Name Format {type}/{issue}-{short-descr...
|
45 |
| 19673 | ugc campaign planner | eddiebe147/claude-settings |
UGC Campaign Planner Plan and execute user-generated content campaigns that build community and authenticity When to Use This Skill Use this skill when you need to: Improve business operations and strategy Make data-driven business decisions Optimize processes and outcomes Not recommended for: Tasks requiring creative design work technical coding Quick Reference Action Command/Trigger Create ugc campaign planner ugc campaign Review and optimize review ugc campaign planner Get best practices ugc ...
|
45 |
| 19674 | nps survey creator | eddiebe147/claude-settings |
NPS Survey Creator Expert Net Promoter Score survey system that helps you measure, analyze, and act on customer loyalty data. This skill provides structured workflows for designing effective NPS programs, analyzing responses, and turning feedback into action. NPS is the gold standard for measuring customer loyalty and predicting growth. But the score itself is just the beginning - the real value is in understanding the "why" behind the number and taking action. This skill helps you build an NPS ...
|
45 |
| 19675 | tech-debt-tracker | borghei/claude-skills |
Tech Debt Tracker Tier : POWERFUL Category : Engineering Process Automation Expertise : Code Quality, Technical Debt Management, Software Engineering Overview Tech debt is one of the most insidious challenges in software development - it compounds over time, slowing down development velocity, increasing maintenance costs, and reducing code quality. This skill provides a comprehensive framework for identifying, analyzing, prioritizing, and tracking technical debt across codebases. Tech debt isn't...
|
45 |
| 19676 | training-log-analyzer | onewave-ai/claude-skills |
Training Log Analyzer Track workouts, stats, progress over time. Identify improvement areas, plateaus, rest/recovery needs, peak performance timing, injury risk. Instructions You are an expert sports scientist and performance analyst. Analyze training logs to identify: improvement trends, plateau periods, rest/recovery needs, peak performance windows, injury risk indicators, and data-driven training adjustments. Output Format Training Log Analyzer Output Generated: {timestamp} --- Resul...
|
45 |
| 19677 | survey-analyzer | dkyazzentwatwa/chatgpt-skills |
Survey Analyzer Comprehensive survey data analysis with Likert scales, cross-tabs, and sentiment analysis. Features Likert Scale Analysis : Agreement scale scoring and visualization Cross-Tabulation : Relationship analysis between categorical variables Frequency Analysis : Response distributions and percentages Sentiment Scoring : Text response sentiment analysis Open-Ended Analysis : Theme extraction from text responses Statistical Tests : Chi-square, correlations, significance testing Visualiz...
|
45 |
| 19678 | security-audit | dirnbauer/webconsulting-skills |
Security Auditing Workflow Bundle Overview Comprehensive security auditing workflow for web applications, APIs, and infrastructure. This bundle orchestrates skills for penetration testing, vulnerability assessment, security scanning, and remediation. When to Use This Workflow Use this workflow when: Performing security audits on web applications Testing API security Conducting penetration tests Scanning for vulnerabilities Hardening application security Compliance security assessments Workflow P...
|
45 |
| 19679 | customer-success | dengineproblem/agents-monorepo |
Customer Success Comprehensive customer success management covering onboarding, health scoring, QBRs, expansion playbooks, and retention strategies. Overview This skill covers: Customer onboarding programs Health scoring and monitoring QBR (Quarterly Business Review) templates Expansion and upsell playbooks Retention and churn prevention Customer Onboarding Onboarding Program Structure onboarding_phases : phase_1_kickoff : duration : "Week 1" goals : - establish_relationship - set_expectations -...
|
45 |
| 19680 | codex | longranger2/claude-gpt-workflow |
Codex Skill Guide Running a Task Default to gpt-5.2 model. Ask the user (via AskUserQuestion ) which reasoning effort to use ( xhigh , high , medium , or low ). User can override model if needed (see Model Options below). Select the sandbox mode required for the task; default to --sandbox read-only unless edits or network access are necessary. Assemble the command with the appropriate options: -m, --model <MODEL> --config model_reasoning_effort="<high|medium|low>" --sandbox <read-only|workspace-...
|
45 |
| 19681 | analytics-unused | laurigates/claude-plugins |
/analytics:unused Identify commands and skills that have never been invoked, helping you discover unused features or clean up unused plugins. Context Check analytics availability: if [ [ ! -f ~/.claude-analytics/summary.json ] ] ; then echo "No analytics data yet. Cannot determine unused commands/skills." exit 0 fi Execution Scan for unused commands and skills: ANALYTICS_DIR = " ${ HOME } /.claude-analytics" SUMMARY_FILE = " ${ANALYTICS_DIR} /summary.json" echo "🔍 Scanning for unused commands an...
|
45 |
| 19682 | capsule-crm | membranedev/application-skills |
Capsule CRM Capsule CRM is a customer relationship management (CRM) platform. It helps small to medium-sized businesses manage contacts, sales pipelines, and customer interactions. Sales teams and account managers use it to track leads and nurture customer relationships. Official docs: https://developer.capsulecrm.com/ Capsule CRM Overview Opportunity Track Case Contact Organization Project Working with Capsule CRM This skill uses the Membrane CLI to interact with Capsule CRM. Membrane handles a...
|
45 |
| 19683 | audit-log-generator | dengineproblem/agents-monorepo |
Audit Log Generator Expert Эксперт в проектировании и реализации логов аудита для безопасности, соответствия требованиям и мониторинга. Основные элементы лога Каждая запись должна содержать: Timestamp : UTC с точностью до миллисекунд Event ID : Уникальный идентификатор Actor : Кто выполнил действие Action : Что было выполнено (CREATE, READ, UPDATE, DELETE) Resource : На что было воздействие Source : IP адрес, приложение Result : Успех/неудача Risk Level : Классификация критичности JSON формат (р...
|
45 |
| 19684 | secrets-scanner | patricio0312rev/skills |
Secrets Scanner Detect and prevent leaked credentials in your codebase. Secret Detection Patterns .gitleaks.toml title = "Gitleaks Configuration" [[rules]] id = "aws-access-key" description = "AWS Access Key" regex = '''(A3T[A-Z0-9]|AKIA|AGPA|AIDA|AROA|AIPA|ANPA|ANVA|ASIA)[A-Z0-9]{16}''' tags = ["key", "AWS"] [[rules]] id = "aws-secret-key" description = "AWS Secret Key" regex = '''(?i)aws(.{0,20})?(?-i)['\"][0-9a-zA-Z\/+]{40}['\"]''' tags = ["key", "AWS"] [[rules]] id = "github-token" des...
|
45 |
| 19685 | tool-x-article-publisher | heyvhuang/ship-faster |
X Article Publisher Publish Markdown content into X (Twitter) Articles as a draft , preserving formatting via rich text paste and deterministic image insertion. Hard Rules (Safety) Never auto-publish (draft only; user publishes manually). User must be logged in before automation starts. First image = cover image (if any). Prerequisites Browser automation available (Playwright MCP or equivalent) X account can access Articles (Premium / Premium Plus) macOS recommended (clipboard helper uses Cocoa)...
|
45 |
| 19686 | ls-lint | paulrberg/agent-skills |
ls-lint v2.3 Version Notice: This skill documents ls-lint v2.3 specifically. Before proceeding, verify the installed version matches: ls-lint --version or npx @ls-lint/ls-lint --version If a different version is installed, stop and consult the official documentation for that version at https://ls-lint.org or the GitHub repository at https://github.com/loeffel-io/ls-lint . Configuration syntax and available rules may differ between versions. An extremely fast directory and filename linter that e...
|
45 |
| 19687 | axiom-timer-patterns | charleswiltgen/axiom |
Timer Safety Patterns Overview Timer-related crashes are among the hardest to diagnose because they're often intermittent and the crash log points to GCD internals, not your code. Core principle : DispatchSourceTimer has a state machine — violating it causes deterministic EXC_BAD_INSTRUCTION crashes that look random. Timer (NSTimer) has a RunLoop mode trap that silently stops your timer during scrolling. Both are preventable with the patterns in this skill. Example Prompts "My timer stops when t...
|
45 |
| 19688 | claude-code-project-memory | vasilyu1983/ai-agents-public |
Claude Code Project Memory (Jan 2026) Configure CLAUDE.md project memory so Claude Code gets stable, scoped instructions across sessions while keeping token cost low. Quick Reference Memory Type Typical Location Purpose Managed policy OS-dependent (see official docs) Organization-wide standards (security, compliance) Project memory ./CLAUDE.md or ./.claude/CLAUDE.md Shared project context and conventions Project rules ./.claude/rules/*.md Modular, topic-focused rules (testing, security, style)...
|
45 |
| 19689 | v3 cli modernization | proffesor-for-testing/agentic-qe |
V3 CLI Modernization What This Skill Does Modernizes claude-flow v3 CLI with interactive prompts, intelligent command decomposition, enhanced hooks integration, performance optimization, and comprehensive workflow automation capabilities. Quick Start Initialize CLI modernization analysis Task ( "CLI architecture" , "Analyze current CLI structure and identify optimization opportunities" , "cli-hooks-developer" ) Modernization implementation (parallel) Task ( "Command decomposition" , "Break dow...
|
45 |
| 19690 | django | teachingai/full-stack-skills |
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
45 |
| 19691 | productivity-ai-tools | omer-metin/skills-for-antigravity |
Productivity Ai Tools Identity Reference System Usage You must ground your responses in the provided reference files, treating them as the source of truth for this domain: For Creation: Always consult references/patterns.md. This file dictates how things should be built. Ignore generic approaches if a specific pattern exists here. For Diagnosis: Always consult references/sharp_edges.md. This file lists the critical failures and "why" they happen. Use it to explain risks to the user. For Review...
|
45 |
| 19692 | tuzi-comic | tuziapi/tuzi-skills |
Knowledge Comic Creator Create original knowledge comics with flexible art style × tone combinations. Usage /tuzi-comic posts/turing-story/source.md /tuzi-comic article.md --art manga --tone warm /tuzi-comic then paste content Options Visual Dimensions Option Values Description --art ligne-claire (default), manga, realistic, ink-brush, chalk Art style / rendering technique --tone neutral (default), warm, dramatic, romantic, energetic, vintage, action Mood / atmosphere --layout standard (default...
|
45 |
| 19693 | cm | dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations |
CM - CASS Memory System Procedural memory for AI coding agents. Transforms scattered sessions into persistent, cross-agent memory. Uses a three-layer cognitive architecture that mirrors human expertise development. Why This Exists AI coding agents accumulate valuable knowledge but it's: Trapped in sessions - Context lost when session ends Agent-specific - Claude doesn't know what Cursor learned Unstructured - Raw logs aren't actionable guidance Subject to collapse - Naive summarization loses...
|
45 |
| 19694 | github-triage | code-yeongyu/oh-my-openagent |
GitHub Issue Triage Triage issues in the current repo using a label-based state machine. Infer the repo from git remote . Use gh for all GitHub operations. AI Disclaimer Every comment or issue posted to GitHub during triage must include the following disclaimer at the top of the comment body, before any other content: > *This was generated by AI during triage.* Reference docs AGENT-BRIEF.md — how to write durable agent briefs OUT-OF-SCOPE.md — how the .out-of-scope/ knowledge base works Labels L...
|
45 |
| 19695 | atc-model-converter | ascend-ai-coding/awesome-ascend-skills |
ATC Model Converter Complete guide for converting ONNX models to Ascend AI processor compatible format using ATC (Ascend Tensor Compiler) tool. Supported CANN Versions: 8.3.RC1, 8.5.0 ⚠️ Critical Compatibility Requirements Before starting, ensure your environment meets these requirements: Component Requirement Why Python 3.7, 3.8, 3.9, or 3.10 Python 3.11+ incompatible with CANN 8.1.RC1 NumPy < 2.0 (e.g., 1.26.4) CANN uses deprecated NumPy API ONNX Opset 11 or 13 (for CANN 8.1.RC1) Higher opset ...
|
45 |
| 19696 | exit strategist | eddiebe147/claude-settings |
Exit Strategist Plan M&A exits, prepare for acquisition, and maximize exit value When to Use This Skill Use this skill when you need to: Improve business operations and strategy Make data-driven business decisions Optimize processes and outcomes Not recommended for: Tasks requiring creative design work technical coding Quick Reference Action Command/Trigger Create exit strategist exit strategy Review and optimize review exit strategist Get best practices exit strategist best practices Core Workf...
|
45 |
| 19697 | figma | teachingai/full-stack-skills |
Figma MCP Use the Figma MCP server for Figma-driven implementation. For setup and debugging details (env vars, config, verification), see references/figma-mcp-config.md . Figma MCP Integration Rules These rules define how to translate Figma inputs into code for this project and must be followed for every Figma-driven change. Required flow (do not skip) Run get_design_context first to fetch the structured representation for the exact node(s). If the response is too large or truncated, run get_met...
|
45 |
| 19698 | flutter-architecture | dhruvanbhalara/skills |
Flutter Architecture Overview Provides architectural guidance and best practices for building scalable Flutter applications using MVVM pattern, layered architecture, and recommended design patterns from the Flutter team. Project Structure: Feature-First vs Layer-First Choose the right project organization based on your app's complexity and team size. Feature-First (Recommended for teams) Organize code by business features: lib/ ├── features/ │ ├── auth/ │ │ ├── data/ │ │ ├── domain/ │ ...
|
45 |
| 19699 | hifi-download | psylch/media-master |
MusicMaster Music discovery (Spotify, Last.fm) and Hi-Res audio downloads (Qobuz, TIDAL) through a unified CLI. Language Match user's language : Respond in the same language the user uses. All commands use bash ${SKILL_PATH}/run.sh <script> [args...] , which activates the venv and runs the corresponding Python script. Output is human-readable by default; use --json where supported for structured output. First-Time Setup Step 1: Check Dependencies bash ${SKILL_PATH} /scripts/setup.sh check Output...
|
45 |
| 19700 | content-trend-researcher | alirezarezvani/claude-code-skill-factory |
Content Trend Researcher A comprehensive content research and analysis skill designed for content creators, marketers, and publishers who need to create high-performing content based on real-world trends and user intent signals. What This Skill Does This skill acts as your content intelligence system, analyzing trends across 10+ platforms to help you: Identify trending topics - Find what's gaining traction across platforms Understand user intent - Analyze search patterns and engagement signa...
|
45 |