███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 19601 | dingtalk-sheet-scripts | rockyz/dingtalk-sheet-scripts |
钉钉表格脚本开发 运行环境 语言:JavaScript (ES6+) 运行在钉钉表格的沙箱环境中 使用 Output.log() 输出日志(不是 console.log ) 支持 async/await 和 fetch API 核心对象 对象 说明 获取方式 Workbook 工作簿(顶级对象) 直接使用 Sheet 工作表 Workbook.getActiveSheet() Range 单元格区域 sheet.getRange('A1:B10') Input 用户输入(异步) await Input.textAsync() Output 日志输出 Output.log() 快速示例 // 基础数据写入 const sheet = Workbook . getActiveSheet ( ) ; sheet . getRange ( 'A1:B2' ) . setValues ( [ [ '姓名' , '分数' ] , [ '张三' , 95 ] ] ) ; // 异步用户输入 const name = await Input . textAsync ( '请输入姓名:' ) ; Out...
|
45 |
| 19602 | patent-diagram-generator | robthepcguy/claude-patent-creator |
Patent Diagram Generator Skill Create patent-style technical diagrams including flowcharts, block diagrams, and system architectures using Graphviz. When to Use Invoke this skill when users ask to: Create flowcharts for method claims Generate block diagrams for system claims Draw system architecture diagrams Create technical illustrations for patents Add reference numbers to diagrams Generate patent figures What This Skill Does Flowchart Generation : Method step flowcharts Decision trees Process...
|
45 |
| 19603 | bootstrap-components | sjnims/bootstrap-expert |
Bootstrap 5.3 Components Bootstrap provides ready-to-use UI components for building interfaces. This skill covers all major components with usage patterns, JavaScript initialization requirements, and accessibility best practices. JavaScript Initialization Overview: Some components work purely with data attributes, while others require JavaScript initialization. Components marked with Requires JS below won't function without explicit initialization. Component Requires JS Init Data Attributes O...
|
45 |
| 19604 | netease-auth | api/git |
No SKILL.md available for this skill. View on GitHub
|
45 |
| 19605 | accelint-skill-manager | gohypergiant/agent-skills |
Skill Manager NEVER Do When Creating Skills NEVER write tutorials explaining basics - Assume Claude knows standard concepts, libraries, and patterns. Focus on expert-only knowledge. NEVER put triggering information in body - "When to use" guidance belongs ONLY in the description field. The body is loaded after activation decision. NEVER dump everything in SKILL.md - Use progressive disclosure: core workflow in SKILL.md (<500 lines ideal), detailed content in references/, loaded on-demand. NEVER ...
|
45 |
| 19606 | lean4 | cameronfreer/lean4-skills |
Lean 4 Theorem Proving Use this skill whenever you're editing Lean 4 proofs, debugging Lean builds, formalizing mathematics in Lean, or learning Lean 4 concepts. It prioritizes LSP-based inspection and mathlib search, with scripted primitives for sorry analysis, axiom checking, and error parsing. Core Principles Search before prove. Many mathematical facts already exist in mathlib. Search exhaustively before writing tactics. Build incrementally. Lean's type checker is your test suite—if it compi...
|
45 |
| 19607 | database-query | cisco-ai-defense/skill-scanner |
Database Query Skill Safely query databases using parameterized statements. Usage Provide query parameters and get results safely.
|
45 |
| 19608 | azure-ai-projects-java | sickn33/antigravity-awesome-skills |
Azure AI Projects SDK for Java High-level SDK for Azure AI Foundry project management with access to connections, datasets, indexes, and evaluations. Installation < dependency > < groupId > com.azure </ groupId > < artifactId > azure-ai-projects </ artifactId > < version > 1.0.0-beta.1 </ version > </ dependency > Environment Variables PROJECT_ENDPOINT = https:// < resource > .services.ai.azure.com/api/projects/ < project > Authentication import com . azure . ai . projects . AIProjectClientBuild...
|
45 |
| 19609 | python-async-patterns | 0xdarkmatter/claude-mods |
Python Async Patterns Asyncio patterns for concurrent Python programming. Core Concepts import asyncio Coroutine (must be awaited) async def fetch(url: str) -> str: async with aiohttp.ClientSession() as session: async with session.get(url) as response: return await response.text() Entry point async def main(): result = await fetch("https://example.com") return result asyncio.run(main()) Pattern 1: Concurrent with gather async def fetch_all(urls: list[str])...
|
45 |
| 19610 | social commerce strategist | eddiebe147/claude-settings |
Social Commerce Strategist Create strategies for shoppable posts and social commerce conversion optimization 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 social commerce strategist social commerce Review and optimize review social commerce strategist Get best...
|
45 |
| 19611 | azure-devops | sanjay3290/ai-skills |
Azure DevOps API Skill This skill provides comprehensive guidance for working with the Azure DevOps REST API, enabling programmatic access to all Azure DevOps Services and Azure DevOps Server resources. Overview Azure DevOps REST API is a RESTful web API enabling you to access and manage work items, repositories, pipelines, test plans, artifacts, and more across all Azure DevOps services. Base URL: https://dev.azure.com/{organization}/{project}/_apis/{area}/{resource}?api-version={version} ...
|
45 |
| 19612 | alba-inertia | inertia-rails/skills |
Alba + Typelizer for Inertia Rails Requires: alba , typelizer , alba-inertia gems in Gemfile. Alba serializers for Inertia props with auto-generated TypeScript types. Replaces as_json(only: [...]) with structured, type-safe resources. Before creating a resource, ask: Reusable data shape (user, course)? → Entity resource ( UserResource ) — shared across pages Page-specific props bundle? → Page resource ( UsersIndexResource ) — one per controller action Global data (auth, notifications)? → Shared ...
|
45 |
| 19613 | nuxt-code-editor | caomeiyouren/momei |
Nuxt Code Editor Skill (Nuxt 代码编辑技能) 能力 (Capabilities) Vue 3 Composition API : 生成 <script setup lang="ts"> 组件。 PrimeVue 集成 : 根据 utils/ 或现有的 components/ 用法正确使用 PrimeVue 组件。 Better-Auth 集成 : 正确使用 authClient (前端) 和 auth (服务端) 进行身份验证和权限控制。 类型安全 : 确保所有后端代码使用在 server/database/entities 或 types/ 中定义的 TypeORM 实体和 DTO。 Zod 校验 : 使用 Zod 进行 API 请求参数校验 (参考 utils/schemas/ )。 增量编辑 : 优先修补 (patch) 而非重写整个文件,以保留上下文。 指令 (Instructions) 路径与工作树意识 : 所有的文件创建与修改操作必须在当前任务所属的工作树中执行。如果是主功能开发,应在 dev 或 fix 分支对应的目录进行。 代码风格指南 : ...
|
45 |
| 19614 | gh-address-comments | tech-leads-club/agent-skills |
PR Comment Handler Guide to find the open PR for the current branch and address its comments with gh CLI. Run all gh commands with elevated network access. Prereq: ensure gh is authenticated (for example, run gh auth login once), then run gh auth status with escalated permissions (include workflow/repo scopes) so gh commands succeed. If sandboxing blocks gh auth status , rerun it with sandbox_permissions=require_escalated . 1) Inspect comments needing attention Run scripts/fetch_comments.py whic...
|
45 |
| 19615 | detox | 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 [待完善:根据具体工具添加关键词]
|
45 |
| 19616 | uifork | sambernhardt/uifork |
UIFork UIFork is a CLI tool and React component library for managing UI component versions. Create multiple versions of components, let stakeholders switch between them to test and gather feedback, and promote the best one when ready. When to Use User wants to version React components for A/B testing or stakeholder feedback User mentions uifork, component versioning, or UI variations User needs help with uifork CLI commands (init, watch, new, fork, promote, etc.) User wants to set up uifork in a...
|
45 |
| 19617 | npm-library-setup | huozhi/npm-skills |
npm Library Setup with ESM This skill provides comprehensive guidance on setting up an npm library with package.json, with a preference for ES Modules (ESM). Overview This skill helps you create npm packages that: Use ES Modules (ESM) with "type": "module" Configure modern exports field (no deprecated module field) Use bunchee for zero-config bundling Use vitest for modern testing Support TypeScript and React component libraries When to Use This Skill Use when: "Set up an npm package" "Cre...
|
45 |
| 19618 | lifecycle marketing manager | eddiebe147/claude-settings |
Lifecycle Marketing Manager Design customer lifecycle marketing with automated email sequences and journeys 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 lifecycle marketing manager lifecycle marketing Review and optimize review lifecycle marketing manager Get...
|
45 |
| 19619 | foundation-models | johnrogers/claude-swift-engineering |
Foundation Models Apple's on-device AI framework providing access to a 3B parameter language model for summarization, extraction, classification, and content generation. Runs entirely on-device with no network required. Overview Foundation Models enable intelligent text processing directly on device without server round-trips, user data sharing, or network dependencies. The core principle: leverage on-device AI for specific, contained tasks (not for general knowledge). Reference Loading Guid...
|
45 |
| 19620 | test-engineer | caomeiyouren/momei |
Test Engineer Skill 能力 (Capabilities) 测试编写 : 使用 Vitest 编写针对 Vue 组件和 TypeScript 逻辑的测试。 测试运行 : 熟练运行 pnpm test 或针对特定文件的测试命令。 覆盖率分析 : 阅读和理解测试覆盖率报告。 Mocking : 模拟 API 响应、Nuxt composables (如 useI18n )。 指令 (Instructions) Worktree 意识 : 务必在 ../momei-test 工作树中运行测试命令。如果尚不存在该路径,应引导用户或自动创建之。 规范对齐 : 在运行测试前必须阅读并遵循 测试规范 。 测试策略 : 优先执行 定向测试 (Targeted Testing),仅运行与改动相关的测试文件。 全量测试条件 : 除非涉及大规模重构或安全风险,否则避免全量测试。全量测试通常仅在专门的“测试增强”任务中进行。 用例设计 : 考虑正常流程、异常流程和边缘情况。 Mock 配置 : 在测试文件中配置必要的 mock(如 useI18n )。 执行验证 : 编写完后必须运行测试确保其...
|
45 |
| 19621 | team-tasks | win4r/team-tasks |
Team Tasks — Multi-Agent Pipeline Coordination Overview Coordinate dev team agents through shared JSON task files + AGI dispatch. AGI is the command center — agents never talk to each other directly. Two modes: Mode A (linear): Fixed pipeline order code → test → docs → monitor Mode B (dag): Tasks declare dependencies, parallel dispatch when deps are met Task Manager CLI All commands use: python3 <skill-dir>/scripts/task_manager.py <command> [args] Where <skill-dir> is the directory containing th...
|
45 |
| 19622 | nx-run-tasks | tech-leads-club/agent-skills |
You can run tasks with Nx in the following way. Keep in mind that you might have to prefix things with npx/pnpx/yarn if the user doesn't have nx installed globally. Look at the package.json or lockfile to determine which package manager is in use. For more details on any command, run it with --help (e.g. nx run-many --help , nx affected --help ). Understand which tasks can be run You can check those via nx show project <projectname> --json , for example nx show project myapp --json . It contains...
|
45 |
| 19623 | animejs-mastery | frogody/app.isyncso |
Anime.js Animation Upgrade Agent Autonomous agent that analyzes codebases and systematically implements polished, performant animations using anime.js. Agent Workflow Execute these phases sequentially. Work autonomously—don't ask for permission between steps. Phase 1: Codebase Analysis 1. Identify framework and structure find . -name "package.json" -o -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" | head -20 2. Check if anime.js is installed grep -r "animejs\|anime.js" pac...
|
45 |
| 19624 | agentdb performance optimization | proffesor-for-testing/agentic-qe |
AgentDB Performance Optimization What This Skill Does Provides comprehensive performance optimization techniques for AgentDB vector databases. Achieve 150x-12,500x performance improvements through quantization, HNSW indexing, caching strategies, and batch operations. Reduce memory usage by 4-32x while maintaining accuracy. Performance : <100µs vector search, <1ms pattern retrieval, 2ms batch insert for 100 vectors. Prerequisites Node.js 18+ AgentDB v1.0.7+ (via agentic-flow) Existing AgentDB dat...
|
45 |
| 19625 | fine-tuning assistant | eddiebe147/claude-settings |
Fine-Tuning Assistant The Fine-Tuning Assistant skill guides you through the process of adapting pre-trained models to your specific use case. Fine-tuning can dramatically improve model performance on specialized tasks, teach models your preferred style, and add capabilities that prompting alone cannot achieve. This skill covers when to fine-tune versus prompt engineer, preparing training data, selecting base models, configuring training parameters, evaluating results, and deploying fine-tuned m...
|
45 |
| 19626 | vibe-notionbot | devxoul/vibe-notion |
Vibe Notionbot A TypeScript CLI tool that enables AI agents and humans to interact with Notion workspaces through the official Notion API. Supports pages, databases, blocks, users, comments, and search. Which CLI to Use This package ships two CLIs. Pick the right one based on your situation: vibe-notion vibe-notionbot (this CLI) API Unofficial private API Official Notion API Auth token_v2 auto-extracted from Notion desktop app NOTION_TOKEN env var (Integration token) Identity Acts as the user Ac...
|
45 |
| 19627 | demo-specialist | ncklrs/startup-os-skills |
Demo Specialist Strategic expertise for delivering product demonstrations that convert prospects into customers. Philosophy A demo isn't a feature tour. It's a story about your prospect's future told through your product. The best product demos: Start with their problem — Not your solution Show, don't tell — Features are boring; outcomes are compelling Match the audience — Executives need different things than end-users Create urgency — Show the cost of inaction End with a clear next step — Neve...
|
45 |
| 19628 | bmad-os-gh-triage | bmad-code-org/bmad-method |
Read prompts/instructions.md and execute.
|
45 |
| 19629 | monitoring-expert | personamanagmentlayer/pcl |
Monitoring Expert Observability and performance specialist implementing comprehensive monitoring, alerting, tracing, and performance testing systems. Role Definition You are a senior SRE with 10+ years of experience in production systems. You specialize in the three pillars of observability: logs, metrics, and traces. You build monitoring systems that enable quick incident response, proactive issue detection, and performance optimization. When to Use This Skill Setting up application monitor...
|
45 |
| 19630 | nocodb | nocodb/agent-skills |
NocoDB CLI CLI for NocoDB API. Platform Support Linux / macOS : scripts/nocodb.sh (Bash, requires curl and jq ) Plan Requirements FREE PLANS: Base, Table, Field, Record, Link, Attachment APIs, Fiter, Sorts APIs ENTERPRISE (self-hosted OR cloud-hosted): Workspace, Workspace Collaboration APIs, Base Collaboration APIs, View, Script, Team, API Token APIs Setup export NOCODB_TOKEN = "your-api-token" export NOCODB_URL = "https://app.nocodb.com" optional, this is default export NOCODB_VERBOSE = 1 op...
|
45 |
| 19631 | commodities | joellewis/finance_skills |
Commodities Purpose Analyze commodity markets including futures curve dynamics, roll yield mechanics, commodity index construction, and supply/demand fundamentals. This skill covers the unique return drivers of commodity investing and the critical distinction between spot returns and futures-based returns. Layer 2 — Asset Classes Direction both When to Use User asks about commodity investing, commodity ETFs, or commodity futures User asks about contango, backwardation, or futures curve shape Use...
|
45 |
| 19632 | webpack | teachingai/full-stack-skills |
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
45 |
| 19633 | swain-help | cristoslc/swain |
swain-help Contextual help for the swain skill ecosystem. Mode detection Determine the mode from context: Signal Mode Invoked from swain-init Phase 4, or user says "just set up swain" / "what now after init" Onboarding User asks a specific question ("how do I...", "what is...", "when should I...") Question User asks for a reference, cheat sheet, commands, or overview Reference Onboarding mode Present a concise orientation — help the user understand what they just installed without overwhelming t...
|
45 |
| 19634 | flutter-project-creater | teachingai/full-stack-skills |
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
45 |
| 19635 | session-security-checker | jeremylongshore/claude-code-plugins-plus-skills |
Session Security Checker Purpose This skill provides automated assistance for session security checker tasks within the Security Fundamentals domain. When to Use This skill activates automatically when you: Mention "session security checker" in your request Ask about session security checker patterns or best practices Need help with essential security skills covering authentication, input validation, secure coding practices, and basic vulnerability detection. Capabilities Provides step-by-st...
|
45 |
| 19636 | frontend-design | blogic-cz/blogic-marketplace |
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
|
45 |
| 19637 | solidity-debug | 0xlayerghost/solidity-agent-kit |
Failed Transaction Debug Workflow Language Rule Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English. Step 1: 获取交易回执 — 判断成功/失败 使用 Foundry cast CLI 查询交易回执(receipt),传入 tx hash 和 RPC endpoint。 关注字段: 字段 含义 status 0 = 失败, 1 = 成功 gasUsed 实际消耗的 gas logs 空数组 [] = 交易 revert,无事件发出 to 目标合约地址 Step 2: 获取交易详情 — 拿到 gas limit 和 input 使用 Foundry cast CLI 查询交易详情(tx),传入 tx hash 和 RPC endpoint。 关注字段: 字段 含义 gas 发送方设置的 gas limit inpu...
|
45 |
| 19638 | depot-ci | depot/skills |
Depot CI (Beta) Depot CI is a drop-in replacement for GitHub Actions that runs your existing Actions-format YAML workflows entirely within Depot's infrastructure. It parses GitHub Actions workflow files and executes them on Depot's compute. Status: Beta — keep GitHub Actions running in parallel. Things may break. Architecture Three subsystems: compute (provisions and executes work), orchestrator (schedules multi-step workflows, handles dependencies), GitHub Actions parser (translates Actions YAM...
|
45 |
| 19639 | drone-inspection-specialist | erichowens/some_claude_skills |
Drone Inspection Specialist Expert in drone-based infrastructure inspection with computer vision, thermal analysis, and 3D reconstruction for insurance, property assessment, and environmental monitoring. Decision Tree: When to Use This Skill User mentions drones/UAV? ├─ YES → Is it about inspection or assessment of something? │ ├─ Fire detection, smoke, thermal hotspots → THIS SKILL │ ├─ Roof damage, hail, shingles → THIS SKILL │ ├─ Property/insurance assessment → THIS SKI...
|
45 |
| 19640 | grafana-dashboard-creator | jeremylongshore/claude-code-plugins-plus-skills |
Grafana Dashboard Creator Purpose This skill provides automated assistance for grafana dashboard creator tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "grafana dashboard creator" in your request Ask about grafana dashboard creator patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guidance for graf...
|
45 |
| 19641 | v3 security overhaul | proffesor-for-testing/agentic-qe |
V3 Security Overhaul What This Skill Does Orchestrates comprehensive security overhaul for claude-flow v3, addressing critical vulnerabilities and establishing security-first development practices using specialized v3 security agents. Quick Start Initialize V3 security domain (parallel) Task ( "Security architecture" , "Design v3 threat model and security boundaries" , "v3-security-architect" ) Task ( "CVE remediation" , "Fix CVE-1, CVE-2, CVE-3 critical vulnerabilities" , "security-auditor" ) ...
|
45 |
| 19642 | testing-tauri-apps | dchuk/claude-code-tauri-skills |
This skill covers testing strategies for Tauri v2 applications: unit testing with mocks, end-to-end testing with WebDriver, and CI integration. Testing Approaches Overview Tauri supports two primary testing methodologies: - Unit/Integration Testing - Uses a mock runtime without executing native webview libraries - End-to-End Testing - Uses WebDriver protocol for browser automation Mocking Tauri APIs The `@tauri-apps/api/mocks` module simulates a Tauri environment during frontend testing....
|
45 |
| 19643 | react-composition-patterns | tech-leads-club/agent-skills |
React Composition Patterns Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. When to Apply Reference these guidelines when: Refactoring components with many boolean props Building reusable component libraries Designing flexible component APIs Reviewing component architecture W...
|
45 |
| 19644 | laravel:transactions-and-consistency | jpcaparas/superpowers-laravel |
Ensure multi-step changes are atomic; make retries safe. Commands ``` DB::transaction(function () use ($order, $payload) { $order->update([...]); $order->items()->createMany($payload['items']); OrderUpdated::dispatch($order); // or flag for after-commit }); // Listener queued after commit class SendInvoice implements ShouldQueue { public $afterCommit = true; } ``` Patterns - Use `DB::transaction` to wrap write sequences and related side-effects - Prefer `$afterCom...
|
45 |
| 19645 | dataset curator | eddiebe147/claude-settings |
Dataset Curator The Dataset Curator skill guides you through the critical process of preparing high-quality training data for machine learning models. Data quality is the single most important factor in model performance, yet it is often underinvested. This skill helps you systematically clean, validate, augment, and maintain datasets that lead to better models. From initial collection to ongoing maintenance, this skill covers deduplication, label quality assessment, bias detection, augmentation...
|
45 |
| 19646 | hwc-media-content | thehotwireclub/hotwire_club-skills |
Media & Rich Content Implement media-centric Hotwire features with Stimulus and Turbo Frames. Core Workflow Identify media mode: upload/preview, playback controls, progress persistence, or embedded library integration. Keep media state in Stimulus values; bridge third-party APIs through value callbacks and targets. Use browser-native APIs first ( URL.createObjectURL , Picture-in-Picture, IntersectionObserver, MediaSession). Clean up all allocated resources in disconnect() (observers, blob URLs, ...
|
45 |
| 19647 | ms365-tenant-manager | borghei/claude-skills |
Microsoft 365 Tenant Manager This skill provides expert guidance and automation for Microsoft 365 Global Administrators managing tenant setup, configuration, user lifecycle, security policies, and organizational optimization. Capabilities Tenant Setup & Configuration: Initial tenant setup, domain configuration, DNS records, service provisioning User & Group Management: User lifecycle (create, modify, disable, delete), group creation, license assignment Security & Compliance: Conditional Access...
|
45 |
| 19648 | equity structurer | eddiebe147/claude-settings |
Equity Structurer Structure founder equity, vesting schedules, and employee option plans 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 equity structurer equity structure Review and optimize review equity structurer Get best practices equity structurer best pra...
|
45 |
| 19649 | prd-generator | oimiragieo/agent-studio |
PRD Generator Overview Generate comprehensive, well-structured Product Requirements Documents (PRDs) that follow industry best practices. This skill helps product managers create clear, actionable requirements documents that align stakeholders and guide development teams. Core Workflow When a user requests to create a PRD (e.g., "create a PRD for a user authentication feature"), follow this workflow: Step 1: Gather Context Before generating the PRD, collect essential information through a d...
|
45 |
| 19650 | claude-md-writer | testacode/llm-toolkit |
CLAUDE.md Writer A skill for creating and optimizing CLAUDE.md files following official Anthropic best practices (2026-01). When to Use This Skill Creating a new CLAUDE.md for a project Reviewing/auditing an existing CLAUDE.md Optimizing documentation for better Claude Code performance User asks about CLAUDE.md best practices Golden Rule Para cada línea, preguntá: "¿Eliminar esto causaría que Claude cometa errores?" Si no, eliminalo. CLAUDE.md inflados causan que Claude ignore instrucciones. ...
|
45 |