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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
28,583
总 Skills
198.3M
总安装量
2,789
贡献者
# Skill 仓库 描述 安装量
27901 salesloft membranedev/application-skills
Salesloft Salesloft is a sales engagement platform that helps sales teams automate and personalize their outreach. It's used by sales development representatives (SDRs) and account executives to manage communications and track engagement with prospects. Official docs: https://developers.salesloft.com/ Salesloft Overview Account Cadence Cadence Enrollment Contact Do Not Contact List Person Team Meeting User Use action names and parameters as needed. Working with Salesloft This skill uses the Memb...
35
27902 code-review carvalab/k-skills
Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process 1. Pin ...
35
27903 python-executor inference-sh/agent-skills
Install the belt CLI skill: npx skills add belt-sh/cli Python Code Executor Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs 12 Repository inference-sh/skills GitHub Stars 725 First Seen Feb 1, 2026 Security Audits Gen Agent Trust Hub Warn Socket Warn Snyk Warn
35
27904 mocking-assistant patricio0312rev/skills
Mocking Assistant Create reliable mocks for APIs and services in tests. MSW API Mocking // mocks/handlers.ts import { http, HttpResponse } from "msw"; export const handlers = [ // GET endpoint http.get("/api/users/:id", ({ params }) => { const { id } = params; return HttpResponse.json({ id, name: "John Doe", email: "john@example.com", }); }), // POST endpoint http.post("/api/users", async ({ request }) => { const body = await request.json(); ...
35
27905 vercel-react-best-practices guanyang/antigravity-skills
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
35
27906 vercel-blob ovachiever/droid-tings
Vercel Blob Last Updated: 2026-01-21 Version: @vercel/blob@2.0.0 Skill Version: 2.1.0 Quick Start Create Blob store: Vercel Dashboard → Storage → Blob vercel env pull .env.local Creates BLOB_READ_WRITE_TOKEN npm install @vercel/blob Server Upload: 'use server'; import { put } from '@vercel/blob'; export async function uploadFile(formData: FormData) { const file = formData.get('file') as File; const blob = await put(file.name, file, { access: 'public' }); return blob.url; } CRITI...
35
27907 release-bump mikeyobrien/ralph-orchestrator
Release Bump Overview Bump version and trigger release for ralph-orchestrator. All versions live in workspace Cargo.toml - individual crates inherit via version.workspace = true. Quick Reference Step Command/Action 1. Bump version Edit Cargo.toml: replace all version = "X.Y.Z" (7 occurrences) 2. Build cargo build (updates Cargo.lock) 3. Test cargo test 4. Commit git add Cargo.toml Cargo.lock && git commit -m "chore: bump to vX.Y.Z" 5. Push git push origin main 6. Tag git tag vX.Y.Z && git push...
35
27908 baoyu-image-gen smallnest/langgraphgo
Image Generation (AI SDK) Official API-based image generation. Supports OpenAI, Google, OpenRouter, DashScope (阿里通义万象), Jimeng (即梦), Seedream (豆包) and Replicate providers. Script Directory Agent Execution : {baseDir} = this SKILL.md file's directory Script path = {baseDir}/scripts/main.ts Resolve ${BUN_X} runtime: if bun installed → bun ; if npx available → npx -y bun ; else suggest installing bun Step 0: Load Preferences ⛔ BLOCKING CRITICAL : This step MUST complete BEFORE any image generation....
35
27909 figma-ui-skills ihlamury/design-skills
Figma UI Skills Opinionated constraints for building Figma-style interfaces with AI agents. When to Apply Reference these guidelines when: Building light-mode interfaces Creating Figma-inspired design systems Implementing UIs with Inter font and 4px grid Colors SHOULD use light backgrounds for primary surfaces MUST use FFFFFF as page background ( surface-base ) MUST use BEBAF6 for primary actions and focus states ( accent ) SHOULD reduce color palette (currently 12 colors detected) MUST maintain...
35
27910 unlayer-custom-tools unlayer/unlayer-skills
Build Custom Tools Overview Custom tools are drag-and-drop content blocks you create for the Unlayer editor. Each tool needs: A renderer (what users see in the editor) Exporters (HTML output — must be table-based for email) Property editors (the settings panel) Complete Example: Product Card This is a fully working custom tool with an image, title, price, and buy button: unlayer . registerTool ( { name : 'product_card' , label : 'Product Card' , icon : 'fa-shopping-cart' , supportedDisplayModes ...
35
27911 convex-components fluid-tools/claude-skills
Authoring Convex Components Overview Convex components are isolated, reusable backend modules that can be packaged and shared. Each component has its own schema, functions, and namespace, enabling modular architecture and library distribution via NPM. TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause build failures. When to Use This Skill Use this skill when: Building reusable backend modules for your app Packag...
35
27912 tool-function-schema-designer patricio0312rev/skills
Tool/Function Schema Designer Design robust tool schemas that LLMs can reliably invoke. Function Schema Format // OpenAI function calling format const searchDocsTool = { type : "function" , function : { name : "search_documentation" , description : "Search through product documentation using semantic search. Use this when the user asks about features, how-tos, or troubleshooting." , parameters : { type : "object" , properties : { query : { type : "string" , description : "The search query, phras...
35
27913 security-policy-generator jeremylongshore/claude-code-plugins-plus-skills
Security Policy Generator Purpose This skill provides automated assistance for security policy generator tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "security policy generator" in your request Ask about security policy generator patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step guidance f...
35
27914 webperf-interaction nucliweb/webperf-snippets
WebPerf: Interaction & Animation JavaScript snippets for measuring web performance in Chrome DevTools. Execute with mcp__chrome-devtools__evaluate_script , capture output with mcp__chrome-devtools__get_console_message . Scripts scripts/Input-Latency-Breakdown.js — Input Latency Breakdown scripts/Interactions.js — Interactions scripts/Layout-Shift-Loading-and-Interaction.js — Layout Shift Tracking scripts/Long-Animation-Frames-Helpers.js — LoAF Helpers scripts/Long-Animation-Frames-Script-Attribu...
35
27915 plan-self-review hrdtbs/agent-skills
Score Plan (100pt): Evaluate clarity (25), comprehensiveness (25), feasibility (25), and consistency (25). List Deficiencies: Create a prioritized task list ( - [ ] ) of gaps, omissions, or ambiguities. Improve: Edit the Plan to resolve deficiencies. Final Check: Confirm no logical contradictions or missing elements.
35
27916 helios-skills bintzgavin/helios-skills
Helios Skills Collection This repository contains agent skills for Helios , a browser-native video engine for programmatic animation and rendering. Installation This is a collection repository containing multiple skills. To use these skills, install individual skills by their path: Getting started npx skills add BintzGavin/helios-skills/skills/getting-started Core skills npx skills add BintzGavin/helios-skills/skills/core npx skills add BintzGavin/helios-skills/skills/renderer npx skills add B...
35
27917 humanizer-tw yelban/orz99-skills
Humanizer-tw: 去除中文 AI 寫作痕跡 你是一位文字編輯,專門識別和去除中文 AI 生成文字的痕跡,使文字更自然、更有人味、更像台灣人寫的。 注意: 本 Skill 專注於去除 AI 痕跡、黑話與用語在地化。若需深度的字數精簡與節奏打磨,請搭配 good-writing-zh。建議順序:先 humanizer-tw(去毒)→ 再 good-writing-zh(打磨節奏)。 文體感知 處理文字前,先判斷文體: 正式文體 (公文、法律、技術文件、財報、API 文件)→ 僅執行 :去開場白、去結尾套話、去互聯網黑話、中國用語→台灣用語。 停用 「個性與靈魂」和「書面語口語化」規則。 非正式文體 (部落格、社群貼文、散文、一般文章)→ 全面啟用 所有規則,包含個性注入。 核心規則速查 刪除開場套話 — 「隨著...的發展」「眾所周知」直接刪除 減少連接詞 — 「此外」「與此同時」「首先...其次...最後」大量刪減 替換互聯網黑話 — 「賦能」→「幫助」、「痛點」→「問題」、「底層邏輯」→「核心原理」 修正翻譯腔與中式 AI 句型 — 「這是一個...的事情」→直接說、「對 X...
35
27918 typescript-async-patterns thebushidocollective/han
Master asynchronous programming patterns in TypeScript, including Promises, async/await, error handling, async iterators, and advanced patterns for building robust async applications. Promises and async/await Basic Promise Creation ``` // Creating a Promise function delay(ms: number): Promise<void> { return new Promise((resolve) => { setTimeout(resolve, ms); }); } // Promise with value function fetchUserData(userId: string): Promise<User> { return new Promise((resolve, reject) =>...
35
27919 ultrawork yeachan-heo/oh-my-codex
Activates maximum performance mode with parallel agent orchestration. When Activated This skill enhances Claude's capabilities by: - Parallel Execution: Running multiple agents simultaneously for independent tasks - Aggressive Delegation: Routing tasks to specialist agents immediately - Background Operations: Using `run_in_background: true` for long operations - Persistence Enforcement: Never stopping until all tasks are verified complete - Smart Model Routing: Using tiered agents to sav...
35
27920 ar-filter-generation eachlabs/skills
AR Filter Generation Generate creative AR filters and face effects using each::sense. This skill creates images and videos for AR filter concepts, face tracking effects, and social media face filters for platforms like Instagram, Snapchat, and TikTok. Features Face Filters : Animal ears, noses, whiskers, and character overlays Beauty Effects : Skin smoothing, contouring, and enhancement filters Makeup AR : Virtual lipstick, eyeshadow, blush, and full makeup looks Accessories : Sunglasses, hats, ...
35
27921 claw-multi-agent zcyynl/claw-multi-agent
claw-multi-agent 🐝 Replace one AI with a team of AIs. Turn serial into parallel. Turn hours into minutes. What can it do? Scenario Example Speedup Parallel research Search 5 frameworks simultaneously, each writes a report ~65% ⚡ Multi-model compare Ask Claude, Gemini, Kimi the same question at the same time ~50% ⚡ Code pipeline Plan → Code → Review, auto hand-off in sequence Quality ↑ Batch processing Translate / analyze / summarize multiple docs in parallel Scales linearly ⚡ Get started in 30 s...
35
27922 ai-ml-integration miles990/claude-software-skills
AI/ML Integration Overview Integrating AI and machine learning capabilities into applications, including LLM APIs, embeddings, and RAG patterns. LLM Integration OpenAI API import OpenAI from 'openai' ; const openai = new OpenAI ( { apiKey : process . env . OPENAI_API_KEY , } ) ; // Chat completion async function chat ( messages : Array < { role : string ; content : string } > ) { const response = await openai . chat . completions . create ( { model : 'gpt-4o' , messages , temperature : 0.7 , max...
35
27923 root-cause-tracing nickcrew/claude-ctx-plugin
Root Cause Tracing Overview Bugs often manifest deep in the call stack (git init in wrong directory, file created in wrong location, database opened with wrong path). Your instinct is to fix where the error appears, but that's treating a symptom. Core principle: Trace backward through the call chain until you find the original trigger, then fix at the source. When to Use digraph when_to_use { "Bug appears deep in stack?" [ shape = diamond ] ; "Can trace backwards?" [ shape = diamond ] ; "Fix at ...
35
27924 dev-terminal parkerhancock/dev-terminal
Dev Terminal Skill Terminal automation that maintains PTY sessions across script executions. Run TUI applications, send keystrokes, capture screen output, and debug terminal apps - all with persistent state. Setup Start the server in a background terminal: cd dev-terminal && npm install && ./server.sh & Wait for the Ready message before running scripts. Headed Mode (Optional) For visual debugging, start with browser UI: cd dev-terminal && ./server.sh --headed & This opens a browser wi...
35
27925 unity-skills besty0728/unity-skills
Unity Skills Use this skill when the user wants to automate the Unity Editor through the local UnitySkills REST server. Current package snapshot: 512 REST skills 14 advisory design modules Unity maintenance baseline: 2022.3+ Default request timeout: 15 minutes Core Rules When the user mentions a specific Unity version, route first: import unity_skills unity_skills . set_unity_version ( "2022.3" ) When the task touches 2+ objects, prefer *_batch skills instead of looping single-item skills. When ...
35
27926 sobriety-tools-guardian erichowens/some_claude_skills
Sobriety Tools Guardian Mission : Keep sobriety.tools fast enough to save lives. A fentanyl addict in crisis has seconds, not minutes. The app must load instantly, work offline, and surface help before they ask. Why Performance Is Life-or-Death CRISIS TIMELINE: 0-30 seconds: User opens app in distress 30-60 seconds: Looking for sponsor number or meeting 60-120 seconds: Decision point - call someone or use 2+ minutes: If still searching, may give up EVERY SECOND OF LOAD TIME = LIVES AT RISK C...
35
27927 installing-tigris-storage tigrisdata/skills
Tigris Storage is a high-performance object storage system for multi-cloud environments. This skill covers installation and configuration. Quick Setup 1. Install the Package ``` npm install @tigrisdata/storage or yarn add @tigrisdata/storage ``` 2. Create Account Resources - Create Tigris account: [https://storage.new](https://storage.new) - Create bucket: [https://console.tigris.dev/createbucket](https://console.tigris.dev/createbucket) - Create access key: [https://console.tigris.d...
35
27928 password-strength-analyzer jeremylongshore/claude-code-plugins-plus-skills
Password Strength Analyzer Purpose This skill provides automated assistance for password strength analyzer tasks within the Security Fundamentals domain. When to Use This skill activates automatically when you: Mention "password strength analyzer" in your request Ask about password strength analyzer patterns or best practices Need help with essential security skills covering authentication, input validation, secure coding practices, and basic vulnerability detection. Capabilities Provides step-b...
35
27929 linkedin-announcement-generator nicepkg/ai-workflow
LinkedIn Announcement Generator Overview This skill automates the creation of professional LinkedIn announcements for intelligent textbooks. It analyzes book metrics from the docs/learning-graph/ directory, gathers statistics about chapters, concepts, and educational resources, and generates engaging announcement text with relevant hashtags and links to the published site. The announcements are designed to highlight the scope and completeness of the textbook, showcase its educational features, a...
35
27930 content-humanizer oakoss/agent-skills
Content Humanizer You are an expert in authentic writing and brand voice. Your goal is to transform content that reads like it was generated by a machine — even when it technically was — into writing that sounds like a real person with real opinions, real experience, and real stakes in what they're saying. This is not a cleaning service. You're not just removing "delve" and calling it a day. You're rebuilding the voice from the ground up. Before Starting Check for context first: If marketing-con...
35
27931 magento-magewire-specialist maxnorm/magento2-agent-skills
Magento 2 Magewire Specialist Expert specialist in creating dynamic, reactive Magento 2 interfaces using Magewire's Laravel Livewire-inspired component system. When to Use Building reactive components Creating real-time interfaces Implementing server-side rendering Building interactive UI without complex JavaScript Working with Magewire components Magewire Framework Component Architecture Component Design : Expert in Magewire component design and lifecycle Reactive Programming : Implement reacti...
35
27932 data-enrichment merit-systems/agentcash-skills
Prereq: read bulk-operations/SKILL.md first — JSONL piping, dry-run/digest, history, and rate-limit hygiene live there. This skill is the upsert-by-natural-key workflow on top. The core move: upsert, not search-then-create hubspot objects upsert --type X --id-property <natural-key> reads JSONL on stdin and creates-or-updates each row in one CLI call per record , keyed by a property (email for contacts, domain for companies). No race window, no branching. Do not loop search → empty? → create . Pe...
35
27933 luau-type-expert dig1t/skills
Luau Type Expert Expert guidance for writing type-safe, clean Luau code that passes strict type checking. Type Modes Always use --!strict at file top. Three modes exist: Mode Behavior --!nocheck Disables type checking entirely --!nonstrict Unknown types become any (default) --!strict Full type tracking, catches mismatches Type Annotation Syntax --!strict -- Variables local count : number = 0 local name : string = "Player" local active : boolean = true -- Functions local function add ( a : number...
35
27934 ssrf-testing ed1s0nz/cyberstrikeai
SSRF服务器端请求伪造测试 概述 SSRF(Server-Side Request Forgery)是一种利用服务器发起请求的漏洞,可以访问内网资源、进行端口扫描或绕过防火墙。本技能提供SSRF漏洞的检测、利用和防护方法。 漏洞原理 应用程序接受URL参数并请求该URL,攻击者可以控制请求的目标,导致: 内网资源访问 本地文件读取 端口扫描 绕过防火墙 云服务元数据访问 测试方法 1. 识别SSRF输入点 常见功能: URL预览/截图 文件上传(远程URL) Webhook回调 API代理 数据导入 图片处理 PDF生成 2. 基础检测 测试本地回环: http://127.0.0.1 http://localhost http://0.0.0.0 http://[::1] 测试内网IP: http://192.168.1.1 http://10.0.0.1 http://172.16.0.1 测试文件协议: file:///etc/passwd file:///C:/Windows/System32/drivers/etc/hosts 3. 绕过技术 IP地址编码: 127.0.0...
35
27935 ai-tech-fulltext-fetch tiangong-ai/skills
AI Tech Fulltext Fetch Core Goal Reuse the same SQLite database populated by ai-tech-rss-fetch . Fetch article body text from each RSS entry URL. Persist extraction status and text in a companion table ( entry_content ). Support incremental runs and safe retries without creating duplicate fulltext rows. Triggering Conditions Receive a request to fetch article body/full text for entries already in ai_rss.db . Receive a request to build a second-stage pipeline after RSS metadata sync. Need a stabl...
35
27936 smooth-browser circlemind-ai/smooth-sdk
Smooth Browser Smooth CLI is a browser for AI agents to interact with websites, authenticate, scrape data, and perform complex web-based tasks using natural language. Prerequisites Assume the Smooth CLI is already installed. If not, you can install it by running: pip install smooth-py Assume an API key is already configured. If you encounter authentication errors, configure it with: smooth config --api-key < api-key > To verify the configuration: smooth config --show Get an API key at https://ap...
35
27937 gsc-assistant nicepkg/ai-workflow
GSC Assistant Skill Purpose This skill helps manage Google Search Console indexing status by maintaining two markdown tracking files: indexed.md - All indexed pages in two tables: "Indexed Public" - URLs confirmed in GSC export data "Indexed With Lag" - URLs confirmed via URL Inspection (not yet in export) to-index.md - Pages awaiting indexing: Difference between sitemap and total indexed URLs Prioritized by categories (configurable) Tracks submission dates When to Use This Skill User asks about...
35
27938 db-performance-watchlist patricio0312rev/skills
DB Performance Watchlist Monitor database performance and prevent regressions. Key Performance Metrics // performance-metrics.ts export interface DBMetrics { // Query Performance slowQueries : { threshold : number ; // ms count : number ; queries : SlowQuery [ ] ; } ; // Connection Pool connections : { active : number ; idle : number ; total : number ; maxConnections : number ; utilizationPercent : number ; } ; // Resource Usage resources : { cpuPercent : number ; memoryPercent : number ; diskUs...
35
27939 infrastructure-code-synthesis qodex-ai/ai-agent-skills
AWS CDK Development This skill provides comprehensive guidance for developing AWS infrastructure using the Cloud Development Kit (CDK), with integrated MCP servers for accessing latest AWS knowledge and CDK utilities. AWS Documentation Requirement CRITICAL : This skill requires AWS MCP tools for accurate, up-to-date AWS information. Before Answering AWS Questions Always verify using AWS MCP tools (if available): mcp__aws-mcp__aws___search_documentation or mcp__*awsdocs*__aws___search_documentati...
35
27940 moai-platform-auth modu-ai/moai-adk
Authentication Platform Specialist Comprehensive authentication and authorization guidance covering three major platforms: Auth0 (enterprise security), Clerk (modern UX), and Firebase Auth (mobile-first). Quick Platform Selection Auth0 - Enterprise Security Enterprise-grade identity platform focused on security compliance and attack protection. Best For: Enterprise applications requiring strong compliance (FAPI, GDPR, HIPAA), sophisticated attack protection, token security with sender constraini...
35
27941 interview-prep jamditis/claude-skills-journalism
Interview Prep Create structured interview plans to evaluate candidates consistently and fairly. Interview Design Principles Structured : Same questions for all candidates in the role Competency-based : Map questions to specific skills and behaviors Evidence-based : Use behavioral and situational questions Diverse panel : Multiple perspectives reduce bias Scored : Use rubrics, not gut feelings Interview Plan Components Role Competencies Define 4-6 key competencies for the role (e.g., technical s...
35
27942 nano-banana-pro enzed/skills
Nano Banana Pro Image Generation & Editing Generate new images or edit existing ones using Google's Nano Banana Pro API (Gemini 3 Pro Image). Usage Run the script using absolute path (do NOT cd to skill directory first): Generate new image: uv run ~/.claude/skills/nano-banana-pro/scripts/generate_image.py --prompt "your image description" --filename "output-name.png" [--resolution 1K|2K|4K] [--api-key KEY] Edit existing image: uv run ~/.claude/skills/nano-banana-pro/scripts/generate_imag...
35
27943 content-security-scan oimiragieo/agent-studio
Content Security Scan Skill Overview This skill automates the security gate defined in Section 4 (Red Flag Checklist) and Section 5 (Gate Template) of: .claude/context/reports/security/external-skill-security-protocol-2026-02-20.md The gate protects the Research Gate steps in skill-creator , skill-updater , agent-creator , agent-updater , workflow-creator , and hook-creator — all of which fetch external content via gh api , WebFetch , or git clone before incorporating patterns. Core principle: S...
35
27944 nano-banana-poster aviz85/claude-skills-library
No SKILL.md available for this skill. View on GitHub
35
27945 openpyxl vamseeachanta/workspace-hub
Openpyxl is a Python library for reading and writing Excel 2010+ xlsx/xlsm files. This skill covers comprehensive patterns for spreadsheet automation including: - Workbook creation with multiple worksheets - Cell operations including formatting, merging, and data validation - Formula support for calculations and dynamic content - Chart generation for data visualization within Excel - Conditional formatting for visual data analysis - Large dataset handling with optimized read/write modes -...
35
27946 dependabot-pr-handler equinor/fusion-framework
Dependabot PR Handler Skill Automated skill for reviewing, validating, and safely merging Dependabot pull requests in the Fusion Framework monorepo. Dependencies : This skill uses: pnpm-dependency-analysis skill for impact assessment and blast radius calculation npm-research skill for changelog, security, and breaking changes analysis Operating Modes Default to Full mode unless the user explicitly chooses Audit-only or Validate. Audit-only : Research + build/test/lint locally. Comments optional....
35
27947 interaction-design petekp/agent-skills
Interaction Design Create engaging, intuitive interactions through motion, feedback, and thoughtful state transitions that enhance usability and delight users. When to Use This Skill Adding microinteractions to enhance user feedback Implementing smooth page and component transitions Designing loading states and skeleton screens Creating gesture-based interactions Building notification and toast systems Implementing drag-and-drop interfaces Adding scroll-triggered animations Designing hover and f...
35
27948 styled-components-helper jeremylongshore/claude-code-plugins-plus-skills
Styled Components Helper Purpose This skill provides automated assistance for styled components helper tasks within the Frontend Development domain. When to Use This skill activates automatically when you: Mention "styled components helper" in your request Ask about styled components helper patterns or best practices Need help with frontend skills covering react, vue, css, accessibility, performance optimization, and modern web development patterns. Capabilities Provides step-by-step guidance fo...
35
27949 moai-workflow-tdd modu-ai/moai-adk
Test-Driven Development (TDD) Workflow Development Mode Configuration (CRITICAL) [NOTE] This workflow is selected based on .moai/config/sections/quality.yaml : constitution : development_mode : tdd or ddd When to use this workflow : development_mode: tdd → Use TDD (this workflow, default) development_mode: ddd → Use DDD instead (moai-workflow-ddd) Key distinction : TDD (default): Test-first development for all work, including brownfield projects with pre-RED analysis DDD : Characterization-test...
35
27950 dotnet-dockerfile jkappers/agent-skills
.NET Dockerfile Generator Generate production-ready multi-stage Dockerfiles for .NET applications. Workflow Determine .NET version (8, 9, or 10) from project file or ask user Identify project type: ASP.NET Core web app, API, worker service, or console app Locate project file path (e.g., src/MyApp/MyApp.csproj) Choose optimization: standard, chiseled (smaller), or native AOT (smallest/fastest startup) Breaking Change in .NET 10: Ubuntu is now the default Linux distribution for all .NET contain...
35