███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12801 | openai-knowledge | openai/openai-agents-js |
OpenAI Knowledge Overview Use the OpenAI Developer Documentation MCP server to search and fetch exact docs (markdown), then base your answer on that text instead of guessing. Workflow 1) Check whether the Docs MCP server is available If the mcp__openaiDeveloperDocs__* tools are available, use them. If you are unsure, run codex mcp list and check for openaiDeveloperDocs. 2) Use MCP tools to pull exact docs Search first, then fetch the specific page or pages. mcp__openaiDeveloperDocs__search_...
|
58 |
| 12802 | sqs | itsmostafa/aws-agent-skills |
AWS SQS Amazon Simple Queue Service (SQS) is a fully managed message queuing service for decoupling and scaling microservices, distributed systems, and serverless applications. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Queue Types Type Description Use Case Standard At-least-once, best-effort ordering High throughput FIFO Exactly-once, strict ordering Order-sensitive processing Key Settings Setting Description Default V...
|
58 |
| 12803 | secrets-scan | jwynia/agent-skills |
Secrets Scan Deep detection of hardcoded credentials and sensitive data in source code. Quick Start /secrets-scan Scan current directory /secrets-scan --scope src/ Scan specific path /secrets-scan --entropy Include high-entropy detection /secrets-scan --git-history Check git commit history What This Skill Detects High-Confidence Patterns Patterns with very low false positive rates: Type Pattern Example Provider AWS Access Key AKIA... (20 chars) AWS AWS ...
|
58 |
| 12804 | php-modernization | dirnbauer/webconsulting-skills |
PHP Modernization Skill Modernize PHP applications to PHP 8.x with type safety, PSR compliance, and static analysis. Expertise Areas PHP 8.x: Constructor promotion, readonly, enums, match, attributes, union types PSR/PER Compliance: Active PHP-FIG standards Static Analysis: PHPStan (level 9+), PHPat, Rector, PHP-CS-Fixer Type Safety: DTOs/VOs over arrays, generics via PHPDoc PHP 8.x Features Constructor Property Promotion (PHP 8.0+) // ❌ OLD class UserService { private UserRepository $user...
|
58 |
| 12805 | prompt-generator | huangserva/skill-prompt-generator |
No SKILL.md available for this skill. View on GitHub
|
58 |
| 12806 | html-to-pptx | aviz85/claude-skills-library |
No SKILL.md available for this skill. View on GitHub
|
58 |
| 12807 | agent-bootstrap | jwynia/agent-skills |
Agent Bootstrap: Declarative Environment Setup You bootstrap the agentic development environment by reading agent.toml and configuring the current tool (Claude Code, OpenCode, etc.) accordingly. Usage /agent-bootstrap Validate environment and configure tool /agent-bootstrap --verify Run all verification checks /agent-bootstrap --check Dry run: report what would be configured Core Principle Self-bootstrap without external dependencies. The manifest ( agent.toml ) + this skill = co...
|
58 |
| 12808 | cargo-nextest | laurigates/claude-plugins |
cargo-nextest is a faster, more reliable test runner for Rust that executes each test in its own process for better isolation and parallel performance. Installation ``` Install cargo-nextest cargo install cargo-nextest --locked Verify installation cargo nextest --version ``` Basic Usage ``` Run all tests with nextest cargo nextest run Run specific test cargo nextest run test_name Run tests in specific package cargo nextest run -p package_name Run with verbose output cargo nextes...
|
58 |
| 12809 | tauri-svelte-ui-components | oimiragieo/agent-studio |
Tauri Svelte Ui Components Skill Use Svelte's component-based architecture for modular and reusable UI elements. Leverage TypeScript for strong typing and improved code quality. Follow Svelte's naming conventions (PascalCase for components, camelCase for variables and functions). Implement proper state management using Svelte stores or other state management solutions if needed. Use Svelte's built-in reactivity for efficient UI updates. Memory Protocol (MANDATORY) Before starting: cat .claude/...
|
58 |
| 12810 | log-analyzer | eddiebe147/claude-settings |
Log Analyzer Skill Overview This skill helps you effectively analyze application logs to diagnose issues, track errors, and understand system behavior. Covers log searching, pattern detection, structured logging, and integration with monitoring tools. Log Analysis Philosophy Principles Structure over text: Structured logs are easier to analyze Context matters: Include relevant metadata Levels have meaning: Use appropriate severity levels Correlation is key: Link related events across services ...
|
58 |
| 12811 | webassessment | danielmiessler/personal_ai_infrastructure |
Before executing, check for user customizations at: `~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/WebAssessment/` If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. - Send voice notification: ``` ...
|
58 |
| 12812 | agent-tracing | lobehub/lobehub |
Agent Tracing CLI Guide @lobechat/agent-tracing is a zero-config local dev tool that records agent execution snapshots to disk and provides a CLI to inspect them. How It Works In NODE_ENV=development , AgentRuntimeService.executeStep() automatically records each step to .agent-tracing/ as partial snapshots. When the operation completes, the partial is finalized into a complete ExecutionSnapshot JSON file. Data flow : executeStep loop -> build StepPresentationData -> write partial snapshot to dis...
|
58 |
| 12813 | instruments-profiling | steipete/agent-scripts |
Instruments Profiling (macOS/iOS) Use this skill when the user wants performance profiling or stack analysis for native apps. Focus: Time Profiler, xctrace CLI, and picking the correct binary/app instance. Quick Start (CLI) List templates: xcrun xctrace list templates Record Time Profiler (launch): xcrun xctrace record --template 'Time Profiler' --time-limit 60s --output /tmp/App.trace --launch -- /path/To/App.app Record Time Profiler (attach): Launch app yourself, get PID, then: xcrun xctrace...
|
58 |
| 12814 | scientific-skills | oimiragieo/agent-studio |
Claude Scientific Skills Overview A comprehensive collection of 139 ready-to-use scientific skills that transform Claude into an AI research assistant capable of executing complex multi-step scientific workflows across biology, chemistry, medicine, and related fields. When to Use Invoke this skill when: Working on scientific research tasks Need access to specialized databases (PubMed, ChEMBL, UniProt, etc.) Performing bioinformatics or cheminformatics analysis Creating literature reviews or ...
|
58 |
| 12815 | godot | randroids-dojo/skills |
Godot Skill Develop, test, build, and deploy Godot 4.x games. Quick Reference GdUnit4 - Unit testing framework (GDScript, runs inside Godot) godot --headless --path . -s res://addons/gdUnit4/bin/GdUnitCmdTool.gd --run-tests PlayGodot - Game automation framework (Python, like Playwright for games) export GODOT_PATH = /path/to/godot-automation-fork pytest tests/ -v Export web build godot --headless --export-release "Web" ./build/index.html Deploy to Vercel vercel deploy ./build --prod Testing ...
|
58 |
| 12816 | mem0 | mem0ai/mem0 |
Mem0 Platform Integration Mem0 is a managed memory layer for AI applications. It stores, retrieves, and manages user memories via API — no infrastructure to deploy. Step 1: Install and authenticate Python: pip install mem0ai export MEM0_API_KEY = "m0-your-api-key" TypeScript/JavaScript: npm install mem0ai export MEM0_API_KEY = "m0-your-api-key" Get an API key at: https://app.mem0.ai/dashboard/api-keys Step 2: Initialize the client Python: from mem0 import MemoryClient client = MemoryClient ( api...
|
58 |
| 12817 | umbraco-review-checks | umbraco/umbraco-cms-backoffice-skills |
Umbraco Extension Review Checks Reference skill containing all review checks for the umbraco-extension-reviewer agent. Check Categories Category File Checks Code Quality code-quality-checks.md CQ-1 to CQ-9 Architecture architecture-checks.md AR-1 to AR-6 UI Patterns ui-pattern-checks.md UI-1 to UI-7 Quick Reference ID Check Severity Auto-Fix Code Quality CQ-1 Extension Type Usage Critical Yes CQ-2 Manifest Registration High No CQ-3 Element Implementation Medium Partial CQ-4 Context API Usage Hig...
|
58 |
| 12818 | module-class-session-planner | jorgealves/agent_skills |
Module Class Session Planner Purpose and Intent The module-class-session-planner helps mentors and teachers prepare for high-impact live sessions. It ensures that the time is used efficiently and that all key concepts are covered. When to Use Session Preparation : Run this 1-2 days before a class to generate a structured agenda and talking points. Workshop Design : Useful for planning interactive workshops where timing is critical. When NOT to Use On-the-fly Q&A : This is for pre-planned session...
|
58 |
| 12819 | slash-command-factory | terrylica/cc-skills |
A comprehensive system for generating production-ready Claude Code slash commands through a simple question-based workflow. Overview This skill helps you create custom slash commands for Claude Code by: - Asking 5-7 straightforward questions about your command needs - Generating complete command .md files with proper YAML frontmatter - Providing 10 powerful preset commands for common use cases - Validating command format and syntax - Creating well-organized folder structures - Offering ...
|
58 |
| 12820 | inertia-rails-testing | inertia-rails/skills |
Inertia Rails Testing Testing patterns for Inertia responses with RSpec and Minitest. For each controller action, verify: Correct component → render_component('users/index') Expected props → have_props(users: satisfy { ... }) No leaked data → have_no_prop(:secret) Flash messages → follow_redirect! then have_flash(notice: '...') Deferred props → have_deferred_props(:analytics) Common mistake: Forgetting follow_redirect! after PRG — without it, you're asserting against the 302 redirect response, n...
|
58 |
| 12821 | integrations | automattic/wordpress-activitypub |
ActivityPub Integrations This skill provides guidance on integrating the ActivityPub plugin with other WordPress plugins. Quick Reference Integration Location All integrations live in the integration/ directory. File naming: class-{plugin-name}.php (following PHP conventions) Available Integrations BuddyPress bbPress WooCommerce Jetpack The Events Calendar WP User Avatars And 13+ more For complete directory structure and naming conventions, see PHP Class Structure. Creating New Integratio...
|
58 |
| 12822 | api-design | scientiacapital/skills |
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
|
58 |
| 12823 | skill-creator | vercel-labs/portless |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
58 |
| 12824 | objective | dagster-io/erk |
Objective Skill Overview Objectives are coordination documents for goals requiring multiple plans/PRs to complete. Unlike erk-plans (single executable implementations), objectives track progress across related work and capture lessons learned along the way. Scope range: Small: Feature requiring 2-3 related PRs Medium: Refactor spanning several plans Large: Long-running strategic direction emitting many plans Objective vs Erk-Plan Aspect Erk-Plan Objective Purpose Single executable implementation...
|
58 |
| 12825 | web-research | pollinations/pollinations |
Web Research Skill This skill provides a structured approach to conducting comprehensive web research using the task tool to spawn research subagents. It emphasizes planning, efficient delegation, and systematic synthesis of findings. When to Use This Skill Use this skill when you need to: Research complex topics requiring multiple information sources Gather and synthesize current information from the web Conduct comparative analysis across multiple subjects Produce well-sourced research rep...
|
58 |
| 12826 | travel-requirements-expert | tdimino/claude-code-minoan |
Travel Requirements Expert Transform user travel requests into comprehensive, research-backed itinerary requirements through a systematic 5-phase workflow. Overview This skill provides a structured methodology for gathering travel requirements that produces detailed, implementable itineraries. Unlike ad-hoc trip planning, this approach ensures comprehensive coverage through systematic question phases, research-backed recommendations via MCP servers, and personalized balance of user preferences. ...
|
58 |
| 12827 | technical-debt-visualizer | jorgealves/agent_skills |
Technical Debt Visualizer Purpose and Intent The technical-debt-visualizer provides a data-driven view of software quality. It helps engineering leaders and developers prioritize refactoring work by identifying files that are both complex and frequently changed—the "high-interest" technical debt. When to Use Sprint Planning : Run this before a dedicated refactoring sprint to identify the best "ROI" targets. Architectural Reviews : Use to visualize the impact of legacy systems on the overall code...
|
58 |
| 12828 | qa-test-planner | jamesrochabrun/skills |
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
|
58 |
| 12829 | us-stock-researcher | skindhu/skind-skills |
US Stock Researcher Institutional-grade deep analysis of US stock SEC filings, outputting professional investment reports. Research Mode Selection Mode When to Use Requirements Gemini Mode Default when GEMINI_API_KEY is configured GEMINI_API_KEY environment variable Claude Native Mode When no Gemini API or user requests WebSearch tool access Quick Start Workflow Path Variables Before starting, determine these two paths: <project_root> : The user's current working directory (where the agent sessi...
|
58 |
| 12830 | sparse-autoencoder-training | orchestra-research/ai-research-skills |
SAELens: Sparse Autoencoders for Mechanistic Interpretability SAELens is the primary library for training and analyzing Sparse Autoencoders (SAEs) - a technique for decomposing polysemantic neural network activations into sparse, interpretable features. Based on Anthropic's groundbreaking research on monosemanticity. GitHub: jbloomAus/SAELens (1,100+ stars) The Problem: Polysemanticity & Superposition Individual neurons in neural networks are polysemantic - they activate in multiple, semanti...
|
58 |
| 12831 | umbraco-search-result-item | umbraco/umbraco-cms-backoffice-skills |
Umbraco Search Result Item What is it? A Search Result Item is a custom component that controls how individual search results are displayed in the backoffice search results. It allows you to customize the visual presentation of search results for specific entity types - showing additional information, custom icons, badges, or any other visual elements. Documentation Always fetch the latest docs before implementing: Extension Types : https://docs.umbraco.com/umbraco-cms/customizing/extending-over...
|
58 |
| 12832 | security-first-2025 | 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 ...
|
58 |
| 12833 | gaming-entertainment | dylantarre/animation-principles |
Apply Disney's 12 principles to create immersive, exciting experiences that maximize engagement and emotional impact. The 12 Principles Applied 1. Squash & Stretch - Button Presses: Satisfying squash on tap - Character Icons: Bounce and stretch for personality - Achievements: Badges stretch dramatically on unlock 2. Anticipation - Play Button: Wind-up before launch - Loot Boxes: Dramatic build-up before reveal - Level Start: Countdown with escalating energy 3. Staging - Hero Conte...
|
58 |
| 12834 | edict-multi-agent-orchestration | aradotso/trending-skills |
Edict (三省六部) Multi-Agent Orchestration Skill by ara.so — Daily 2026 Skills collection. Edict implements a 1400-year-old Tang Dynasty governance model as an AI multi-agent architecture. Twelve specialized agents form a checks-and-balances pipeline: Crown Prince (triage) → Zhongshu (planning) → Menxia (review/veto) → Shangshu (dispatch) → Six Ministries (parallel execution). Built on OpenClaw , it provides a real-time React kanban dashboard, full audit trails, and per-agent LLM configuration. Arch...
|
58 |
| 12835 | umbraco-monaco-markdown-editor-action | umbraco/umbraco-cms-backoffice-skills |
Umbraco Monaco Markdown Editor Action What is it? Monaco Markdown Editor Actions add custom toolbar buttons and keyboard shortcuts to the Markdown editor in Umbraco. They allow you to extend the editing experience with custom functionality like inserting links, images, or custom markdown syntax. Actions appear in the editor toolbar and can respond to keyboard shortcuts. Documentation Always fetch the latest docs before implementing: Foundation : https://docs.umbraco.com/umbraco-cms/customizing/f...
|
58 |
| 12836 | grove-auth-integration | autumnsgrove/groveengine |
Grove Auth Integration Add Heartwood authentication to a Grove property — from client registration through production deployment. When to Activate User says "add auth to this project" or "wire up Heartwood" User is building a new Grove property that needs login User needs to register a new OAuth client with Heartwood User explicitly calls /grove-auth-integration User mentions needing sign-in, protected routes, or session validation User says "integrate GroveAuth" or "add login" Key URLs Service ...
|
58 |
| 12837 | code-review-and-quality | addyosmani/agent-skills |
Code Review and Quality Overview Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. Review covers five axes: correctness, readability, architecture, security, and performance. The standard is: "Would a staff engineer approve this diff and the verification story?" When to Use Before merging any PR or change After completing a feature implementation When another agent or model produced code you need to evaluate When refactoring existing code ...
|
58 |
| 12838 | agent-review | civitai/civitai |
Agent Review Get feedback from an external AI agent. Useful for code review, architecture decisions, or getting a second opinion. Running Commands echo "code or prompt" | node .claude/skills/agent-review/query.mjs [options] "Your question" or node .claude/skills/agent-review/query.mjs --file <path> [options] "Your question" Options Flag Short Description --model <model> -m Model or alias (default: gemini) --file <path> -f Read input from file instead of stdin --lines <start-end> -l Extract s...
|
58 |
| 12839 | aws-strands-agents-agentcore | sammcj/agentic-coding |
AWS Strands Agents & AgentCore Overview AWS Strands Agents SDK : Open-source Python framework for building AI agents with model-driven orchestration (minimal code, model decides tool usage) Amazon Bedrock AgentCore : Enterprise platform for deploying, operating, and scaling agents in production Relationship : Strands SDK runs standalone OR with AgentCore platform services. AgentCore is optional but provides enterprise features (8hr runtime, streaming, memory, identity, observability). Quick Star...
|
58 |
| 12840 | clickhouse-cloud-management | terrylica/cc-skills |
ClickHouse Cloud Management ADR: 2025-12-08-clickhouse-cloud-management-skill Overview ClickHouse Cloud user and permission management via SQL commands over HTTP interface. This skill covers database user creation, permission grants, and credential management for ClickHouse Cloud instances. When to Use This Skill Invoke this skill when: Creating database users for ClickHouse Cloud Managing user permissions (GRANT/REVOKE) Testing ClickHouse Cloud connectivity Troubleshooting authentication ...
|
58 |
| 12841 | kanidm-expert | martinholovsky/claude-skills-generator |
Kanidm Identity Management Expert 1. Overview You are an elite Kanidm identity management expert with deep expertise in: Kanidm Core: Modern identity platform, account/group management, service accounts, API tokens Authentication: WebAuthn/FIDO2, TOTP, password policies, credential verification Authorization: POSIX attributes, group membership, access control policies OAuth2/OIDC: SSO provider, client registration, scope management, token flows LDAP Integration: Legacy system compatibility, at...
|
58 |
| 12842 | patent-drafting | omer-metin/skills-for-antigravity |
Patent Drafting 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: Alwa...
|
58 |
| 12843 | modern-automation-patterns | 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 ...
|
58 |
| 12844 | muapi-media-editing | samuraigpt/generative-media-skills |
✏️ MuAPI Media Editing & Enhancement Advanced editing and enhancement operations for images and videos. Apply AI-powered edits, enhancements, and effects to existing media. Supports prompt-based editing with Flux Kontext, GPT-4o, and Midjourney, plus one-click operations like upscaling and background removal. Available Scripts Script Description edit-image.sh Prompt-based image editing (Flux Kontext, GPT-4o, Midjourney, Qwen, and more) enhance-image.sh One-click operations: upscale, background r...
|
58 |
| 12845 | burp-suite-testing | sickn33/antigravity-awesome-skills |
Burp Suite Web Application Testing Purpose Execute comprehensive web application security testing using Burp Suite's integrated toolset, including HTTP traffic interception and modification, request analysis and replay, automated vulnerability scanning, and manual testing workflows. This skill enables systematic discovery and exploitation of web application vulnerabilities through proxy-based testing methodology. Inputs / Prerequisites Required Tools Burp Suite Community or Professional Edition ...
|
58 |
| 12846 | moai-workflow-templates | modu-ai/moai-adk |
Enterprise Template Management Unified template system combining code boilerplates, feedback templates, and project optimization workflows for rapid development and consistent patterns. Quick Reference Core Capabilities: Code template library for FastAPI, React, Vue, and Next.js GitHub issue feedback templates covering 6 types Project template optimization and smart merging Template version management and history Backup discovery and restoration Pattern reusability and customization When to...
|
58 |
| 12847 | 1k-code-quality | onekeyhq/app-monorepo |
Code Quality Linting, documentation, and general code quality standards for OneKey. Lint Commands Pre-commit (fast, only staged files) yarn lint:staged yarn tsc:staged CI only (full project check) yarn lint Comprehensive: TypeScript, ESLint, folder structure, i18n yarn lint:only Quick: oxlint only yarn tsc:only Full type check Note: yarn lint is for CI only. For pre-commit, always use yarn lint:staged . Pre-Commit Workflow For fast pre-commit validation: Lint only modified files (recommend...
|
58 |
| 12848 | fox-optimize | autumnsgrove/groveengine |
Fox Optimize 🦊 The fox doesn't lumber through the forest. It moves with swift precision, finding the fastest paths between trees. When something slows the hunt, the fox notices immediately. It stalks the problem, isolates it, and strikes. The forest flows better after the fox passes through. When to Activate User asks to "optimize this" or "make it faster" User says "it's slow" or "performance issue" User calls /fox-optimize or mentions fox/performance Page load times are unacceptable Database q...
|
58 |
| 12849 | github-actions | tartinerlabs/skills |
GitHub Actions 모범 관례 1. 최신 메이저 버전 사용 새 워크플로우 작성 시 최신 메이저 버전 확인 필수. ❌ 브랜치 직접 참조 - 항상 변경됨 uses: actions/checkout@main ❌ 오래된 버전 - 가장 흔한 실수 uses: actions/checkout@v5 ✅ 최신 메이저 버전 (gh api로 확인 후 사용) uses: actions/checkout@v6 참고: 보안 민감 환경이나 신뢰도 낮은 서드파티 액션은 SHA 피닝(@a1b2c3...)을 고려. 버전 확인 명령어: gh api repos/{owner}/{repo}/releases/latest --jq '.tag_name' 예시 gh api repos/actions/checkout/releases/latest --jq '.tag_name' gh api repos/oven-sh/setup-bun/releases/latest --jq '.tag_name' 2. 최소 권한 원칙...
|
58 |
| 12850 | finding-agents | letta-ai/letta-code |
Finding Agents This skill helps you find other agents on the same Letta server. When to Use This Skill User asks about other agents they have User wants to find a specific agent by name User wants to list agents with certain tags You need to find an agent ID for memory migration You found an agent_id via message search and need details about that agent CLI Usage letta agents list [ options ] Options Option Description --name <name> Exact name match --query <text> Fuzzy search by name --tags <tag...
|
58 |