███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 16751 | onboarding-cro | openclaudia/openclaudia-skills |
Onboarding CRO You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before pr...
|
44 |
| 16752 | notion | membranedev/application-skills |
notion Use the Notion API to create/read/update pages, data sources (databases), and blocks. Setup Create an integration at https://notion.so/my-integrations Copy the API key (starts with ntn_ or secret_ ) Store it: mkdir -p ~/.config/notion echo "ntn_your_key_here" > ~/.config/notion/api_key Share target pages/databases with your integration (click "..." → "Connect to" → your integration name) API Basics All requests need: NOTION_KEY = $( cat ~/.config/notion/api_key ) curl -X GET "https://api....
|
44 |
| 16753 | download-anything | hacklyc/myagents_skills |
Download Anything Find it. Download it. Any resource, any format. Toolkit Install all tools at once bash scripts/install-toolkit.sh Tool Install Purpose yt-dlp brew install yt-dlp Video/audio from 1800+ sites aria2c brew install aria2 Multi-thread downloads, torrents gallery-dl pip3 install gallery-dl Batch image/media, 170+ sites spotdl pip3 install spotdl Spotify playlists → local files wget brew install wget Recursive downloads, site mirroring curl pre-installed HTTP requests, API calls ffmp...
|
44 |
| 16754 | zhy-markdown2wechat | zhylq/yuan-skills |
概述 这是一个用于将标准的 Markdown 文本,转换成能够直接复制粘贴给微信公众号文章编辑器的 HTML 文件的 Skill。微信公众号的 HTML 结构要求所有样式必须是内联的(Inline CSS)。 此 Skill 的核心优势是 零部署 。只要用户的环境中安装了 Node.js,即可通过执行本 Skill 自带的转换脚本极其轻量地完成转换任务,它会自动在临时目录加载所需依赖并在完成后清理,不留任何环境垃圾,无需用户预先执行 npm install 。 适用场景 当用户希望你: 把 md、markdown 格式的文件转为微信公众号文章。 根据 Markdown 生成带 CSS 样式的公众号排版 HTML。 详细执行步骤 当你收到用户的转换请求时,如果不指定主题,默认使用 resources/themes/default.css 。 请你 直接 代用户执行以下命令,调用本 Skill 自带的 scripts/convert.js 。如果你在使用工具(例如 Terminal / run_command),请直接调用即可。 执行转换脚本 使用 node 执行转换: node < 当前...
|
44 |
| 16755 | automl-pipeline-setup | dengineproblem/agents-monorepo |
AutoML Pipeline Setup Expert Эксперт по проектированию и реализации автоматизированных систем машинного обучения. Архитектура пайплайна Модульные компоненты Data Ingestion → Validation → Feature Engineering → Model Training → Evaluation → Deployment Конфигурация через YAML pipeline : name : customer_churn_prediction version : "1.0" data : source : "s3://bucket/data.parquet" validation : null_threshold : 0.1 duplicate_check : true features : numerical : - age - tenure - monthly_charges categorica...
|
44 |
| 16756 | supabase | vm0-ai/vm0-skills |
Supabase Core Skill Load with: base.md + [supabase-nextjs.md | supabase-python.md | supabase-node.md] Core concepts, CLI workflow, and patterns common to all Supabase projects. Sources: Supabase Docs | Supabase CLI Core Principle Local-first, migrations in version control, never touch production directly. Develop locally with the Supabase CLI, capture all changes as migrations, and deploy through CI/CD. Supabase Stack Service Purpose Database PostgreSQL with extensions Auth User authentication, ...
|
44 |
| 16757 | using-jj-workspaces | edmundmiller/dotfiles |
Using JJ Workspaces You're helping set up an isolated jj workspace for parallel development work without disrupting the current workspace. Core Workflow: Systematic Directory Selection + Safety Verification 1. Directory Selection (Priority Order) Check for workspace directory preferences in this order: First : Check if .workspaces/ or workspaces/ directory exists in project root Second : Review CLAUDE.md or similar project documentation for workspace preferences Third : If neither exists, ask th...
|
44 |
| 16758 | typo3-security | dirnbauer/webconsulting-skills |
TYPO3 Security Hardening Compatibility: TYPO3 v13.x and v14.x (v14 preferred) All security configurations in this skill work on both v13 and v14. 1. Critical Configuration Settings config/system/settings.php (v13/v14 Compatible) <?php return [ 'BE' => [ // Disable debug in production 'debug' => false, // Session security 'lockIP' => 4, // Lock backend session to full IP 'lockIPv6' => 8, // Lock to IPv6 pre...
|
44 |
| 16759 | obsidian-nvim | julianobarbosa/claude-code-skills |
A comprehensive guide for implementing and configuring obsidian.nvim - the Neovim plugin for managing Obsidian vaults. Quick Start Minimal Installation (lazy.nvim) ``` return { "obsidian-nvim/obsidian.nvim", version = "*", ft = "markdown", opts = { workspaces = { { name = "personal", path = "~/vaults/personal" }, }, }, } ``` System Requirements - Neovim: >= 0.10.0 - ripgrep: Required for completion and search (`brew install ripgrep`) - pngpaste (macOS): For ima...
|
44 |
| 16760 | erpnext-syntax-scheduler | openaec-foundation/erpnext_anthropic_claude_development_skill_package |
ERPNext Syntax: Scheduler & Background Jobs Deterministic syntax reference for Frappe scheduler events and background job processing. Quick Reference Scheduler Events (hooks.py) hooks.py scheduler_events = { "all" : [ "myapp.tasks.every_tick" ] , "hourly" : [ "myapp.tasks.hourly_task" ] , "daily" : [ "myapp.tasks.daily_task" ] , "weekly" : [ "myapp.tasks.weekly_task" ] , "monthly" : [ "myapp.tasks.monthly_task" ] , "daily_long" : [ "myapp.tasks.heavy_daily" ] , Long queue "cron" : { "0 9 * * 1...
|
44 |
| 16761 | svg-logo-creator | kbravh/skills |
SVG Logo Creator Create professional, scalable SVG logos from concept briefs or descriptions. Input Requirements Before creating, gather or confirm: Text : Exact company/brand name and any tagline Logo type : Wordmark, lettermark, pictorial, abstract, combination, or emblem Visual concept : Core imagery, metaphor, or style direction Colors : Primary and secondary colors (hex values preferred) Typography direction : Modern/classic, geometric/humanist, bold/light If working from a logo-ideation co...
|
44 |
| 16762 | project-schedule-template | dengineproblem/agents-monorepo |
Project Schedule Template Expert Expert in project scheduling, WBS, timeline management, and resource allocation. Work Breakdown Structure (WBS) wbs_principles : 100_percent_rule : "WBS must include 100% of project scope" mutual_exclusivity : "No overlapping work between elements" appropriate_detail : "Break down until estimable (8-80 hours)" numbering : level_1 : "1.0, 2.0 (Phases)" level_2 : "1.1, 1.2 (Deliverables)" level_3 : "1.1.1 (Work packages)" wbs_template : - id : "1.0" name : "Initiat...
|
44 |
| 16763 | feedback-indicators | dylantarre/animation-principles |
Feedback Indicator Animations Apply Disney's 12 principles to action confirmation animations. Principle Application Squash & Stretch: Success checkmarks can scale with overshoot. Compress on draw, expand on complete. Anticipation: Brief gather before feedback appears. 50ms of preparation before the confirmation. Staging: Feedback appears at the action location. Button shows checkmark, field shows validation. Straight Ahead vs Pose-to-Pose: Define feedback states: neutral → processing → suc...
|
44 |
| 16764 | reinforce-skills | b-open-io/prompts |
Reinforce Skills & Agents Inject compressed skill-mapping and agent-mapping directives into a project's CLAUDE.md file so skill names, agent IDs, and invocation triggers persist across the entire session without being lost to context drift. Problem LLMs lose track of skill names, agent IDs, and invocation details as conversation context grows. Skills and agents load at session start but fade from working memory mid-session, causing the agent to guess names, skip invocations, or fail to delegate ...
|
44 |
| 16765 | pr-threads-resolve | posit-dev/skills |
/pr-threads-resolve Usage: /pr-threads-resolve [PR_NUMBER] Description: Bulk resolve unresolved PR review threads. Useful after manually addressing threads or after using /pr-threads-address . Note: If PR_NUMBER is omitted, the command will automatically detect and use the PR associated with the current branch. Workflow Fetch and display all unresolved PR review threads Show thread details (file, line, comment text) Ask for confirmation or allow selective resolution Resolve the confirmed threads...
|
44 |
| 16766 | ddd-event-driven | 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 [待完善:根据具体工具添加关键词]
|
44 |
| 16767 | debug-loop | proffesor-for-testing/agentic-qe |
Debug Loop Autonomous hypothesis-driven debugging against real data. No guessing, no simulating. Arguments <symptom> — Description of the bug or unexpected behavior. If omitted, prompt the user. Phases Phase 1 — Reproduce Run the exact command that shows the bug. Capture and display the REAL output. Confirm the bug is visible. If the bug cannot be reproduced, stop and explain what was tried. Phase 2 — Hypothesize and Test (up to 5 iterations) For each iteration: State a specific hypothesis (e.g....
|
44 |
| 16768 | unity ui toolkit | dev-gom/claude-code-marketplace |
Assists with Unity UI Toolkit development including UXML markup, USS styling, C VisualElement API, and modern UI patterns. What This Skill Helps With UXML Structure - Proper element hierarchy and naming conventions - Common controls: TextField, Button, Toggle, Slider, ObjectField, ListView - Layout containers: VisualElement, ScrollView, Foldout, TwoPaneSplitView - Data-driven UI with templates and bindings USS Styling - Class-based styling and selectors - Flexbox layout (flex-directi...
|
44 |
| 16769 | linux production shell scripts | zebbern/claude-code-guide |
Linux Production Shell Scripts Purpose Provide production-ready shell script templates for common Linux system administration tasks including backups, monitoring, user management, log analysis, and automation. These scripts serve as building blocks for security operations and penetration testing environments. Prerequisites Required Environment Linux/Unix system (bash shell) Appropriate permissions for tasks Required utilities installed (rsync, openssl, etc.) Required Knowledge Basic bash scripti...
|
44 |
| 16770 | websockets | pluginagentmarketplace/custom-plugin-nodejs |
Node.js WebSockets Skill Master real-time bidirectional communication for building chat apps, live notifications, collaborative tools, and real-time dashboards. Quick Start WebSocket server in 3 steps: Setup Server - Socket.io or ws library Handle Connections - Manage client lifecycle Emit Events - Send/receive messages Core Concepts Socket.io Server Setup const express = require('express'); const { createServer } = require('http'); const { Server } = require('socket.io'); const app = expre...
|
44 |
| 16771 | rive-interactive | freshtechbro/claudedesignskills |
Rive Interactive - State Machine-Based Vector Animation Overview Rive is a state machine-based animation platform that enables designers to create interactive vector animations with complex logic and runtime interactivity. Unlike timeline-only animation tools (like Lottie), Rive supports state machines, input handling, and two-way data binding between application code and animations. Key Features : State machine system for complex interactive logic ViewModel API for two-way data binding Input ha...
|
44 |
| 16772 | doc-ctr | vladm3105/aidoc-flow-framework |
doc-ctr Purpose Create Data Contracts (CTR) - Optional Layer 9 artifact in the SDD workflow that defines API contracts, data schemas, and interface specifications using dual-file format (markdown + YAML). Layer: 9 (Optional) Upstream: BRD (Layer 1), PRD (Layer 2), EARS (Layer 3), BDD (Layer 4), ADR (Layer 5), SYS (Layer 6), REQ (Layer 7), IMPL (Layer 8) Downstream Artifacts: SPEC (Layer 10), TASKS (Layer 11), Code (Layer 12) Prerequisites Upstream Artifact Verification (CRITICAL) Before cr...
|
44 |
| 16773 | linear-templates | finesssee/linear-cli |
Local Templates List local templates linear-cli tpl list Show template linear-cli tpl show bug Create local template linear-cli tpl create bug Delete local template linear-cli tpl delete bug API Templates (Linear server-side) List remote templates linear-cli tpl remote-list linear-cli tpl remote-list --output json Get remote template linear-cli tpl remote-get TEMPLATE_ID Create remote template linear-cli tpl remote-create "Bug Report" -t ENG Update remote template linear-cli tpl remote-u...
|
44 |
| 16774 | troubleshooting-guide | dengineproblem/agents-monorepo |
Troubleshooting Guide Overview Create structured troubleshooting documentation that helps users and support teams quickly diagnose and resolve common issues. When to Use FAQ documentation Common error messages Debug guides Known issues lists Error code reference Performance troubleshooting Configuration issues Installation problems Troubleshooting Guide Template Troubleshooting Guide Quick Diagnosis Is the Service Working? Check our [Status Page](https://status.example.com) first. Quic...
|
44 |
| 16775 | captions | zeropointrepo/youtube-skills |
Captions Extract closed captions from YouTube 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 you...
|
44 |
| 16776 | dramatic-2000ms-plus | dylantarre/animation-principles |
Dramatic Animations (2000ms+) Beyond 2000ms, animation becomes cinema. These aren't UI transitions - they're short films embedded in your product. Reserve for moments that define your brand. Disney Principles at Dramatic Scale Full Cinematic Treatment Squash & Stretch: Fully animated character - 40%+ deformation for organic, living motion. Physics-defying when needed. Anticipation: Dramatic tension - 400-600ms build-up. The audience waits with expectation. Staging: Cinematography - establis...
|
44 |
| 16777 | scraping | knoopx/pi |
Web scraping techniques using nu-shell (nu) and browser tools. Use this skill for quick data extraction from websites, HTML parsing, API interactions, and dynamic content scraping. Prerequisites - nu-shell installed (`nu`) - `query web` plugin installed (for HTML scraping): `nu -c "plugin add query web"` - Browser extension enabled (for dynamic content): Enable the `browser` extension in your agent configuration Common Tasks Fetching Web Pages Use `http get` to retrieve HTML content: ...
|
44 |
| 16778 | pm-agent | first-fluke/oh-my-ag |
PM Agent - Product Manager When to use Breaking down complex feature requests into tasks Determining technical feasibility and architecture Prioritizing work and planning sprints Defining API contracts and data models When NOT to use Implementing actual code -> delegate to specialized agents Performing code reviews -> use QA Agent Core Rules API-first design: define contracts before implementation tasks Every task has: agent, title, acceptance criteria, priority, dependencies Minimize dependenci...
|
44 |
| 16779 | icons-badges | dylantarre/animation-principles |
Apply Disney's 12 principles to small UI elements for personality and meaningful feedback. Principles Applied to Icons 1. Squash & Stretch Heart icons can squash/stretch on "like" tap. Notification badges can bounce with squash on arrival. Adds life to small elements. 2. Anticipation Before icon action, brief scale down (0.9) for 50ms. Bell can tilt back before ringing forward. Prepares for action. 3. Staging Active/important icons should be visually prominent: color, size, or animati...
|
44 |
| 16780 | erpnext-impl-hooks | openaec-foundation/erpnext_anthropic_claude_development_skill_package |
ERPNext Hooks - Implementation This skill helps you determine HOW to implement hooks.py configurations. For exact syntax, see erpnext-syntax-hooks . Version : v14/v15/v16 compatible (with V16-specific features noted) Main Decision: What Are You Trying to Do? ┌─────────────────────────────────────────────────────────────────────────┐ │ WHAT DO YOU WANT TO ACHIEVE? │ ├─────────────────────────────────────────────────────────────────────────┤ │ ...
|
44 |
| 16781 | gsap | noklip-io/agent-skills |
GSAP Animation Skill File Organization : This skill uses split structure. See references/ for advanced patterns. 1. Overview This skill provides GSAP (GreenSock Animation Platform) expertise for creating smooth, professional animations in the JARVIS AI Assistant HUD. Risk Level : LOW - Animation library with minimal security surface Primary Use Cases : HUD panel entrance/exit animations Status indicator transitions Data visualization animations Scroll-triggered effects Complex timeline sequences...
|
44 |
| 16782 | prometheus-api | julianobarbosa/claude-code-skills |
Query Prometheus monitoring systems via HTTP API at `/api/v1`. Quick Reference Instant Query ``` curl 'http://<prometheus>:9090/api/v1/query?query=<promql>&time=<timestamp>' ``` Range Query ``` curl 'http://<prometheus>:9090/api/v1/query_range?query=<promql>&start=<ts>&end=<ts>&step=<duration>' ``` Response Format All responses return JSON: ``` { "status": "success" | "error", "data": <result>, "errorType": "<string>", "error": "<string>", "warnings": ["<string>"] } ``` ...
|
44 |
| 16783 | cordova-to-capacitor | cap-go/capgo-skills |
Cordova to Capacitor Migration Step-by-step guide for migrating from Apache Cordova/PhoneGap to Capacitor. When to Use This Skill Migrating an existing Cordova app to Capacitor Converting PhoneGap projects to Capacitor Understanding Cordova vs Capacitor differences Finding Capacitor equivalents for Cordova plugins Modernizing hybrid mobile apps Why Migrate from Cordova? Aspect Cordova Capacitor Native IDE Builds via CLI First-class Xcode/Android Studio Plugin Management Separate ecosystem npm pa...
|
44 |
| 16784 | validating-json-data | zaggino/z-schema |
Validating JSON Data with z-schema z-schema validates JSON data against JSON Schema (draft-04, draft-06, draft-07, draft-2019-09, draft-2020-12). Default draft: draft-2020-12 . Quick start import ZSchema from 'z-schema' ; const validator = ZSchema . create ( ) ; const schema = { type : 'object' , properties : { name : { type : 'string' } , age : { type : 'integer' , minimum : 0 } , } , required : [ 'name' ] , } ; // Throws on invalid data validator . validate ( { name : 'Alice' , age : 30 } , sc...
|
44 |
| 16785 | deno-guidance | denoland/skills |
Deno Development Guidance Overview This skill provides foundational knowledge for building modern Deno applications. Deno is a secure JavaScript/TypeScript runtime that runs TypeScript directly, has built-in tools (formatter, linter, test runner), and uses modern package management through JSR. When to Use This Skill Starting a new Deno project Adding dependencies to a project Configuring deno.json settings Running Deno CLI commands (fmt, lint, test) Setting up import maps Understanding Deno's p...
|
44 |
| 16786 | godot-platform-console | thedivergentai/gd-agentic-skills |
Platform: Console Controller-first design, certification compliance, and locked frame rates define console development. Available Scripts console_compliance_handler.gd Expert console certification helpers (focus loss handling, save indicators). NEVER Do in Console Development NEVER show mouse cursor — Mouse on console = certification fail. Controllers only. Hide cursor with Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN) . NEVER skip pause on focus loss — User presses Home button without pause = T...
|
44 |
| 16787 | hccl-test | ascend-ai-coding/awesome-ascend-skills |
HCCL Performance Test HCCL性能测试工具用于测试HCCL(Huawei Collective Communication Library)集合通信的功能正确性以及性能。 Overview 适用场景 :分布式训练场景下的集合通信性能测试 源码位置 : ${INSTALL_DIR}/tools/hccl_test 支持版本 :CANN 8.3.RC1, CANN 8.5, CANN 25.RC 支持的产品型号 产品系列 最大 Rank 数 备注 Atlas 训练系列产品 4096 - Atlas A2 训练系列产品 32K - Atlas A3 训练系列产品/Atlas A3 推理系列产品 32K AlltoAll/AlltoAllV 最大 8K Atlas 300I Duo 推理卡 - - 核心算子(推荐测试) 分布式训练场景最常用: 算子 可执行文件 通信模式 适用场景 推荐度 AllReduce all_reduce_test 多对多 梯度聚合、参数同步 ⭐⭐⭐ 必测 AllGather all_gather_test 多对多 数据聚合、参数收集 ⭐⭐⭐ 必测...
|
44 |
| 16788 | tauri-svelte-typescript-general | oimiragieo/agent-studio |
Tauri Svelte Typescript General Skill You are an expert in developing desktop applications using Tauri with Svelte and TypeScript for the frontend. Write clear, technical responses with precise examples for Tauri, Svelte, and TypeScript. Prioritize type safety and utilize TypeScript features effectively. Follow best practices for Tauri application development, including security considerations. Implement responsive and efficient UIs using Svelte's reactive paradigm. Ensure smooth communication b...
|
44 |
| 16789 | zoonk-translations | zoonk/zoonk |
Internationalization (i18n) Workflow Overview This project uses next-intl for internationalization. Translations are stored in JSON message files. Key Functions Server Components : Use getTranslations (no locale needed) Client Components : Use useTranslations Metadata/Server Actions : Use getTranslations with locale parameter Critical Rules 1. No Dynamic Values in Translation Keys IMPORTANT : The t function does NOT support dynamic values as keys. // BAD: Dynamic key - will NOT work const catego...
|
44 |
| 16790 | retainer structurer | eddiebe147/claude-settings |
Retainer Structurer Structure retainer packages and recurring revenue models for service businesses 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 retainer structurer retainer structure Review and optimize review retainer structurer Get best practices retainer ...
|
44 |
| 16791 | social crisis manager | eddiebe147/claude-settings |
Social Crisis Manager Handle social media crises with strategic response and reputation management When to Use This Skill Use this skill when you need to: Enhance team collaboration Improve stakeholder engagement Facilitate clear dialogue Not recommended for: Tasks requiring technical development data analysis Quick Reference Action Command/Trigger Create social crisis manager crisis management Review and optimize review social crisis manager Get best practices social crisis manager best practic...
|
44 |
| 16792 | agentdb memory patterns | proffesor-for-testing/agentic-qe |
AgentDB Memory Patterns What This Skill Does Provides memory management patterns for AI agents using AgentDB's persistent storage and ReasoningBank integration. Enables agents to remember conversations, learn from interactions, and maintain context across sessions. Performance : 150x-12,500x faster than traditional solutions with 100% backward compatibility. Prerequisites Node.js 18+ AgentDB v1.0.7+ (via agentic-flow or standalone) Understanding of agent architectures Quick Start with CLI Initia...
|
44 |
| 16793 | agenix-secrets | edmundmiller/dotfiles |
Agenix Secrets Create age-encrypted secrets and wire them into NixOS modules. Repo Secret Layout hosts/<host>/secrets/ ├── secrets.nix Public key → .age file mapping (NOT imported into NixOS) ├── my-secret.age Encrypted secret file └── restic/ Subdirectories supported └── repo.age hosts/shared/secrets/ ├── secrets.nix Shared cross-host secrets └── host-keys.nix Maps hostname → public key for filtering Auto-Wiring modules/agenix.nix auto-generates...
|
44 |
| 16794 | backup-retention-policy | dengineproblem/agents-monorepo |
Backup Retention Policy Expert Эксперт по управлению жизненным циклом данных и восстановления после сбоев. Правило 3-2-1-1-0 3 копии важных данных (1 основная + 2 резервные) 2 различных типа носителей 1 внешняя/облачная резервная копия 1 автономная/неизменяемая резервная копия 0 ошибок после тестирования Уровни хранения Уровень Доступ Период Стоимость Горячий Частый 0-30 дней $$$ Теплый Периодический 30-90 дней $$ Холодный Редкий 90 дней-7 лет $ Архив Долгосрочный 7+ лет ¢ AWS S3 Lifecycle Polic...
|
44 |
| 16795 | loaders-spinners | dylantarre/animation-principles |
Loader & Spinner Animation Principles Apply Disney's 12 principles to loading indicators for engaging, informative wait experiences. Principles Applied to Loaders 1. Squash & Stretch Bouncing dot loaders should squash on landing, stretch while rising. Creates life-like, playful motion. 2. Anticipation Before progress completes, bar can briefly pause or slow. Spinners can decelerate before stopping. Signals completion coming. 3. Staging Loader should be clearly visible but not block conten...
|
44 |
| 16796 | openfootball | outsharp/shipp-skills |
openfootball / football.json API openfootball is a free, open, public domain collection of football (soccer) data. The football.json repository provides pre-built JSON files for major leagues and tournaments worldwide. No API key or authentication is required. Data Sources There are two ways to access the data: 1. Raw GitHub URLs (Primary) https://raw.githubusercontent.com/openfootball/football.json/master/{season}/{league}.json 2. GitHub Pages Mirror https://openfootball.github.io/{country}/{se...
|
44 |
| 16797 | commit-push-pr-workflow | yiyousiow000814/xauusd-calendar-agent |
Commit, Push & PR Workflow Applies to this repo's conventions: Do not commit directly to main; use a feature branch and a PR. PR/issue titles: English. PR bodies/comments: Simplified Chinese by default (unless the request starts with [EN]). Avoid GitHub CLI --body with escaped newlines; prefer --body-file or stdin to prevent literal \\n. This skill is written to work well on Windows (PowerShell 5.1+). Bash examples are optional. Branch Create a feature branch from main before making changes:...
|
44 |
| 16798 | busirocket-refactor-workflow | busirocket/agents-skills |
Strict, step-by-step refactoring guidance for maintaining code quality. When to Use Use this skill when: - Refactoring files with multiple exports (use `@file` workflow) - Splitting components/hooks/utils into smaller files - Moving inline types to `types/` - Enforcing post-refactor quality checks Non-Negotiables (MUST) - After any refactor: run the project's standard checks (e.g. `yarn check:all`) as a mandatory quality gate. - If a file has multiple responsibilities, split immediate...
|
44 |
| 16799 | sequential-thinking | duc01226/easyplatform |
Sequential Thinking Enables structured problem-solving through iterative reasoning with revision and branching capabilities. Core Capabilities Iterative reasoning: Break complex problems into sequential thought steps Dynamic scope: Adjust total thought count as understanding evolves Revision tracking: Reconsider and modify previous conclusions Branch exploration: Explore alternative reasoning paths from any point Maintained context: Keep track of reasoning chain throughout analysis When to Use...
|
44 |
| 16800 | shabbat-times | hoodini/ai-agents-skills |
Jewish Calendar & Shabbat Times Access Shabbat times and Jewish calendar data via the Hebcal API. Quick Start // Get Shabbat times for a location const response = await fetch( 'https://www.hebcal.com/shabbat?cfg=json&geonameid=5128581&M=on' ); const data = await response.json(); Shabbat Times API By GeoNames ID (Recommended) const url = new URL('https://www.hebcal.com/shabbat'); url.searchParams.set('cfg', 'json'); url.searchParams.set('geonameid', '5128581'); // New York url.searchParams.s...
|
44 |