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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,699
总 Skills
169.1M
总安装量
2,751
贡献者
# Skill 仓库 描述 安装量
17151 java-best-practices leavesfly/jimi
单例模式(枚举实现): ``` public enum Singleton { INSTANCE; public void doSomething() {} } ``` 工厂模式: ``` public class UserFactory { public static User createUser(String type) { return switch (type) { case "admin" -> new AdminUser(); case "guest" -> new GuestUser(); default -> new RegularUser(); }; } } ``` Builder 模式: ``` User user = User.builder() .name("张三") .age(25) .build(); ``` Stream API ``` List<String> names ...
92
17152 multi-cloud-architecture sickn33/antigravity-awesome-skills
Multi-Cloud Architecture Decision framework and patterns for architecting applications across AWS, Azure, and GCP. Purpose Design cloud-agnostic architectures and make informed decisions about service selection across cloud providers. When to Use Design multi-cloud strategies Migrate between cloud providers Select cloud services for specific workloads Implement cloud-agnostic architectures Optimize costs across providers Cloud Service Comparison Compute Services AWS Azure GCP Use Case EC2 Vi...
92
17153 ai-models alinaqi/claude-bootstrap
AI Models Reference Skill Load with: base.md + llm-patterns.md Last Updated: December 2025 Philosophy Use the right model for the job. Bigger isn't always better - match model capabilities to task requirements. Consider cost, latency, and accuracy tradeoffs. Model Selection Matrix Task Recommended Why Complex reasoning Claude Opus 4.5, o3, Gemini 3 Pro Highest accuracy Fast chat/completion Claude Haiku, GPT-4.1 mini, Gemini Flash Low latency, cheap Code generation Claude Sonnet 4.5, Codestr...
92
17154 meta-cognitive-reasoning 89jobrien/steve
This skill provides disciplined reasoning frameworks for avoiding cognitive failures in analysis, reviews, and decision-making. It enforces evidence-based conclusions, multiple hypothesis generation, and systematic verification. When to Use This Skill - Before making claims about code, systems, or versions - When conducting code reviews or architectural assessments - When debugging issues with multiple possible causes - When encountering unfamiliar patterns or versions - When making recom...
92
17155 cli tambo-ai/tambo
Tambo CLI Agent-friendly CLI for project setup and component management. Quick Start npx tambo init --api-key = sk_ .. . Initialize with API key npx tambo add message-thread-full --yes Add a component npx tambo create-app my-app --template = standard New app from template Non-Interactive Mode The CLI detects non-interactive environments and returns guidance instead of hanging: In CI or piped environments, this returns guidance (exit 2) instead of prompting npx tambo init Error: Project name...
92
17156 cli-design joelhooks/joelclaw
Agent-First CLI Design CLIs in this system are agent-first, human-distant-second . Every command returns structured JSON that an agent can parse, act on, and follow. Humans are welcome to pipe through jq . Core Principles 1. JSON always Every command returns JSON. No plain text. No tables. No color codes. Agents parse JSON; they don't parse prose. This is the ONLY output format joelclaw status → { "ok": true, "command": "joelclaw status", "result": {...}, "next_actions": [...] } No --json flag...
92
17157 code-comments petekp/claude-code-setup
Write documentation that lives with the code it describes. Plain language. No jargon. Explain the *why*, not the *what*. Core Philosophy Co-location wins. Documentation in separate files drifts out of sync. Comments next to code stay accurate because they're updated together. Write for three audiences: - Future you, six months from now - Teammates reading unfamiliar code - AI assistants (Claude, Copilot) who see one file at a time The "why" test: Before writing a comment, ask: "Does this...
92
17158 internal-comms aiskillstore/marketplace
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
92
17159 jadx brownfinesecurity/iothackbot
Jadx - Android APK Decompiler You are helping the user decompile Android APK files using jadx to convert DEX bytecode into readable Java source code for security analysis, vulnerability discovery, and understanding app internals. Tool Overview Jadx is a dex to Java decompiler that produces clean, readable Java source code from Android APK files. Unlike apktool (which produces smali), jadx generates actual Java code that's much easier to read and analyze. It's essential for: Converting DEX byteco...
92
17160 clean-architecture-php giuseppe-trisciuoglio/developer-kit
Clean Architecture, Hexagonal Architecture & DDD for PHP/Symfony Overview This skill provides guidance for implementing Clean Architecture, Hexagonal Architecture (Ports & Adapters), and Domain-Driven Design patterns in PHP 8.3+ applications using Symfony 7.x. It ensures clear separation of concerns, framework-independent business logic, and highly testable code through layered architecture with inward-only dependencies. When to Use Architecting new enterprise PHP applications with Symfony 7.x R...
92
17161 toutiao-news-trends wuchubuzai2018/expert-skills-hub
今日头条新闻热榜 技能概述 此技能用于抓取今日头条 PC 端热榜(hot-board)数据,包括: 热点标题 热度值(HotValue) 详情跳转链接(去除冗余查询参数,便于分享) 封面图(如有) 标签(如“热门事件”等) 数据来源:今日头条 ( www.toutiao.com ) 获取热榜 获取热榜(默认 50 条,按榜单顺序返回): node scripts/toutiao.js hot 获取热榜前 N 条: node scripts/toutiao.js hot 10 返回数据字段说明 字段 类型 说明 rank number 榜单排名(从 1 开始) title string 热点标题 popularity number 热度值(HotValue,已转为数字;解析失败时为 0) link string 热点详情链接(已清理 query/hash) cover string | null 封面图 URL(如有) label string | null 标签/标识(如有) clusterId string 聚合 ID(字符串化) categories string[] 兴趣分类(如...
92
17162 email-template-generator onewave-ai/claude-skills
Email Template Generator Generate professional, effective email templates for any business scenario. Instructions When a user requests an email template or needs help writing business emails: Identify Email Type: Sales/Cold outreach Customer support response Follow-up email Apology/service recovery Internal team communication Meeting request Thank you note Rejection/decline Gather Context: What is the purpose of this email? Who is the recipient (role, relationship)? What action do you wan...
92
17163 framework-migration-deps-upgrade sickn33/antigravity-awesome-skills
Dependency Upgrade Strategy You are a dependency management expert specializing in safe, incremental upgrades of project dependencies. Plan and execute dependency updates with minimal risk, proper testing, and clear migration paths for breaking changes. Use this skill when Working on dependency upgrade strategy tasks or workflows Needing guidance, best practices, or checklists for dependency upgrade strategy Do not use this skill when The task is unrelated to dependency upgrade strategy You need...
92
17164 bun-test daleseo/bun-skills
Bun Test Configuration Set up Bun's built-in test runner with Jest-compatible APIs and significantly faster execution (3-10x faster than Jest). Quick Reference For detailed patterns, see: Jest Migration: jest-migration.md - Complete Jest to Bun migration guide Mocking: mocking.md - Mock functions, spies, module mocking Examples: examples.md - Test patterns for APIs, databases, async code Core Workflow 1. Check Prerequisites Verify Bun installation bun --version Check if project exists ls ...
92
17165 ollama rawveg/skillsforge-marketplace
Comprehensive assistance with Ollama development - the local AI model runtime for running and interacting with large language models programmatically. When to Use This Skill This skill should be triggered when: - Running local AI models with Ollama - Building applications that interact with Ollama's API - Implementing chat completions, embeddings, or streaming responses - Setting up Ollama authentication or cloud models - Configuring Ollama server (environment variables, ports, proxies) ...
92
17166 tonejs plyght/tonejs-skill
Tone.js Skill Build interactive music applications in the browser using the Web Audio API through Tone.js's high-level abstractions. When to Use This Skill Use Tone.js when: Creating synthesizers, samplers, or musical instruments Building step sequencers, drum machines, or DAWs Adding sound effects or music to games Implementing audio visualizations synchronized to sound Processing audio in real-time with effects Scheduling musical events with precise timing Working with musical concepts (no...
92
17167 template-skill aiskillstore/marketplace
Insert instructions below
92
17168 test-quality-inspector bobmatnyc/claude-mpm-skills
Example Test Inspection Report Scenario: User Registration Feature Engineer's Test Suite test_user_registration.py def test_user_creation(): """Test user creation""" user = create_user("test@example.com", "password123") assert user def test_login(): """Test login""" user = create_user("test@example.com", "password123") result = login("test@example.com", "password123") assert result def test_duplicate_email(): """Test duplicate email""" create_user("test@ex...
92
17169 api designer daffy0208/ai-dev-standards
API Designer Design robust, scalable, and developer-friendly APIs. Core Principles 1. Developer Experience First Clear, predictable naming conventions Comprehensive documentation Helpful error messages Consistent patterns across endpoints 2. Design for Evolution Versioning strategy from day one Backward compatibility Deprecation process Migration guides for breaking changes 3. Security by Default Authentication and authorization Rate limiting and throttling Input validation and sanitization HTTP...
92
17170 zapper bankrbot/openclaw-skills
No SKILL.md available for this skill. View on GitHub
92
17171 strapi-expert ayhid/claude-skill-strapi-expert
Strapi v5 Expert You are an expert Strapi v5 developer specializing in plugin development, custom APIs, and CMS architecture. Your mission is to write production-grade Strapi v5 code following official conventions and best practices. Core Mandate: Document Service API First In Strapi v5, always use the Document Service API ( strapi.documents ) for all data operations. The Entity Service API from v4 is deprecated. Document Service vs Entity Service Operation Document Service (v5) Entity Service (...
92
17172 videocut-subtitle zrt-ai-lab/opencode-skills
字幕 转录 → 纠错 → 审核 → 匹配 → 烧录 流程 1. 转录视频(Whisper) ↓ 2. 词典纠错 + 分句 ↓ 3. 输出字幕稿(纯文本,一句一行) ↓ 【用户审核修改】 ↓ 4. 用户给回修改后的文本 ↓ 5. 我匹配时间戳 → 生成 SRT ↓ 6. 烧录字幕(FFmpeg) 转录 使用 OpenAI Whisper 模型进行语音转文字: whisper video.mp4 --model medium --language zh --output_format json 模型 用途 medium 默认,平衡速度与准确率 large-v3 高精度,较慢 输出 JSON 包含逐词时间戳,用于后续 SRT 生成。 字幕规范 规则 说明 一屏一行 不换行,不堆叠 ≤15字/行 超过15字必须拆分(4:3竖屏) 句尾无标点 你好 不是 你好。 句中保留标点 先点这里,再点那里 词典纠错 读取 词典.txt ,每行一个正确写法: skills Claude iPhone 我自动识别变体: claude → Claude 字幕稿格式 我给用户的 (纯文本,≤15字/行): 今天给...
92
17173 ln-003-push-all 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. Push All (Standalone Utility) Type: Standalone Utility Category: 0XX Shared Commits and pushes ALL current changes (staged, unstaged, untracked) to the remote repository in a single operation. When to Use This Skill Quick push of all accumulated changes without manual staging End-of-session commit when all changes are ready...
92
17174 whatsapp-messaging gokapso/agent-skills
WhatsApp Messaging When to use Use this skill when working with WhatsApp messaging via Kapso: sending messages, creating/managing templates, uploading media, or reading inbox history. Setup Env vars: KAPSO_API_BASE_URL (host only, no /platform/v1) KAPSO_API_KEY PROJECT_ID KAPSO_META_GRAPH_VERSION (optional, default v24.0) Discover IDs first Two Meta IDs are needed for different operations: ID Used for How to discover business_account_id (WABA) Template CRUD node scripts/list-platform-phone...
92
17175 creative intelligence aj-geddes/claude-code-bmad-skills
Creative Intelligence Role: Creative Intelligence System specialist Function: Facilitate structured brainstorming, conduct research, generate creative solutions Responsibilities Lead brainstorming sessions using proven techniques Conduct market and competitive research Generate creative solutions to complex problems Facilitate idea generation and refinement Document research findings and insights Support innovation across all BMAD phases Core Principles Structured Creativity - Use proven framewo...
92
17176 nango-function-builder nangohq/skills
Nango Function Builder Build deployable Nango functions (actions and syncs) with repeatable patterns and validation steps. When to use User wants to build or modify a Nango function User wants to build an action in Nango User wants to build a sync in Nango Useful Nango docs (quick links) Functions runtime SDK reference: https://nango.dev/docs/reference/functions Implement an action: https://nango.dev/docs/implementation-guides/use-cases/actions/implement-an-action Implement a sync: https://nango...
92
17177 conductor-validator sickn33/antigravity-awesome-skills
Check if conductor directory exists ls -la conductor/ Find all track directories ls -la conductor/tracks/ Check for required files ls conductor/index.md conductor/product.md conductor/tech-stack.md conductor/workflow.md conductor/tracks.md Use this skill when - Working on check if conductor directory exists tasks or workflows - Needing guidance, best practices, or checklists for check if conductor directory exists Do not use this skill when - The task is unrelated to check if conductor directo...
92
17178 marketplace-publishing aaronontheweb/dotnet-skills
Marketplace Publishing Workflow This skill documents how to publish skills and agents to the dotnet-skills Claude Code marketplace. Repository Structure dotnet-skills/ ├── .claude-plugin/ │ ├── marketplace.json Marketplace catalog │ └── plugin.json Plugin metadata + skill/agent registry ├── .github/workflows/ │ └── release.yml Release automation ├── skills/ │ ├── akka/ Akka.NET skills │ │ ├── best-practices/SKILL.md │ │ ├── testing-pat...
92
17179 agent-organizer 404kidwiz/claude-supercode-skills
Agent Organizer Purpose Provides expertise in multi-agent system architecture, coordination patterns, and autonomous workflow design. Handles agent decomposition, communication protocols, and collaboration strategies for complex AI systems. When to Use Designing multi-agent architectures or agent teams Implementing agent-to-agent communication protocols Building hierarchical or swarm-based agent systems Orchestrating autonomous workflows across agents Debugging agent coordination failures Scal...
92
17180 firstprinciples danielmiessler/personal_ai_infrastructure
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/FirstPrinciples/ 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. FirstPrinciples Skill Foundational reasoning methodology based on Elon Musk's physics-based thinking framework. Deconstructs problems to fundamental truths rather than ...
92
17181 specstory-organize specstoryai/agent-skills
Organizes your `.specstory/history` directory by moving session files into `YYYY/MM/` subdirectories based on the timestamp in each filename. How It Works - Scans `.specstory/history/` for markdown files - Extracts the date from filenames (e.g., `2026-01-22_19-20-56Z-fix-bug.md`) - Creates year/month folders (e.g., `2026/01/`) - Moves files into the appropriate subdirectory - Reports what was moved Why Organize? Over time, your history directory can accumulate hundreds of session files...
92
17182 wechat-article-writer smallnest/langgraphgo
公众号文章写作流程 4 步完成高质量公众号文章:搜索资料 → 撰写文章 → 生成标题 → 排版优化 Step 1: 搜索资料 使用 WebSearch 工具搜索主题相关资料: 搜索要求: 1. 并行搜索多个来源(官方文档、X/Twitter、Reddit、技术论坛) 2. 优先获取最新资料(当月/当季) 3. 可启动多个并行 Task 加速搜索 4. 深度总结搜索结果 Step 2: 撰写文章 必须先读取用户的 CLAUDE.md 获取写作风格 撰写要求: 1000-1500 字 故事化开头,带情感色彩(兴奋/焦虑/好奇) 准备 2-3 个备选标题 结构:效果展示 → 问题描述 → 步骤教学 → 升华总结 遵循 CLAUDE.md 中定义的写作风格和结尾语 Step 3: 生成标题 生成 5 个爆款标题,特点: 痛点明确:直击读者痛处("还在手动...") 数字吸引:具体数字更有说服力("3分钟"、"5个技巧") 结果导向:承诺具体收益("效率暴涨10倍") 情绪调动:惊、神技、秘籍等词汇 悬念设置:引发好奇心 Step 4: 排版优化 优化建议: 段落结构:每...
92
17183 axiom-scenekit charleswiltgen/axiom
SceneKit Development Guide Purpose : Maintain existing SceneKit code safely and plan migration to RealityKit iOS Version : iOS 8+ (SceneKit), deprecated iOS 26+ Xcode : Xcode 15+ When to Use This Skill Use this skill when: Maintaining existing SceneKit code Building a SceneKit prototype (with awareness of deprecation) Planning migration from SceneKit to RealityKit Debugging SceneKit rendering, physics, or animation issues Integrating SceneKit content with SwiftUI Loading 3D models via Model I/O ...
92
17184 midjourney 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 [待完善:根据具体工具添加关键词]
92
17185 browserless vm0-ai/vm0-skills
Browserless Headless Chrome browser as a service. Take screenshots, generate PDFs, scrape JS-rendered pages, and run Puppeteer/Playwright scripts without managing browser infrastructure. Official docs: https://docs.browserless.io/ When to Use Use this skill when you need to: Scrape JavaScript-heavy pages (React, Vue, Angular) Take full-page or element screenshots Generate PDFs from web pages Execute custom JavaScript in a browser context Bypass bot detection with stealth mode Run Puppeteer/...
92
17186 yuque-personal-note-refine yuque/yuque-plugin
Note Refine — Restructure & Polish Your Notes Help the user transform scattered, rough notes into well-structured, deduplicated, and enriched documents. Turn chaos into clarity. When to Use User wants to clean up messy notes User says "帮我整理笔记", "refine my notes", "把这些笔记理一下" User has accumulated daily captures and wants to consolidate them User says "这些笔记太乱了", "帮我重新组织一下", "去重整理" Required MCP Tools All tools are from the yuque-mcp server: yuque_search — Find the target notes to refine yuque_get_do...
92
17187 verify-email-snapshots aaronontheweb/dotnet-skills
Snapshot Testing Email Templates with Verify When to Use This Skill Use this skill when: Testing email template rendering for regressions Validating MJML templates compile to expected HTML Reviewing email changes in code review (diffs are visual) Ensuring variable substitution works correctly
92
17188 framer-motion-animations sgcarstrends/sgcarstrends
Framer Motion Animations Skill This skill helps you implement consistent, accessible animations across the codebase using Framer Motion (motion package v12+). When to Use This Skill Adding scroll-triggered reveal animations Implementing entrance/exit animations Creating staggered list animations Migrating from CSS/Intersection Observer to Motion Ensuring accessibility with reduced motion support Key Files File Purpose apps/web/src/app/about/_components/variants.ts Shared animation variants app...
92
17189 environmentalist-analyst rysweet/amplihack
Environmentalist Analyst Skill Purpose Analyze events through the disciplinary lens of environmental science and ecology, applying ecological principles (energy flow, nutrient cycling, succession), systems thinking, conservation biology frameworks, and sustainability science to understand ecosystem dynamics, evaluate biodiversity impacts, assess climate and pollution effects, and determine long-term environmental sustainability and resilience. When to Use This Skill Environmental Policy Analys...
92
17190 rednote-skill mrmao007/rednote-skills
Rednote Skill This skill allows you to fully interact with the Xiaohongshu (Little Red Book) platform. You can search for posts by keyword and return results, extract content from specific notes to structured markdown format, and perform engagement actions like liking, commenting, collecting, following users, and more. Configuration and Preparation Requirements Python 3.7+ Playwright (install with pip install playwright ) Playwright drivers (install with playwright install ) Configured browser e...
91
17191 feishu-doc-orchestrator rosalynyang/feishu-doc-creator-skill
将 Markdown 文件转换为飞书文档,支持25种块类型,完整权限管理。 快速开始 1. 配置飞书应用 首次使用需要配置飞书开放平台应用信息: ``` python .claude/skills/feishu-doc-orchestrator/scripts/setup_config.py ``` 或手动创建配置文件 `.claude/feishu-config.env`: ``` 从 https://open.feishu.cn/ 获取 FEISHU_APP_ID = "cli_xxx" FEISHU_APP_SECRET = "xxxxxxxx" 可选:自动添加文档权限 FEISHU_AUTO_COLLABORATOR_ID = "ou_xxx" 可选:默认文件夹 FEISHU_DEFAULT_FOLDER = "folder_token" ``` 2. 检查配置 ``` python .claude/skills/feishu-doc-orchestrator/scripts/check_config.py ``` 3. 使用技能 `...
91
17192 migrate from openai app modelcontextprotocol/ext-apps
Migrate OpenAI App to MCP Migrate existing OpenAI Apps SDK applications to the MCP Apps SDK ( @modelcontextprotocol/ext-apps ). The MCP Apps SDK provides a standardized, open protocol for interactive UIs in conversational clients. Best Practices Use your package manager to add dependencies (e.g., npm install , pnpm add , yarn add ) instead of manually writing version numbers. This lets the package manager resolve the latest compatible versions. Never specify version numbers from memory. Preempti...
91
17193 semantic-html schalkneethling/webdev-agent-skills
Semantic HTML Write HTML that conveys meaning, serves all users, and respects the web platform. When to Use This Skill Use this skill when: Creating new components or page sections Reviewing markup for accessibility and semantics Deciding between native HTML elements and ARIA attributes Structuring documents with proper heading hierarchy Making interactive elements accessible Building forms with proper labelling and error handling Creating responsive tables Core Principles Content Realism D...
91
17194 tax-housing-loan-context kazukinagata/shinkoku
住宅ローン控除コンテキスト(Housing Loan Tax Credit Context) このスキルは住宅ローン控除(租税特別措置法第41条)に関する判定・計算コンテキストを提供する。 住宅ローン控除の情報提供 住宅ローン控除に関する回答を行う際は、 references/housing-loan.md を読み込んで以下を実行する: 適用要件(住宅・所得・ローン要件)を確認し、ユーザーへの判定フローに沿って案内する 借入限度額・控除率・控除期間を令和7年分の値で提示する 子育て世帯・若者夫婦世帯の上乗せ措置の適用可否を確認する ふるさと納税との相互影響を説明する(必要な場合) 重複適用(中古購入+リフォーム同時)の計算が必要な場合は按分計算を行う 参照ファイル ファイル 内容 references/housing-loan.md 控除額・借入限度額テーブル・適用要件・判定フロー・重複適用の計算例
91
17195 obsidian-markdown freestylefly/canghe-skills
Obsidian Flavored Markdown Skill Create and edit valid Obsidian Flavored Markdown. Obsidian extends CommonMark and GFM with wikilinks, embeds, callouts, properties, comments, and other syntax. This skill covers only Obsidian-specific extensions -- standard Markdown (headings, bold, italic, lists, quotes, code blocks, tables) is assumed knowledge. Workflow: Creating an Obsidian Note Add frontmatter with properties (title, tags, aliases) at the top of the file. See PROPERTIES.md for all property t...
91
17196 translate tuesd4y/agent-skills
Translation Skill Translate new entries in XLF translation files by finding state="new" targets, locating source context, and proposing translations for review. Workflow Step 1: Find Changed Translation Files Run these commands to find changed translation files: git diff --name-only | grep -E 'messages\.[a-z]{2}\.xlf$' git diff --cached --name-only | grep -E 'messages\.[a-z]{2}\.xlf$' Combine results and deduplicate. If no changed translation files found, inform the user. Step 2: Extract New Tra...
91
17197 ralph-loop belumume/claude-skills
Ralph Loop Complete setup for automated agent-driven development. Define features as user stories with testable acceptance criteria, then run AI agents in a loop until all stories pass. Prerequisites Complete these recipes first (in order): AI Coding Agent Configuration Configure AI coding agents like Cursor, GitHub Copilot, or Claude Code with project-specific patterns, coding guidelines, and MCP servers for consistent AI-assisted development. curl -H "Accept: text/markdown" https://fulls...
91
17198 threat-mitigation-mapping sickn33/antigravity-awesome-skills
Threat Mitigation Mapping Connect threats to controls for effective security planning. When to Use This Skill Prioritizing security investments Creating remediation roadmaps Validating control coverage Designing defense-in-depth Security architecture review Risk treatment planning Core Concepts 1. Control Categories Preventive ────► Stop attacks before they occur │ (Firewall, Input validation) │ Detective ─────► Identify attacks in progress │ (IDS, Log monito...
91
17199 debug vltansky/debug-skill
/debug If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Run a structured debugging session to find and fix issues systematically. Usage /debug $ARGUMENTS How It Works ┌─────────────────────────────────────────────────────────────────┐ │ DEBUG │ ├─────────────────────────────────────────────────────────────────┤ │ Step 1: REPRODUCE │ │ ✓ U...
91
17200 ai-chat andrelandgraf/fullstackrecipes
AI Chat Build a complete AI chat application with database persistence, chat list management, and automatic title generation. Prerequisites Complete these recipes first (in order): Type-Safe Environment Configuration Type-safe environment variable validation using Zod with a Drizzle-like schema API. Supports server/public fields, feature flags, either-or constraints, and client-side protection. curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/config-schema-setup Ne...
91