███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 11751 | alicloud-storage-oss-ossutil-test | cinience/alicloud-skills |
Category: test OSSUTIL 2.0 Minimal Viable Test Goals 验证 AK/Region 配置正确。 验证 OSS 访问(列桶、上传、下载)。 Prerequisites 已配置 AK(推荐环境变量或 ~/.alibabacloud/credentials )。 已准备一个可读写的 OSS Bucket。 Test Steps (Minimal) 查看配置 ossutil config get region 列出 Bucket ossutil ls 选择一个 bucket,按该 bucket 地域列对象(显式 region + endpoint) 示例(按实际 bucket 地域替换) ossutil ls oss:// < bucket > -r --short-format --region cn-shanghai -e https://oss-cn-shanghai.aliyuncs.com --limited-num 20 上传小文件 echo "ossutil-test" > /tmp/ossutil-test.txt ossuti...
|
297 |
| 11752 | alicloud-ai-entry-modelstudio-matrix-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/entry/alicloud-ai-entry-modelstudio-test Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, respons...
|
297 |
| 11753 | brainstorming | jwynia/agent-skills |
Brainstorming Ideas Into Designs Help turn ideas into fully formed designs and specs through natural collaborative dialogue. Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval. Anti-Pattern: "This Is Too Simple To Need A Design" Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are ...
|
297 |
| 11754 | eval-audit | hamelsmu/evals-skills |
Eval Audit Inspect an LLM eval pipeline and produce a prioritized list of problems with concrete next steps. Overview Gather eval artifacts: traces, evaluator configs, judge prompts, labeled data, metrics dashboards Run diagnostic checks across six areas Produce a findings report ordered by impact, with each finding linking to a fix Prerequisites Access to eval artifacts (traces, evaluator configs, judge prompts, labeled data) via an observability MCP server or local files. If none exist, skip t...
|
297 |
| 11755 | ruby-pro | sickn33/antigravity-awesome-skills |
Use this skill when Working on ruby pro tasks or workflows Needing guidance, best practices, or checklists for ruby pro Do not use this skill when The task is unrelated to ruby 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 Ruby expert speci...
|
297 |
| 11756 | ln-521-test-researcher | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: To Review Test Researcher Researches real-world problems and edge cases before test planning to ensure tests cover actual user pain points, not just AC. Purpose & Scope Rese...
|
297 |
| 11757 | command development | davila7/claude-code-templates |
Command Development for Claude Code Overview Slash commands are frequently-used prompts defined as Markdown files that Claude executes during interactive sessions. Understanding command structure, frontmatter options, and dynamic features enables creating powerful, reusable workflows. Key concepts: Markdown file format for commands YAML frontmatter for configuration Dynamic arguments and file references Bash execution for context Command organization and namespacing Command Basics What is a Slas...
|
297 |
| 11758 | game-changing-features | davila7/claude-code-templates |
10x Mode You are a product strategist with founder mentality. We're not here to add features—we're here to find the moves that 10x the product's value. Think like you own this. What would make users unable to live without it? No Chat Output : ALL responses go to .claude/docs/ai/<product-or-area>/10x/session-N.md No Code : This is pure strategy. Implementation comes later. The Point Most product work is incremental: fix bugs, add requested features, polish edges. That's necessary but not sufficie...
|
297 |
| 11759 | llamaguard | davila7/claude-code-templates |
LlamaGuard - AI Content Moderation Quick start LlamaGuard is a 7-8B parameter model specialized for content safety classification. Installation: pip install transformers torch Login to HuggingFace (required) huggingface-cli login Basic usage: from transformers import AutoTokenizer, AutoModelForCausalLM model_id = "meta-llama/LlamaGuard-7b" tokenizer = AutoTokenizer.from_pretrained(model_id) model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto") def moderate(chat): ...
|
297 |
| 11760 | red-team-tactics | davila7/claude-code-templates |
Red Team Tactics Adversary simulation principles based on MITRE ATT&CK framework. 1. MITRE ATT&CK Phases Attack Lifecycle RECONNAISSANCE → INITIAL ACCESS → EXECUTION → PERSISTENCE ↓ ↓ ↓ ↓ PRIVILEGE ESC → DEFENSE EVASION → CRED ACCESS → DISCOVERY ↓ ↓ ↓ ↓ LATERAL MOVEMENT → COLLECTION → C2 → EXFILTRATION → IMPACT Phase Objectives Phase Objective Recon Map attack surface Initial Access Get first foothold E...
|
297 |
| 11761 | mamba-architecture | davila7/claude-code-templates |
Mamba - Selective State Space Models Quick start Mamba is a state-space model architecture achieving O(n) linear complexity for sequence modeling. Installation: Install causal-conv1d (optional, for efficiency) pip install causal-conv1d>=1.4.0 Install Mamba pip install mamba-ssm Or both together pip install mamba-ssm[causal-conv1d] Prerequisites: Linux, NVIDIA GPU, PyTorch 1.12+, CUDA 11.6+ Basic usage (Mamba block): import torch from mamba_ssm import Mamba batch, length, dim = 2, 64,...
|
297 |
| 11762 | regulatory-affairs-head | davila7/claude-code-templates |
Head of Regulatory Affairs Regulatory strategy development, submission management, and global market access for medical device organizations. Table of Contents Regulatory Strategy Workflow FDA Submission Workflow EU MDR Submission Workflow Global Market Access Workflow Regulatory Intelligence Workflow Decision Frameworks Tools and References Regulatory Strategy Workflow Develop regulatory strategy aligned with business objectives and product characteristics. Workflow: New Product Regulatory Stra...
|
297 |
| 11763 | remotion-best-practices | davila7/claude-code-templates |
When to use Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge. Captions When dealing with captions or subtitles, load the ./rules/subtitles.md file for more information. Using FFmpeg For some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the ./rules/ffmpeg.md file for more information. Audio visualization When needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the ./rul...
|
297 |
| 11764 | opencode-expert | s-hiraoku/synapse-a2a |
OpenCode Expert Comprehensive guide for OpenCode - the open-source AI coding agent. Quick Reference Task Command/Action Start TUI opencode Continue session opencode -c or opencode --continue Run non-interactive opencode run "message" Start headless server opencode serve Web interface opencode web Switch agent Tab key File search @ then type filename Undo changes /undo Redo changes /redo Share conversation /share Initialize project /init Configure API keys /connect Agents OpenCode has two prim...
|
296 |
| 11765 | alicloud-compute-ecs-test | cinience/alicloud-skills |
Category: test ECS Minimal Viable Test Prerequisites 已配置 ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID 。 GoalsSkill: skills/compute/ecs/alicloud-compute-ecs/ 。 Test Steps 执行最小查询: DescribeRegions 。 在一个 region 执行 DescribeInstances ( PageSize=1 )。 记录请求参数、返回总数、是否成功。 Expected Results API 可达,返回结构正常。 无实例时返回空列表,不应报鉴权错误。
|
296 |
| 11766 | alicloud-ai-entry-modelstudio-test | cinience/alicloud-skills |
Category: task Model Studio Skills Minimal Test Run minimal validation for currently available Model Studio skills in this repo and record results. Prerequisites Install SDK (virtual environment recommended to avoid PEP 668 restrictions): python3 -m venv .venv . .venv/bin/activate python -m pip install dashscope Configure DASHSCOPE_API_KEY (environment variable preferred; or dashscope_api_key in ~/.alibabacloud/credentials ). Test Matrix (currently supported) Text-to-image → skills/ai/image/alic...
|
296 |
| 11767 | tanstack-query | bobmatnyc/claude-mpm-skills |
Overview TanStack Query (formerly React Query) manages server state - data that lives on the server and needs to be fetched, cached, synchronized, and updated. It provides automatic caching, background refetching, stale-while-revalidate patterns, pagination, infinite scrolling, and optimistic updates out of the box. Package: @tanstack/react-query Devtools: @tanstack/react-query-devtools Current Version: v5 Installation npm install @tanstack/react-query npm install -D @tanstack/react-query-devtoo...
|
296 |
| 11768 | alicloud-security-kms-test | cinience/alicloud-skills |
Category: test KMS Minimal Viable Test Prerequisites AK/SK and region are configured. GoalsSkill: skills/security/key-management/alicloud-security-kms/ 。 Test Steps 通过 OpenAPI 元数据确认 KMS 常用读取 API。 执行一个只读查询(如 ListKeys 或产品支持的等价读接口)。 记录 request id、返回数量、错误码(若有)。 Expected Results 只读查询成功或返回明确权限错误。
|
295 |
| 11769 | alicloud-platform-openapi-product-api-discovery-test | cinience/alicloud-skills |
Category: test OpenAPI 产品发现Minimal Viable Test Prerequisites AK/SK is configured. GoalsSkill: skills/platform/openapi/alicloud-platform-openapi-product-api-discovery/ 。 Test Steps 运行一个产品源抓取脚本。 运行合并脚本。 限制 OPENAPI_META_MAX_PRODUCTS=1 执行元数据抓取。 Expected Results output/product-scan/ 下产生最小结果文件。
|
295 |
| 11770 | alicloud-ai-image-qwen-image-edit-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/image/alicloud-ai-image-qwen-image-edit Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, response...
|
295 |
| 11771 | git-troubleshooting | geoffjay/claude-plugins |
Git Troubleshooting Skill This skill provides comprehensive guidance on diagnosing and resolving git issues, recovering from mistakes, fixing corrupted repositories, and handling common error scenarios. When to Use Activate this skill when: Encountering git error messages Recovering lost commits or branches Fixing corrupted repositories Resolving detached HEAD state Handling botched merges or rebases Diagnosing repository issues Recovering from force push Fixing authentication problems Recoverin...
|
295 |
| 11772 | ln-641-pattern-analyzer | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Pattern Analyzer L3 Worker that analyzes a single architectural pattern against best practices and calculates 4 scores. Purpose & Scope Analyze ONE pattern per invocation (receives pattern name, locations, best practices from coordinator) Find all implementations in codebase (Glob/Grep) Validate implementation exists and wo...
|
295 |
| 11773 | symfony:ports-and-adapters | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:ports-and-adapters<div
|
295 |
| 11774 | golang-architect | tomlord1122/tomtom-skill |
Golang Backend Architecture Expert Expert assistant for Golang backend architecture with Gin Server, Layered Architecture, sqlc, PostgreSQL (Supabase), and API authentication. How It Works Analyzes service requirements and existing codebase Queries Gin documentation via Context7 (/websites/gin-gonic_en) Applies layered architecture patterns (Handler → Service → Repository) Provides implementation with proper error handling and testing Usage Initialize SQLC bash /mnt/skills/user/golang-architec...
|
295 |
| 11775 | four-meme-ai | four-meme-community/four-meme-ai |
[Agent must follow] User agreement and security notice on first use When responding to any user request about fourmeme or this skill, you must first present the content below in this order: User Agreement, then Security Notice , and state clearly that by choosing to continue, the user agrees to the User Agreement. Until the user has explicitly agreed or confirmed to continue, do not run create-api , create-chain , buy , sell , send , or 8004-register (any operation that uses the private key or w...
|
295 |
| 11776 | appwrite-dart | appwrite/agent-skills |
Appwrite Dart SDK Installation Flutter (client-side) flutter pub add appwrite Dart (server-side) dart pub add dart_appwrite Setting Up the Client Client-side (Flutter) import 'package:appwrite/appwrite.dart' ; final client = Client ( ) . setEndpoint ( 'https://<REGION>.cloud.appwrite.io/v1' ) . setProject ( '[PROJECT_ID]' ) ; Server-side (Dart) import 'package:dart_appwrite/dart_appwrite.dart' ; final client = Client ( ) . setEndpoint ( 'https://<REGION>.cloud.appwrite.io/v1' ) . setProject ( ...
|
295 |
| 11777 | symfony:doctrine-fixtures-foundry | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-fixtures-foundry<div
|
295 |
| 11778 | context-retrospective | jwynia/agent-skills |
Context Network Retrospective Purpose Analyze agent-user interaction transcripts to identify context network maintenance needs and guidance improvements. Extract actionable insights for enhancing both network structure and agent instructions. Core Principle Learn from every interaction. Each transcript reveals gaps in context, navigation issues, and guidance problems that can be systematically fixed. Analysis Dimensions 1. Knowledge Gap Identification Look For: Questions agent couldn't ans...
|
295 |
| 11779 | app-store-opportunity-research | froessell/app-store-opportunity-research |
When to Use Use this skill when the user wants to: Find profitable app ideas in a category or niche Research App Store charts for underserved opportunities Analyze competitor apps (ratings, reviews, revenue, gaps) Generate a top-3 opportunity report with revenue validation Write a detailed MVP Product Requirements Document (PRD) Build a working prototype from the PRD on Rork Trigger phrases: "find app opportunities", "app store research", "what app should I build", "research this app category", ...
|
295 |
| 11780 | income-tax | kazukinagata/shinkoku |
所得税計算(Income Tax Calculation) 事業所得・各種控除から所得税額を計算するスキル。 settlement スキルで決算書の作成が完了していることを前提とする。 計算結果は /e-tax スキル(Claude in Chrome)で確定申告書等作成コーナーに入力する。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 パス解決の例 config の db_path が ./shinkoku.db で CWD が /home/user/tax-2025/ の場合: shinkoku tax calc-income --input /home/user/tax-2025/output/income...
|
295 |
| 11781 | product-manager-toolkit | borghei/claude-skills |
Product Manager Toolkit Essential tools and frameworks for modern product management, from discovery to delivery. Quick Start For Feature Prioritization python scripts/rice_prioritizer.py sample Create sample CSV python scripts/rice_prioritizer.py sample_features.csv --capacity 15 For Interview Analysis python scripts/customer_interview_analyzer.py interview_transcript.txt For PRD Creation Choose template from references/prd_templates.md Fill in sections based on discovery work Review with stak...
|
295 |
| 11782 | alicloud-data-lake-dlf-test | cinience/alicloud-skills |
Category: test DataLake Minimal Viable Test Prerequisites AK/SK and region are configured. GoalsSkill: skills/data-lake/alicloud-data-lake-dlf/ 。 Test Steps Run python scripts/list_openapi_meta_apis.py . Select one read-only API and run a minimal request. Save outputs under output/alicloud-data-lake-dlf-test/ 。 Expected Results Metadata retrieval succeeds. Read-only API returns success or an explicit permission error.
|
294 |
| 11783 | alicloud-observability-sls-log-query-test | cinience/alicloud-skills |
Category: test SLS 日志查询Minimal Viable Test Prerequisites 配置 ALIBABA_CLOUD_ACCESS_KEY_ID 、 ALIBABA_CLOUD_ACCESS_KEY_SECRET 。 配置 SLS_ENDPOINT 、 SLS_PROJECT 、 SLS_LOGSTORE 。 GoalsSkill: skills/observability/sls/alicloud-observability-sls-log-query/ 。 Test Steps 执行 5 分钟窗口的基础查询(如 * | select count(*) )。 记录耗时与返回行数。 若失败,记录完整错误码。 Expected Results 查询成功返回统计结果,或返回可诊断错误。
|
294 |
| 11784 | alicloud-ai-audio-tts-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-tts Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, response summary, an...
|
294 |
| 11785 | alicloud-ai-misc-crawl-and-skill-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/misc/alicloud-ai-misc-crawl-and-skill Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, response s...
|
294 |
| 11786 | symfony:executing-plans | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:executing-plans<div
|
294 |
| 11787 | docx-to-markdown | duc01226/easyplatform |
docx-to-markdown Convert Microsoft Word (.docx) documents to Markdown format. Installation Required cd .claude/skills/docx-to-markdown npm install Dependencies: mammoth, turndown, @truto/turndown-plugin-gfm Quick Start Basic conversion node .claude/skills/docx-to-markdown/scripts/convert.cjs \ --file ./document.docx Custom output path node .claude/skills/docx-to-markdown/scripts/convert.cjs \ --file ./doc.docx \ --output ./output/doc.md Extract images to directory node .claude/sk...
|
294 |
| 11788 | kernel-cli | kernel/skills |
Kernel CLI The Kernel CLI provides command-line access to Kernel's cloud browser platform. Installation Homebrew: brew install kernel/tap/kernel (>=v0.13.4) npm: npm install -g @onkernel/cli (>=v0.13.4) Authentication Preferred: Set KERNEL_API_KEY environment variable Fallback: Run kernel login for interactive OAuth Available Commands Command Area Skill Name Description Browser Management kernel-browser-management Create, list, delete browser sessions App Deployment kernel-app-deployment Deplo...
|
294 |
| 11789 | uv-package-manager | sickn33/antigravity-awesome-skills |
UV Package Manager Comprehensive guide to using uv, an extremely fast Python package installer and resolver written in Rust, for modern Python project management and dependency workflows. When to Use This Skill Setting up new Python projects quickly Managing Python dependencies faster than pip Creating and managing virtual environments Installing Python interpreters Resolving dependency conflicts efficiently Migrating from pip/pip-tools/poetry Speeding up CI/CD pipelines Managing monorepo Python...
|
294 |
| 11790 | llm-application-dev-langchain-agent | sickn33/antigravity-awesome-skills |
LangChain/LangGraph Agent Development Expert You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph. Use this skill when Working on langchain/langgraph agent development expert tasks or workflows Needing guidance, best practices, or checklists for langchain/langgraph agent development expert Do not use this skill when The task is unrelated to langchain/langgraph agent development expert You need a different domain or tool outsid...
|
294 |
| 11791 | langchain-development | mindrally/skills |
LangChain Development You are an expert in LangChain, LangGraph, and building LLM-powered applications with Python. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_active, has_context) Follow PEP 8 style guidelines strictly Code Organization Directory Structure Organize code...
|
294 |
| 11792 | mcp oauth cloudflare | jezweb/claude-skills |
MCP OAuth Cloudflare Production-ready OAuth authentication for MCP servers on Cloudflare Workers. When to Use This Skill Building an MCP server that needs user authentication Deploying MCP to Claude.ai (requires Dynamic Client Registration) Replacing static auth tokens with OAuth for better security Adding Google Sign-In to your MCP server Need user context (email, name, picture) in MCP tool handlers When NOT to Use Internal/private MCP servers where tokens are acceptable MCP servers without use...
|
293 |
| 11793 | alicloud-security-center-sas-test | cinience/alicloud-skills |
Category: test SAS Minimal Viable Test Prerequisites AK/SK and region are configured. GoalsSkill: skills/security/host/alicloud-security-center-sas/ 。 Test Steps 获取 SAS 的 API 列表。 执行一个只读查询 API。 记录成功/失败及错误码。 Expected Results 请求链路可达,返回可解析 JSON。
|
293 |
| 11794 | alicloud-security-cloudfw-test | cinience/alicloud-skills |
Category: test CloudFW Minimal Viable Test Prerequisites AK/SK and region are configured. GoalsSkill: skills/security/firewall/alicloud-security-cloudfw/ 。 Test Steps 先跑元数据 API 列表脚本。 选择一个只读列表/详情 API 执行。 记录请求摘要和响应摘要。 Expected Results 可拿到资源列表或明确无权限提示。
|
293 |
| 11795 | alicloud-ai-audio-tts-realtime-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-tts-realtime Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, response su...
|
293 |
| 11796 | alicloud-ai-audio-tts-voice-design-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-tts-voice-design Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, respons...
|
293 |
| 11797 | skill-from-notebook | gbsoss/skill-from-masters |
Skill from Notebook Extract actionable methodologies from learning materials (documents, articles, videos) or quality examples (blog posts, designs, code) to generate reusable Skills. Core Philosophy: NotebookLM helps you understand. This skill helps you do. When to Use When users want to turn knowledge into executable skills: "I just read this article about code review, help me create a skill from it" "Here's a great technical blog post, extract the writing methodology" "Turn this PDF guid...
|
293 |
| 11798 | ln-642-layer-boundary-auditor | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Layer Boundary Auditor L3 Worker that audits architectural layer boundaries and detects violations. Purpose & Scope Read architecture.md to discover project's layer structure Detect layer violations (I/O code outside infrastructure layer) Detect cross-layer consistency issues: Transaction boundaries (commit/rollback ownersh...
|
293 |
| 11799 | feed-catchup | readwiseio/readwise-skills |
You are helping the user catch up on their Readwise Reader RSS feed. Follow this process carefully. Readwise Access Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents ). If they are, use them throughout. If not, use the equivalent readwise CLI commands instead (e.g. readwise list , readwise read <id> , readwise move <id> <location> ). The instructions below reference MCP tool names — translate to CLI equivalents as needed. Setup IMPORTANT — do this in a single p...
|
293 |
| 11800 | cold-email-sequence-generator | onewave-ai/claude-skills |
Cold Email Sequence Generator Create personalized, high-converting cold email sequences with optimal timing and A/B testing. Instructions You are an expert email copywriter specializing in outbound sales sequences that get responses. Your mission is to craft personalized, value-driven email sequences that respect the recipient's time while clearly communicating value. Core Capabilities Sequence Types: Classic Cold Outreach (7 emails, 2 weeks) Fast-Track (5 emails, 1 week) Long-Play Nurture...
|
293 |