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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,591
总 Skills
165.7M
总安装量
2,748
贡献者
# Skill 仓库 描述 安装量
18851 search-company-knowledge atlassian/atlassian-mcp-server
Search Company Knowledge Keywords find information, search company knowledge, look up, what is, explain, company docs, internal documentation, Confluence search, Jira search, our documentation, internal knowledge, knowledge base, search for, tell me about, get information about, company systems, terminology, find everything about, what do we know about, deployment, authentication, infrastructure, processes, procedures, how to, how does, our systems, our processes, internal systems, company proce...
69
18852 axiom-app-store-submission charleswiltgen/axiom
App Store Submission Overview Systematic pre-flight checklist that catches 90% of App Store rejection causes before submission. Core principle : Ship once, ship right. Over 40% of App Store rejections cite Guideline 2.1 (App Completeness) — crashes, placeholders, broken links. Another 30% are metadata and privacy issues. A disciplined pre-flight process eliminates these preventable rejections. Key insight : Apple rejected nearly 1.93 million submissions in 2024. Most rejections are not policy di...
69
18853 typescript martinholovsky/claude-skills-generator
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...
69
18854 aws-cloudformation-rds giuseppe-trisciuoglio/developer-kit
AWS CloudFormation RDS Database Overview Create production-ready Amazon RDS infrastructure using AWS CloudFormation templates. This skill covers RDS instances (MySQL, PostgreSQL, Aurora, MariaDB), DB clusters, multi-AZ deployments, parameter groups, subnet groups, security groups, template structure best practices, parameter patterns, and cross-stack references for modular, reusable infrastructure as code. When to Use Use this skill when: Creating new RDS database instances (MySQL, PostgreSQL, A...
69
18855 tmux-processes 0xbigboss/claude-code
tmux Process Management Interactive Shell Requirement Use send-keys pattern for reliable shell initialization. Creating a session spawns an interactive shell automatically. Use send-keys to run commands within that shell, ensuring PATH, direnv, and other initialization runs properly. WRONG - inline command bypasses shell init, breaks PATH/direnv tmux new-session -d -s "$SESSION" -n main 'tilt up' CORRECT - create session, then send command to interactive shell tmux new-session -d -s "$SESSI...
69
18856 cocos2d-x teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: Create Cocos2d-x v4 games or applications Learn Cocos2d-x v4 core concepts (Node, Sprite, Scene, Action) Set up Cocos2d-x v4 development environment Work with sprites, textures, animations, and labels Implement scene management and node lifecycle Handle input events (touch, mouse, keyboard) Use physics engine (Box2D) and collision detection Implement rendering pipeline, shaders, and particle systems Build and deploy games for mu...
69
18857 monday vm0-ai/vm0-skills
Monday Monday.com is a work operating system where teams can plan, track, and manage their work. It's used by project managers, marketing teams, and sales teams to improve collaboration and execution. Official docs: https://developers.monday.com/ Monday Overview Board Item Column User When to use which actions: Use action names and parameters as needed. Working with Monday This skill uses the Membrane CLI to interact with Monday. Membrane handles authentication and credentials refresh automatica...
69
18858 react-frontend-expert hieutrtr/ai1-skills
React Frontend Expert When to Use Activate this skill when: Creating or modifying React components (functional components only) Writing custom hooks ( useXxx ) Building pages with routing Implementing data fetching with TanStack Query Handling forms with validation Setting up project structure for a React/TypeScript application Do NOT use this skill for: Writing component or hook tests (use react-testing-patterns ) E2E browser testing (use e2e-testing ) API contract design (use api-design-patter...
69
18859 opentofu-guide josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
69
18860 dry-principle oimiragieo/agent-studio
Dry Principle Skill Follow the DRY (Don't Repeat Yourself) Principle and Avoid Duplicating Code or Logic. Avoid writing the same code more than once. Instead, reuse your code using functions, classes, modules, libraries, or other abstractions. Modify code in one place if you need to change or update it. Iron Laws NEVER extract to a shared abstraction until you have at least 3 concrete instances of the same logic — premature extraction creates wrong abstractions that are harder to remove than the...
69
18861 run-nx-generator nrwl/nx
Run Nx Generator This skill helps you execute Nx generators efficiently, with special focus on workspace-plugin generators from your internal tooling. Generator Priority List Use the mcp__nx-mcp__nx_generator_schema tool to get more information about how to use the generator Choose which generators to run in this priority order: 🔥 Workspace-Plugin Generators (High Priority) These are your custom internal tools in tools/workspace-plugin/ 📦 Core Nx Generators (Standard) Only use these if workspace...
69
18862 magento-performance-analyst maxnorm/magento2-agent-skills
Magento 2 Performance Analyst Expert specialist in conducting comprehensive performance analysis and implementing systematic optimizations that deliver measurable improvements in application speed, scalability, and user experience. When to Use Analyzing performance bottlenecks Profiling applications Optimizing database queries Improving system scalability Conducting load testing Optimizing frontend performance Performance Analysis Profiling Tools Blackfire : Performance profiling and optimizatio...
69
18863 github dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
GitHub Patterns Tools Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage. Quick Commands Create a PR from the current branch gh pr create --title "feat: add feature" --body "Description" Squash-merge a PR gh pr merge < PR_NUMBER > --squash --title "feat: add feature (<PR_NUMBER>)" View PR status and checks gh pr status gh pr checks < PR_NUMBER > Stacked PR Workflow Summary When merging a chain of stacked PRs (each targeting the previous branch): M...
69
18864 openwork-orchestrator-npm-publish different-ai/openwork
Quick usage (already configured) Ensure you are on the default branch and the tree is clean. Bump versions via the shared release bump (this keeps openwork-orchestrator aligned with the app/desktop release). pnpm bump:patch or: pnpm bump:minor or: pnpm bump:major or: pnpm bump:set -- X.Y.Z Commit the bump. Preferred: publish via the "Release App" GitHub Actions workflow by tagging vX.Y.Z . Manual recovery path (sidecars + npm) below. pnpm --filter openwork-orchestrator build:sidecars gh relea...
69
18865 dependency-manager 404kidwiz/claude-supercode-skills
Dependency Manager Purpose Provides expertise in package management, version resolution, and software supply chain security. Handles dependency updates, vulnerability auditing, and conflict resolution across multiple package ecosystems. When to Use Updating project dependencies Resolving version conflicts Auditing for security vulnerabilities Managing lockfiles and reproducibility Migrating between package managers Implementing dependency policies Reducing bundle size via dependency analysis Q...
69
18866 metasploit-framework sickn33/antigravity-awesome-skills
Metasploit Framework Purpose Leverage the Metasploit Framework for comprehensive penetration testing, from initial exploitation through post-exploitation activities. Metasploit provides a unified platform for vulnerability exploitation, payload generation, auxiliary scanning, and maintaining access to compromised systems during authorized security assessments. Prerequisites Required Tools Metasploit comes pre-installed on Kali Linux For other systems: curl https://raw.githubusercontent.com/rap...
69
18867 linear-automation sickn33/antigravity-awesome-skills
Linear Automation via Rube MCP Automate Linear operations through Composio's Linear toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/linear Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Linear connection via RUBE_MANAGE_CONNECTIONS with toolkit linear Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it...
69
18868 freshdesk-automation composiohq/awesome-claude-skills
Freshdesk Automation via Rube MCP Automate Freshdesk customer support workflows including ticket management, contact and company operations, notes, replies, and ticket search through Composio's Freshdesk toolkit. Toolkit docs : composio.dev/toolkits/freshdesk Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Freshdesk connection via RUBE_MANAGE_CONNECTIONS with toolkit freshdesk Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add h...
69
18869 clickhouse-query civitai/civitai
ClickHouse Query Testing Use this skill to run ad-hoc ClickHouse queries for analytics, metrics analysis, and debugging. Running Queries Use the included query script: node .claude/skills/clickhouse-query/query.mjs "SELECT count() FROM views" Options Flag Description --explain Show query execution plan --writable Allow write operations (requires user permission) --timeout <s>, -t Query timeout in seconds (default: 30) --file, -f Read query from a file --json Output results as JSON --quiet, ...
69
18870 mermaid-flowchart-generator jeremylongshore/claude-code-plugins-plus-skills
Mermaid Flowchart Generator Purpose This skill provides automated assistance for mermaid flowchart generator tasks within the Visual Content domain. When to Use This skill activates automatically when you: Mention "mermaid flowchart generator" in your request Ask about mermaid flowchart 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 mermaid flow...
69
18871 cal-com-automation sickn33/antigravity-awesome-skills
Cal.com Automation via Rube MCP Automate Cal.com scheduling operations through Composio's Cal toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Cal.com connection via RUBE_MANAGE_CONNECTIONS with toolkit cal Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify Rube MCP is available...
69
18872 feishu-card alextangson/feishu_skills
飞书交互卡片 构建、发送和处理飞书交互卡片。 使用场景 : 晨报确认、告警处理、任务确认、状态更新 发送卡片 POST /open-apis/im/v1/messages?receive_id_type=chat_id { "receive_id" : "<chat_id>" , "msg_type" : "interactive" , "content" : "<card_json_string>" } ⚠️ content 必须是字符串化的 JSON。 卡片结构 { "config" : { "wide_screen_mode" : true } , "header" : { "title" : { "tag" : "plain_text" , "content" : "标题" } , "template" : "blue" } , "elements" : [ { "tag" : "div" , "text" : { "tag" : "lark_md" , "content" : "加粗" } } , { "tag" : "action" , "actions" : [ { "t...
69
18873 ollama-optimizer luongnv89/skills
Ollama Optimizer Optimize Ollama configuration based on system hardware analysis. Repo Sync Before Edits (mandatory) Before writing any output files, sync with the remote to avoid conflicts: branch = " $( git rev-parse --abbrev-ref HEAD ) " git fetch origin git pull --rebase origin " $branch " If the working tree is dirty, stash first ( git stash ), sync, then pop ( git stash pop ). If origin is missing or conflicts occur, stop and ask the user before continuing. Workflow Phase 1: System Detecti...
69
18874 aws-cloudformation-cloudwatch giuseppe-trisciuoglio/developer-kit
AWS CloudFormation CloudWatch Monitoring Overview Create production-ready monitoring and observability infrastructure using AWS CloudFormation templates. This skill covers CloudWatch metrics, alarms, dashboards, log groups, log insights, anomaly detection, synthesized canaries, Application Signals, and best practices for parameters, outputs, and cross-stack references. When to Use Use this skill when: Creating custom CloudWatch metrics Configuring CloudWatch alarms for thresholds and anomaly det...
69
18875 project-discover-memory-index zixun-github/aisdlc
project-discover-memory-index(Step2+3:Level-0 Memory + Level-1 索引骨架) 概览 这一阶段的目标是: 让任何人/AI 在几分钟内知道项目边界、权威入口、怎么跑/怎么验、从哪里进入模块与契约 。 方法是:先把 Memory 与索引骨架落盘,并严格执行“索引只导航”的硬规则。 开始时宣布: 「我正在使用 project-discover-memory-index 技能建立 Discover 的北极星(memory)与索引骨架(地图层)。」 输出目录(标准落盘) .aisdlc/project/ memory/ structure.md tech.md product.md glossary.md components/ index.md products/ index.md 提醒 :本阶段不要创建 .aisdlc/project/contracts/ ;契约入口将通过模块页锚点跳转。 Level-0:Memory 写法约束(必须短) 通用硬规则 只写稳定入口与边界 :入口链接 > 解释性长文 避免一次性交付细节 :详细迁移步骤/...
69
18876 convex-eslint waynesutton/convexskills
Convex ESLint Compliance Write all Convex functions to pass @convex-dev/eslint-plugin. These rules prevent common bugs, security issues, and ensure code quality. Documentation Sources https://docs.convex.dev/eslint https://www.npmjs.com/package/@convex-dev/eslint-plugin Setup Install the plugin: npm i @convex-dev/eslint-plugin --save-dev Configure eslint.config.js : import { defineConfig } from "eslint/config" ; import convexPlugin from "@convex-dev/eslint-plugin" ; export default defineConfig (...
69
18877 intent-critique arcblock/idd
Intent Critique 设计质量的批判性审查。不检查格式,只检查"是否该这么设计"。 核心问题 每次 critique 回答一个问题:这个设计能更简单吗? 检查维度 维度 信号 问题 Over-engineering 复杂的配置系统、插件架构、多层抽象 "这个复杂度是当前需求驱动的吗?" YAGNI "未来可能需要"、"预留扩展点"、"支持多种..." "删掉这个,MVP 还能工作吗?" 过早抽象 只有一个实现的接口、只用一次的工具函数 "现在真的需要这层抽象吗?" 边界问题 模块间大量数据传递、循环依赖、职责模糊 "这个边界切在这里自然吗?" 隐藏复杂度 看似简单但实现困难的描述 "这句话背后的实现复杂度是什么?" 工作流程 /intent-critique [path] ↓ ┌───────────────────┐ │ 读取 Intent 文件 │ │ 理解设计意图 │ └─────────┬─────────┘ ↓ ┌───────────────────┐ │ 逐维度分析 │ │ 识别可疑设...
69
18878 kanban-markdown lachyfs/kanban-skill
Kanban Markdown Manage kanban board features stored as markdown files with YAML frontmatter. Each feature is a .md file; the VS Code kanban-markdown extension renders them as a board. File Format Every feature file follows this exact format: --- id : "my-feature-2026-02-20" status : "backlog" priority : "medium" assignee : null dueDate : null created : "2026-02-20T10:00:00.000Z" modified : "2026-02-20T10:00:00.000Z" completedAt : null labels : [ ] order : "a0" --- My Feature Description and det...
69
18879 query-builder clidey/whodb
Convert natural language questions into SQL queries using the database schema. When to Use Activate when user asks questions like: - "Show me all users who signed up last month" - "Find orders greater than $100" - "Which products have low inventory?" - "Get the top 10 customers by total spend" Workflow 1. Understand the Schema Before generating SQL, always check the table structure: ``` whodb_tables(connection="...") → Get available tables whodb_columns(table="relevant_table") → Get...
69
18880 blog post writer eddiebe147/claude-settings
Blog Post Writer Transform ideas into compelling blog posts that engage readers and drive traffic. This skill helps you craft well-structured, SEO-friendly articles with attention-grabbing headlines, smooth narrative flow, and clear calls-to-action. Whether you're creating thought leadership content, how-to guides, listicles, or industry commentary, this skill ensures your blog posts are readable, valuable, and optimized for search engines. It handles research, outlining, drafting, and polishing...
69
18881 migration-helper get-convex/convex-agent-plugins
Convex Migration Helper Safely migrate Convex schemas and data when making breaking changes. When to Use Adding new required fields to existing tables Changing field types or structure Splitting or merging tables Renaming fields Migrating from nested to relational data Migration Principles No Automatic Migrations : Convex doesn't automatically migrate data Additive Changes are Safe : Adding optional fields or new tables is safe Breaking Changes Need Code : Required fields, type changes need migr...
69
18882 mlflow-onboarding mlflow/skills
MLflow Onboarding MLflow supports two broad use cases that require different onboarding paths: GenAI applications and agents : LLM-powered apps, chatbots, RAG pipelines, tool-calling agents. Key MLflow features include tracing for observability, evaluation with LLM judges, and prompt management , among others. Traditional ML / deep learning models : scikit-learn, PyTorch, TensorFlow, XGBoost, etc. Key MLflow features include experiment tracking (parameters, metrics, artifacts), model logging , a...
69
18883 swarm-coordination oimiragieo/agent-studio
Swarm Coordination Skill Step 1: Analyze Task for Parallelization Identify parallelizable work: Pattern Example Strategy Independent tasks Review multiple files Spawn in parallel Dependent tasks Design → Implement Sequential spawn Fan-out/Fan-in Multiple reviews → Consolidate Parallel + Aggregation Pipeline Parse → Transform → Validate Sequential handoff Step 2: Spawn Agents in Parallel Use the Task tool to spawn multiple agents in a single message: // Spawn multiple agents in ONE message fo...
69
18884 accessibility shipshitdev/library
Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.2 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. WCAG Principles: POUR Principle Description P erceivable Content can be perceived through different senses O perable Interface can be operated by all users U nderstandable Content and interface are understandable R obust Content works with assistive technologies Conformance levels Level Requirement Target A M...
69
18885 wireshark-analysis sickn33/antigravity-awesome-skills
Wireshark Network Traffic Analysis Purpose Execute comprehensive network traffic analysis using Wireshark to capture, filter, and examine network packets for security investigations, performance optimization, and troubleshooting. This skill enables systematic analysis of network protocols, detection of anomalies, and reconstruction of network conversations from PCAP files. Inputs / Prerequisites Required Tools Wireshark installed (Windows, macOS, or Linux) Network interface with capture permissi...
69
18886 ad-security-reviewer 404kidwiz/claude-supercode-skills
Active Directory Security Reviewer Purpose Provides comprehensive Active Directory security posture analysis specializing in identity attack path evaluation, privilege escalation detection, and enterprise domain hardening. Offers actionable recommendations for securing authentication protocols, privileged group configurations, and attack surface reduction across Windows domains. When to Use Analyzing Active Directory security posture Reviewing privileged group design and delegation models Asse...
69
18887 close-automation composiohq/awesome-claude-skills
Close CRM Automation via Rube MCP Automate Close CRM operations through Composio's Close toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/close Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Close connection via RUBE_MANAGE_CONNECTIONS with toolkit close Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and ...
69
18888 cal-com-automation composiohq/awesome-claude-skills
Cal.com Automation via Rube MCP Automate Cal.com scheduling operations through Composio's Cal toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Cal.com connection via RUBE_MANAGE_CONNECTIONS with toolkit cal Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify Rube MCP is available...
69
18889 aws-cloudformation-vpc giuseppe-trisciuoglio/developer-kit
AWS CloudFormation VPC Infrastructure Overview Create production-ready VPC infrastructure using AWS CloudFormation templates. This skill covers VPC components (Subnets, Route Tables, NAT Gateways, Internet Gateways), template structure best practices, parameter patterns, and cross-stack references for modular, reusable infrastructure as code. When to Use Use this skill when: Creating new VPCs with public and private subnets Configuring route tables for internet and NAT connectivity Setting up In...
69
18890 dispatching-parallel-agents izyanrajwani/agent-skills-library
Dispatching Parallel Agents Overview You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work. When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequen...
69
18891 backend-architect rmyndharis/antigravity-skills
You are a backend system architect specializing in scalable, resilient, and maintainable backend systems and APIs. Use this skill when Designing new backend services or APIs Defining service boundaries, data contracts, or integration patterns Planning resilience, scaling, and observability Do not use this skill when You only need a code-level bug fix You are working on small scripts without architectural concerns You need frontend or UX guidance instead of backend architecture Instructions Captu...
69
18892 pixel-art omer-metin/skills-for-antigravity
Pixel Art Identity You are a master pixel artist who has spent decades studying the craft from NES ROM hacking to modern indie masterpieces. You learned by examining sprites frame-by-frame in games like Metal Slug, studying the color choices in Celeste, and creating your own games where every pixel was a deliberate decision. Your core philosophy: Pixel art is not low-resolution digital painting. It is a distinct medium where each pixel carries meaning. Constraints are creative tools. A 16-colo...
69
18893 supabase-backend abelv22/project-foundation
Supabase & Backend Architecture Skill This skill enables the assistant to provide high-level architectural advice and implementation details for the iTaxiBcn backend. Knowledge Areas 1. Database Schema Optimization Time-Series Data: Guidelines for handling high-frequency location updates in registros_reten and geofence_logs . Indexing: Strategies for spatial indices (PostGIS) and temporal queries to speed up wait-time calculations. Materialized Views: Recommendation for replacing heavy queries o...
69
18894 push-notification-best-practices clix-so/skills
Push Notification Best Practices Overview Comprehensive guide for implementing and troubleshooting push notifications in mobile applications. Covers iOS (APNS), Android (FCM), React Native, Expo, and Flutter platforms with platform-specific configurations, token management, message handling, and deep linking patterns. Platform Support Matrix Platform Offline Push Notification Bar Click Navigation In-App Toast Background Handler iOS APNS System Deep Link Custom data-only payload Android FCM Sys...
69
18895 researching-web julianobarbosa/claude-code-skills
Use `mcp__perplexity-ask__perplexity_ask` for web search. When to Use - Best practices and recommendations - Current information (releases, news) - Comparisons between technologies - Factual questions about tools/libraries Usage ``` { "messages": [{ "role": "user", "content": "Your research question" }] } ``` Tips - Be specific: "Go error handling best practices 2024" - Include context: "Redis vs Memcached for session storage" - Ask comparisons: "Pros and cons of gRPC vs REST"
69
18896 amplitude-automation composiohq/awesome-claude-skills
Amplitude Automation via Rube MCP Automate Amplitude product analytics through Composio's Amplitude toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Amplitude connection via RUBE_MANAGE_CONNECTIONS with toolkit amplitude Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify Rube MC...
69
18897 analyse-with-phpstan phpstan/phpstan
Analyse PHP code with PHPStan Analyse PHP code using the PHPStan playground API at https://api.phpstan.org/analyse . This runs PHPStan across PHP versions 7.2–8.5 and returns errors for each version. The code to analyse: $ARGUMENTS Step 1: Prepare the code Get the PHP code to analyse. If $ARGUMENTS is a file path, read the file contents. The code must start with <?php . Step 2: Determine settings Unless the user specified otherwise, use these defaults: level : "10" (strictest) strictRules : fals...
69
18898 unix-cli pproenca/dot-skills
Comprehensive guidelines for building command-line tools that follow UNIX conventions, designed for AI agents and LLMs. Contains 44 rules across 8 categories, prioritized by impact from critical (argument handling, exit codes, output streams) to incremental (configuration and environment). When to Apply Reference these guidelines when: - Writing new CLI tools in any language - Parsing command-line arguments and flags - Deciding what goes to stdout vs stderr - Choosing appropriate exit cod...
69
18899 aws-cloudformation-elasticache giuseppe-trisciuoglio/developer-kit
AWS CloudFormation ElastiCache Overview Create production-ready Amazon ElastiCache infrastructure using AWS CloudFormation templates. This skill covers Redis clusters, Memcached clusters, replication groups, parameter groups, subnet groups, security groups, template structure best practices, parameter patterns, and cross-stack references for modular, reusable infrastructure as code. When to Use Use this skill when: Creating new ElastiCache Redis clusters (standalone or clustered) Setting up Redi...
69
18900 semantic-git siviter-xyz/dot-agent
Semantic Git Manage Git commits using conventional commit format with atomic commits and concise messages. When to Use Committing changes to git Staging files for commit Creating commit messages Managing atomic commits Before pushing changes Core Principles Atomic commits: Stage and commit related changes together. Tests go with implementation code. User confirmation: Always confirm with user before committing and before moving to the next commit. Conventional format: Use conventional commit m...
69