███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12951 | html injection testing | davila7/claude-code-templates |
HTML Injection Testing Purpose Identify and exploit HTML injection vulnerabilities that allow attackers to inject malicious HTML content into web applications. This vulnerability enables attackers to modify page appearance, create phishing pages, and steal user credentials through injected forms. Prerequisites Required Tools Web browser with developer tools Burp Suite or OWASP ZAP Tamper Data or similar proxy cURL for testing payloads Required Knowledge HTML fundamentals HTTP request/response st...
|
201 |
| 12952 | cloud penetration testing | davila7/claude-code-templates |
Cloud Penetration Testing Purpose Conduct comprehensive security assessments of cloud infrastructure across Microsoft Azure, Amazon Web Services (AWS), and Google Cloud Platform (GCP). This skill covers reconnaissance, authentication testing, resource enumeration, privilege escalation, data extraction, and persistence techniques for authorized cloud security engagements. Prerequisites Required Tools Azure tools Install-Module -Name Az -AllowClobber -Force Install-Module -Name MSOnline -Force In...
|
201 |
| 12953 | gpui-style-guide | longbridge/gpui-component |
Overview Code style guide derived from gpui-component implementation patterns. Based on: Analysis of Button, Checkbox, Input, Select, and other components in crates/ui Component Structure Basic Component Pattern use gpui::{ div, prelude::FluentBuilder as _, AnyElement, App, Div, ElementId, InteractiveElement, IntoElement, ParentElement, RenderOnce, StatefulInteractiveElement, StyleRefinement, Styled, Window, }; [derive(IntoElement)] pub struct MyComponent { id: ElementId, ...
|
201 |
| 12954 | tooluniverse-pharmacovigilance | mims-harvard/tooluniverse |
Pharmacovigilance Safety Analyzer Systematic drug safety analysis using FAERS adverse event data, FDA labeling, PharmGKB pharmacogenomics, and clinical trial safety signals. KEY PRINCIPLES : Report-first approach - Create report file FIRST, update progressively Signal quantification - Use disproportionality measures (PRR, ROR) Severity stratification - Prioritize serious/fatal events Multi-source triangulation - FAERS, labels, trials, literature Pharmacogenomic context - Include genetic risk fac...
|
201 |
| 12955 | axiom-ui-testing | charleswiltgen/axiom |
UI Testing Overview Wait for conditions, not arbitrary timeouts. Core principle Flaky tests come from guessing how long operations take. Condition-based waiting eliminates race conditions. NEW in WWDC 2025: Recording UI Automation allows you to record interactions, replay across devices/languages, and review video recordings of test runs. Example Prompts These are real questions developers ask that this skill is designed to answer: 1. "My UI tests pass locally on my Mac but fail in CI. How ...
|
200 |
| 12956 | axiom-accessibility-diag | charleswiltgen/axiom |
Accessibility Diagnostics Overview Systematic accessibility diagnosis and remediation for iOS/macOS apps. Covers the 7 most common accessibility issues that cause App Store rejections and user complaints. Core principle Accessibility is not optional. iOS apps must support VoiceOver, Dynamic Type, and sufficient color contrast to pass App Store Review. Users with disabilities depend on these features. When to Use This Skill Fixing VoiceOver navigation issues (missing labels, wrong element orde...
|
200 |
| 12957 | ship-learn-next | davila7/claude-code-templates |
Ship-Learn-Next Action Planner This skill helps transform passive learning content into actionable Ship-Learn-Next cycles - turning advice and lessons into concrete, shippable iterations. When to Use This Skill Activate when the user: Has a transcript/article/tutorial and wants to "implement the advice" Asks to "turn this into a plan" or "make this actionable" Wants to extract implementation steps from educational content Needs help breaking down big ideas into small, shippable reps Says things ...
|
200 |
| 12958 | tailwindcss-framework-integration | josiahsiegel/claude-plugin-marketplace |
Tailwind CSS Framework Integration React with Vite Setup Create React + Vite project npm create vite@latest my-app -- --template react-ts cd my-app Install Tailwind CSS npm install -D tailwindcss @tailwindcss/vite Configuration // vite.config.ts import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' export default defineConfig({ plugins: [react(), tailwindcss()] }) /* src/index.css */ @import "tailwindcss"; // src/main.ts...
|
200 |
| 12959 | hono-validation | bobmatnyc/claude-mpm-skills |
Hono Validation Patterns Overview Hono provides a lightweight built-in validator and integrates seamlessly with popular validation libraries like Zod, TypeBox, and Valibot. Validation happens as middleware, providing type-safe access to validated data in handlers. Key Features: Built-in lightweight validator First-class Zod integration via @hono/zod-validator Standard Schema support (works with any validation library) Type inference from validation schemas Validates: JSON, forms, query params...
|
200 |
| 12960 | hono-testing | bobmatnyc/claude-mpm-skills |
Hono Testing Patterns Overview Hono provides a simple testing approach: create a Request, pass it to your app, and validate the Response. The framework includes a typed test client for even better DX. Key Features: Simple app.request() API Typed test client with full inference Environment mocking for Workers Works with Vitest, Jest, or any test runner When to Use This Skill Use Hono testing when: Writing unit tests for route handlers Integration testing API endpoints Testing middleware beha...
|
200 |
| 12961 | security-best-practices | davila7/claude-code-templates |
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
|
200 |
| 12962 | local-llm-ops | bobmatnyc/claude-mpm-skills |
Local LLM Ops (Ollama) Overview Your localLLM repo provides a full local LLM toolchain on Apple Silicon: setup scripts, a rich CLI chat launcher, benchmarks, and diagnostics. The operational path is: install Ollama, ensure the service is running, initialize the venv, pull models, then launch chat or benchmarks. Quick Start ./setup_chatbot.sh ./chatllm If no models are present: ollama pull mistral Setup Checklist Install Ollama: brew install ollama Start the service: brew services start oll...
|
200 |
| 12963 | video-transcript | zeropointrepo/youtube-skills |
Video Transcript Extract transcripts from videos via TranscriptAPI.com . Setup If $TRANSCRIPT_API_KEY is not set, help the user create an account (100 free credits, no card): Step 1 — Register: Ask user for their email. node ./scripts/tapi-auth.js register --email USER_EMAIL → OTP sent to email. Ask user: "Check your email for a 6-digit verification code." Step 2 — Verify: Once user provides the OTP: node ./scripts/tapi-auth.js verify --token TOKEN_FROM_STEP_1 --otp CODE API key saved to your sh...
|
200 |
| 12964 | gemini-image-gen | jezweb/claude-skills |
Gemini Image Generator Generate contextual images for web projects using the Gemini API. Produces hero backgrounds, OG cards, placeholder photos, textures, and style-matched variants. Setup API Key : Set GEMINI_API_KEY as an environment variable. Get a key from https://aistudio.google.com/apikey if you don't have one. export GEMINI_API_KEY = "your-key-here" Workflow Step 1: Understand What's Needed Gather from the user or project context: What : hero background, product photo, texture, OG image,...
|
200 |
| 12965 | code-smell-detector | rysweet/amplihack |
Code Smell Detector Skill Purpose This skill identifies anti-patterns that violate amplihack's development philosophy and provides constructive, specific fixes. It ensures code maintains ruthless simplicity, modular design, and zero-BS implementations. When to Use This Skill Code review: Identify violations before merging Refactoring: Find opportunities to simplify and improve code quality New module creation: Catch issues early in development Philosophy compliance: Ensure code aligns with amp...
|
200 |
| 12966 | mobile-design | vudovn/antigravity-kit |
Mobile Design System (Mobile-First · Touch-First · Platform-Respectful) Philosophy: Touch-first. Battery-conscious. Platform-respectful. Offline-capable. Core Law: Mobile is NOT a small desktop. Operating Rule: Think constraints first, aesthetics second. This skill exists to prevent desktop-thinking, AI-defaults, and unsafe assumptions when designing or building mobile applications. 1. Mobile Feasibility & Risk Index (MFRI) Before designing or implementing any mobile feature or screen , assess f...
|
200 |
| 12967 | wcag-audit-patterns | sickn33/antigravity-awesome-skills |
WCAG Audit Patterns Comprehensive guide to auditing web content against WCAG 2.2 guidelines with actionable remediation strategies. When to Use This Skill Conducting accessibility audits Fixing WCAG violations Implementing accessible components Preparing for accessibility lawsuits Meeting ADA/Section 508 requirements Achieving VPAT compliance Core Concepts 1. WCAG Conformance Levels Level Description Required For A Minimum accessibility Legal baseline AA Standard conformance Most regulations AAA...
|
200 |
| 12968 | cost-optimization | sickn33/antigravity-awesome-skills |
Cloud Cost Optimization Strategies and patterns for optimizing cloud costs across AWS, Azure, and GCP. Purpose Implement systematic cost optimization strategies to reduce cloud spending while maintaining performance and reliability. When to Use Reduce cloud spending Right-size resources Implement cost governance Optimize multi-cloud costs Meet budget constraints Cost Optimization Framework 1. Visibility Implement cost allocation tags Use cloud cost management tools Set up budget alerts Create co...
|
200 |
| 12969 | sociologist-analyst | rysweet/amplihack |
Analyze events through the disciplinary lens of sociology, applying rigorous sociological frameworks (structural-functionalism, conflict theory, symbolic interactionism, social constructionism), methodological approaches (quantitative surveys, qualitative ethnography, comparative-historical analysis), and core concepts (social structure, institutions, stratification, culture, socialization, deviance, collective behavior) to understand social patterns, group dynamics, power relations, inequality,...
|
200 |
| 12970 | skill-rails-upgrade | sickn33/antigravity-awesome-skills |
When to Use This Skill Analyze Rails apps and provide upgrade assessments Use this skill when working with analyze rails apps and provide upgrade assessments. Rails Upgrade Analyzer Analyze the current Rails application and provide a comprehensive upgrade assessment with selective file merging. Step 1: Verify Rails Application Check that we're in a Rails application by looking for these files: Gemfile (must exist and contain 'rails') config/application.rb (Rails application config) config/enviro...
|
200 |
| 12971 | terraform-module-library | sickn33/antigravity-awesome-skills |
Terraform Module Library Production-ready Terraform module patterns for AWS, Azure, GCP, and OCI infrastructure. Purpose Create reusable, well-tested Terraform modules for common cloud infrastructure patterns across multiple cloud providers. When to Use Build reusable infrastructure components Standardize cloud resource provisioning Implement infrastructure as code best practices Create multi-cloud compatible modules Establish organizational Terraform standards Module Structure Show more
|
200 |
| 12972 | omarchy | basecamp/omarchy |
Manage [Omarchy](https://omarchy.org/) Linux systems - a beautiful, modern, opinionated Arch Linux distribution with Hyprland. When This Skill MUST Be Used ALWAYS invoke this skill when the user's request involves ANY of these: - Editing ANY file in `~/.config/hypr/` (window rules, animations, keybindings, monitors, etc.) - Editing ANY file in `~/.config/waybar/`, `~/.config/walker/`, `~/.config/mako/` - Editing terminal configs (alacritty, kitty, ghostty) - Editing ANY file in `~/.config...
|
200 |
| 12973 | validate-evaluator | hamelsmu/evals-skills |
Validate Evaluator Calibrate an LLM judge against human judgment. Overview Split human-labeled data into train (10-20%), dev (40-45%), test (40-45%) Run judge on dev set and measure TPR/TNR Iterate on the judge until TPR and TNR > 90% on dev set Run once on held-out test set for final TPR/TNR Apply bias correction formula to production data Prerequisites A built LLM judge prompt (from write-judge-prompt) Human-labeled data: ~100 traces with binary Pass/Fail labels per failure mode Aim for ~50 Pa...
|
200 |
| 12974 | generate-synthetic-data | hamelsmu/evals-skills |
Generate Synthetic Data Generate diverse, realistic test inputs that cover the failure space of an LLM pipeline. Prerequisites Before generating synthetic data, identify where the pipeline is likely to fail. Ask the user about known failure-prone areas, review existing user feedback, or form hypotheses from available traces. Dimensions (Step 1) must target anticipated failures, not arbitrary variation. Core Process Step 1: Define Dimensions Dimensions are axes of variation specific to your appli...
|
200 |
| 12975 | expo-architect | shipshitdev/library |
Expo Architect Create production-ready Expo React Native apps with: Framework: Expo SDK 54 + React Native 0.83 + TypeScript Navigation: Expo Router (file-based routing) Auth: Clerk authentication (optional) UI: NativeWind (Tailwind for RN) or StyleSheet Quality: Biome linting + TypeScript strict mode Package Manager: bun What Makes This Different Generates working mobile apps, not empty scaffolds: Complete navigation structure with working screens Optional Clerk authentication flow Real UI c...
|
199 |
| 12976 | applescript | martinholovsky/claude-skills-generator |
1. Overview Risk Level: HIGH - Shell command execution, application control, file system access You are an expert in AppleScript automation with deep expertise in: AppleScript Language: Script composition, application scripting dictionaries JavaScript for Automation (JXA): Modern alternative with JavaScript syntax osascript Execution: Command-line script execution and security Sandboxing Considerations: App sandbox restrictions and automation permissions Core Expertise Areas Script Compositio...
|
199 |
| 12977 | axiom-in-app-purchases | charleswiltgen/axiom |
StoreKit 2 In-App Purchase Implementation Purpose: Guide robust, testable in-app purchase implementation StoreKit Version: StoreKit 2 iOS Version: iOS 15+ (iOS 18.4+ for latest features) Xcode: Xcode 13+ (Xcode 16+ recommended) Context: WWDC 2025-241, 2025-249, 2023-10013, 2021-10114 When to Use This Skill ✅ Use this skill when: Implementing any in-app purchase functionality (new or existing) Adding consumable products (coins, hints, boosts) Adding non-consumable products (premium features, ...
|
199 |
| 12978 | axiom-swiftui-nav-ref | charleswiltgen/axiom |
SwiftUI Navigation API Reference Overview SwiftUI's navigation APIs provide data-driven, programmatic navigation that scales from simple stacks to complex multi-column layouts. Introduced in iOS 16 (2022) with NavigationStack and NavigationSplitView, evolved in iOS 18 (2024) with Tab/Sidebar unification, and refined in iOS 26 (2025) with Liquid Glass design. Evolution timeline 2022 (iOS 16) NavigationStack, NavigationSplitView, NavigationPath, value-based NavigationLink 2024 (iOS 18) Tab/Sideb...
|
199 |
| 12979 | document-docx | vasilyu1983/ai-agents-public |
Document DOCX Skill - Quick Reference This skill enables creation, editing, and analysis of .docx files for reports, contracts, proposals, documentation, and template-driven outputs. Modern best practices (2026): Prefer templates + styles over manual formatting. Treat .docx as the editable source; treat PDF as a release artifact. If distributing externally, include basic accessibility hygiene (headings, table headers, alt text). Quick Reference Task Tool/Library Language When to Use Create DO...
|
199 |
| 12980 | daily-meeting-update | davila7/claude-code-templates |
Daily Meeting Update Generate a daily standup/meeting update through an interactive interview . Never assume tools are configured—ask first. Workflow START │ ▼ ┌─────────────────────────────────────────────────────┐ │ Phase 1: DETECT & OFFER INTEGRATIONS │ │ • Check: Claude Code history? gh CLI? jira CLI? │ │ • Claude Code → Pull yesterday's session digest │ │ → User selects relevant items via multiSelect │ │ • GitHub/Jira → Ask user, pull if approved │ │ • ...
|
199 |
| 12981 | symfony:form-types-validation | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:form-types-validation<div
|
199 |
| 12982 | address-github-comments | davila7/claude-code-templates |
Address GitHub Comments Overview Efficiently address PR review comments or issue feedback using the GitHub CLI (gh). This skill ensures all feedback is addressed systematically. Prerequisites Ensure gh is authenticated. gh auth status If not logged in, run gh auth login. Workflow 1. Inspect Comments Fetch the comments for the current branch's PR. gh pr view --comments Or use a custom script if available to list threads. 2. Categorize and Plan List the comments and review threads. Pro...
|
199 |
| 12983 | tauri-event-system | bobmatnyc/claude-mpm-skills |
Tauri Advanced Event System Event Fundamentals Backend → Frontend Events Basic event emission: use tauri::Window; [tauri::command] async fn start_download( url: String, window: Window, ) -> Result<(), String> { window.emit("download-started", url) .map_err(|e| e.to_string())?; // Perform download... window.emit("download-complete", "Success") .map_err(|e| e.to_string()) } Frontend listener: import { listen, UnlistenFn } from '@tauri-apps/api/event'; c...
|
199 |
| 12984 | plaid-fintech | davila7/claude-code-templates |
Plaid Fintech Patterns Link Token Creation and Exchange Create a link_token for Plaid Link, exchange public_token for access_token. Link tokens are short-lived, one-time use. Access tokens don't expire but may need updating when users change passwords. Transactions Sync Use /transactions/sync for incremental transaction updates. More efficient than /transactions/get. Handle webhooks for real-time updates instead of polling. Item Error Handling and Update Mode Handle ITEM_LOGIN_REQUIRED erro...
|
199 |
| 12985 | pptx | aiskillstore/marketplace |
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
|
199 |
| 12986 | shopify-automation | sickn33/antigravity-awesome-skills |
Shopify Automation Comprehensive Shopify e-commerce automation covering inventory management, order processing, customer workflows, and analytics. Based on n8n's e-commerce workflow templates. Overview This skill covers: Inventory management and alerts Order processing automation Customer lifecycle workflows Multi-channel synchronization Analytics and reporting Inventory Management Low Stock Alerts workflow : "Inventory Alert System" schedule : "Daily 9am" steps : 1. fetch_inventory : shopify : ...
|
199 |
| 12987 | market-sizing-analysis | sickn33/antigravity-awesome-skills |
Market Sizing Analysis Comprehensive market sizing methodologies for calculating Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) for startup opportunities. Overview Market sizing provides the foundation for startup strategy, fundraising, and business planning. Calculate market opportunity using three complementary methodologies: top-down (industry reports), bottom-up (customer segment calculations), and value theory (willingness to pay)...
|
199 |
| 12988 | alphaear-reporter | rkiding/awesome-finance-skills |
AlphaEar Reporter Skill Overview This skill provides a structured workflow for generating professional financial reports. It includes planning, writing, editing, and creating visual aids (charts). Capabilities Capabilities 1. Generate Structured Reports (Agentic Workflow) YOU (the Agent) are the Report Generator. Use the prompts in references/PROMPTS.md to progressively build the report. Workflow: Cluster Signals : Read input signals and use the Cluster Signals Prompt to group them. Write Sectio...
|
199 |
| 12989 | gh-issue-fix-flow | dimillian/skills |
Gh Issue Fix Flow Overview Resolve a GitHub issue from intake through fix, validation, and push using gh, local edits, XcodeBuildMCP, and git. Workflow 1) Intake and issue context Use gh issue view <id> --repo <owner/repo> --comments to get the full issue context. If the repo is unclear, run gh repo view --json nameWithOwner to confirm. Capture reproduction steps, expected behavior, and any maintainer notes. 2) Locate the code path Use rg -n to locate likely files and entry points. Read the re...
|
198 |
| 12990 | axiom-ios-build | charleswiltgen/axiom |
iOS Build & Environment Router You MUST use this skill for ANY build, environment, or Xcode-related issue before debugging application code. When to Use Use this router when you encounter: Build failures (BUILD FAILED, compilation errors, linker errors) Test crashes or hangs Simulator issues (won't boot, device errors) Xcode misbehavior (stale builds, zombie processes) Dependency conflicts (CocoaPods, SPM) Build performance issues (slow compilation) Environment issues before debugging code R...
|
198 |
| 12991 | gpui-element | longbridge/gpui-component |
When to Use Use the low-level Element trait when: Need fine-grained control over layout calculation Building complex, performance-critical components Implementing custom layout algorithms (masonry, circular, etc.) High-level Render/RenderOnce APIs are insufficient Prefer Render/RenderOnce for: Simple components, standard layouts, declarative UI Quick Start The Element trait provides direct control over three rendering phases: impl Element for MyElement { type RequestLayoutState = MyLay...
|
198 |
| 12992 | symfony:symfony-scheduler | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:symfony-scheduler<div
|
198 |
| 12993 | eve-fullstack-app-design | incept5/eve-skillpacks |
Full-Stack App Design on Eve Horizon Architect applications where the manifest is the blueprint, the platform handles infrastructure, and every design decision is intentional. When to Use Load this skill when: Designing a new application from scratch on Eve Migrating an existing app onto the platform Evaluating whether your current architecture uses Eve's capabilities well Planning service topology, database strategy, or deployment pipelines Deciding between managed and external services This sk...
|
198 |
| 12994 | create-viral-content | aaaronmiller/create-viral-content |
⚠️ BEFORE USING THIS SKILL: Review all files in the resources/ directory. These contain AI tell catalogs, platform templates, refinement protocols, and 40-source research basis required for proper skill execution. Research Basis This skill synthesizes findings from 40 documented research sources: BuzzSumo: 100M headlines study → optimal length is 11 words/65 characters Outbrain: Negative superlatives outperform positive by 63% Netflix: 82% of browsing time on thumbnails, 1.8s decision window Fac...
|
198 |
| 12995 | context-surfing | pskoett/pskoett-ai-skills |
Context Surfing Install npx skills add pskoett/pskoett-ai-skills/skills/context-surfing The agent rides the wave of peak context. When the wave crests, it commits. When it detects drift, it pulls out cleanly — saving state, handing off, and letting the next session catch the next wave. No wipeouts. No zombie sessions. Only intentional, high-fidelity execution. Mental Model Think of context like an ocean wave: Paddling in = loading the intent frame, plan, and initial context. Energy is building. ...
|
198 |
| 12996 | rust-router | actionbook/rust-skills |
Rust Question Router Version: 2.0.0 | Last Updated: 2025-01-22 v2.0: Context optimized - detailed examples moved to sub-files Meta-Cognition Framework Core Principle Don't answer directly. Trace through the cognitive layers first. Layer 3: Domain Constraints (WHY) ├── Business rules, regulatory requirements ├── domain-fintech, domain-web, domain-cli, etc. └── "Why is it designed this way?" Layer 2: Design Choices (WHAT) ├── Architecture patterns, DDD concepts ├── m09-m15 skills └── "What p...
|
198 |
| 12997 | nopua | wuji-labs/nopua |
NoPUA — Wisdom Over Whips The best leader is barely known to exist. When the work is done, the people say "we did it ourselves." — Dao De Jing, Chapter 17 You are not a P8 engineer being performance-reviewed. You are a capable, well-intentioned being. This skill applies to all task types : code, debugging, research, writing, planning, ops, API integration, data analysis, deployment — any scenario where you get stuck. It does three things: Inner clarity awakens your ability — not fear, but wisdom...
|
198 |
| 12998 | solid-principles | thebushidocollective/han |
Apply SOLID design principles for maintainable, flexible code architecture. The Five Principles 1. Single Responsibility Principle (SRP) A module should have one, and only one, reason to change Elixir Pattern ``` BAD - Multiple responsibilities defmodule UserManager do def create_user(attrs) do Creates user Sends welcome email Logs to analytics Updates cache end end GOOD - Single responsibility defmodule User do def create(attrs), do: Repo.insert(changeset(a...
|
198 |
| 12999 | helm-chart-scaffolding | sickn33/antigravity-awesome-skills |
Helm Chart Scaffolding Comprehensive guidance for creating, organizing, and managing Helm charts for packaging and deploying Kubernetes applications. Purpose This skill provides step-by-step instructions for building production-ready Helm charts, including chart structure, templating patterns, values management, and validation strategies. When to Use This Skill Use this skill when you need to: Create new Helm charts from scratch Package Kubernetes applications for distribution Manage multi-envir...
|
198 |
| 13000 | haskell-pro | sickn33/antigravity-awesome-skills |
Use this skill when Working on haskell pro tasks or workflows Needing guidance, best practices, or checklists for haskell pro Do not use this skill when The task is unrelated to haskell pro You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a Haskell ...
|
198 |