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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
18551 marketing-skills dirnbauer/webconsulting-skills
Marketing Skills Division 42 production-ready marketing skills organized into 7 specialist pods with a context foundation and orchestration layer. Quick Start Claude Code /read marketing-skill/marketing-ops/SKILL.md The router will direct you to the right specialist skill. Codex CLI codex --full-auto "Read marketing-skill/marketing-ops/SKILL.md, then help me write a blog post about [topic]" OpenClaw Skills are auto-discovered from the repository. Ask your agent for marketing help — it routes via...
38
18552 tensorflow-neural-networks thebushidocollective/han
TensorFlow Neural Networks Build and train neural networks using TensorFlow's high-level Keras API and low-level custom implementations. This skill covers everything from simple sequential models to complex custom architectures with multiple outputs, custom layers, and advanced training techniques. Sequential Models with Keras The Sequential API provides the simplest way to build neural networks by stacking layers linearly. Basic Image Classification import tensorflow as tf from tensorflow i...
38
18553 openai-agents ovachiever/droid-tings
OpenAI Agents SDK Build AI applications with text agents, voice agents (realtime), multi-agent workflows, tools, guardrails, and human-in-the-loop patterns. Quick Start npm install @openai/agents zod@4 v0.4.0+ requires Zod 4 (breaking change) npm install @openai/agents-realtime Voice agents export OPENAI_API_KEY="your-key" Breaking Change (v0.4.0): Zod 3 no longer supported. Upgrade to zod@4. Runtimes: Node.js 22+, Deno, Bun, Cloudflare Workers (experimental) Core Concepts Agents: LLM...
38
18554 code-complexity-audit nkootstra/skills
Code Complexity Audit Deep software design analysis based on "A Philosophy of Software Design" by John Ousterhout. Produces a Design Health Report with severity-classified findings and git attribution. References Read this file first. Then load references as needed — do not read all at once . Reference Read when... references/analysis-framework.md Performing the analysis — contains scoring rubrics, dimension checklists, red flags, and language-specific guidance references/git-attribution.md Attr...
38
18555 safe-action-client next-safe-action/skills
next-safe-action Client & Action Definition Quick Start // src/lib/safe-action.ts import { createSafeActionClient } from "next-safe-action" ; export const actionClient = createSafeActionClient ( ) ; // src/app/actions.ts "use server" ; import { z } from "zod" ; import { actionClient } from "@/lib/safe-action" ; export const greetUser = actionClient . inputSchema ( z . object ( { name : z . string ( ) . min ( 1 ) } ) ) . action ( async ( { parsedInput : { name } } ) => { return { greeting : ` Hel...
38
18556 superplane-cli superplanehq/skills
SuperPlane CLI Operate a SuperPlane instance through the superplane CLI. Quick Reference Task Command Connect to org superplane connect <URL> <TOKEN> Who am I superplane whoami List/switch contexts superplane contexts List canvases superplane canvases list Create canvas superplane canvases create <name> then mode-aware update ( --draft when versioning is enabled) Create canvas from YAML superplane canvases create --file canvas.yaml then mode-aware update ( --draft when versioning is enabled) Exp...
38
18557 busirocket-rust busirocket/agents-skills
Strict, reusable standards for Rust codebases (libraries, CLIs, or backend services). When to Use Use this skill when: - Writing or refactoring Rust code - Structuring modules (services, utils, models) - Separating SQL queries or LLM prompts from Rust code - Enforcing one-thing-per-file discipline Non-Negotiables (MUST) - One public symbol per file (function / type / trait). - No inline SQL strings in `.rs` files; use dedicated SQL files with `include_str!()` (e.g. `sql/<area>/Xxx.sql...
38
18558 pytest manutej/luxor-claude-marketplace
pytest - Professional Python Testing Overview pytest is the industry-standard Python testing framework, offering powerful features like fixtures, parametrization, markers, plugins, and seamless integration with FastAPI, Django, and Flask. It provides a simple, scalable approach to testing from unit tests to complex integration scenarios. Key Features: Fixture system for dependency injection Parametrization for data-driven tests Rich assertion introspection (no need for self.assertEqual) Plugi...
38
18559 mermaid mitsuhiko/agent-stuff
Mermaid Diagram Visualizer Quick Start: Identify diagram type (flowchart/sequence/state/class/ER/gantt/mindmap) → Define nodes with shapes → Connect with arrows → Wrap in ```mermaid fence. Default: top-to-bottom ( TD ), use flowchart over graph , Unicode supported. Critical Syntax Rules Rule 1: List Syntax Conflicts ❌ [1. Item] → "Unsupported markdown: list" ✅ [1.Item] → Remove space after period ✅ [① Item] → Use circled numbers ①②③④⑤⑥⑦⑧⑨⑩ ✅ [(1) Item] → Use parentheses Rule 2: ...
38
18560 kling-video refly-ai/refly-skills
Kling Video Generate AI videos using Kling video generation models. Use when you need to: (1) create videos from text prompts, (2) animate images into videos, (3) transform existing videos with AI, or (4) create AI avatar videos with speech. Input Provide input as JSON: { "video_prompt" : "Text description for the video you want to generate (e.g., 'A cat walking in a futuristic city at sunset')" , "image_url" : "<file-id>" , "video_url" : "<file-id>" , "model_version" : "Kling model to use: 'o1'...
38
18561 clean-code-dotnet thapaliyabikendra/ai-artifacts
Clean Code .NET Clean Code principles from Robert C. Martin, adapted for C/.NET. Use as checklist during code reviews and refactoring. Naming Use Meaningful Names // ❌ Bad int d ; var dataFromDb = db . GetFromService ( ) . ToList ( ) ; // ✅ Good int daySinceModification ; var employees = _employeeService . GetEmployees ( ) . ToList ( ) ; Avoid Hungarian Notation // ❌ Bad int iCounter ; string strFullName ; public bool IsShopOpen ( string pDay , int pAmount ) { } // ✅ Good int counter ; string fu...
38
18562 sap-btp-build-work-zone-advanced secondsky/sap-skills
This skill provides comprehensive guidance for implementing SAP Build Work Zone, advanced edition - a digital workplace platform for unified access to business applications, processes, and collaboration. When to Use This Skill Use this skill when: - Creating workspaces, workpages, and collaborative sites - Developing UI Integration Cards in SAP Business Application Studio - Building and deploying content packages - Creating workspace templates - Integrating with Microsoft 365, Teams, Sha...
38
18563 docker-local-dev thienanblog/awesome-ai-agent-skills
Docker Local Development Environment Generator Overview This skill helps you create optimized Docker development environments for your projects. It generates docker-compose.yml, Dockerfile, and related configurations through an interactive, question-driven workflow. When to use this skill: Setting up a new Docker development environment Dockerizing an existing project for local development Adding services (database, Redis, email testing) to your Docker setup Updating or merging with existing ...
38
18564 ai-context meteor/meteor
AI Context Documentation How to write and maintain the structured documentation that AI coding assistants consume. File Hierarchy AGENTS.md Root context — always loaded by agents CLAUDE.md Required for Claude Code (loads AGENTS.md) .github/skills/<topic>/SKILL.md On-demand detailed context packages/<name>/AGENTS.md Package-specific context <any-folder>/AGENTS.md Folder-specific context Root Files AGENTS.md A...
38
18565 pii-redaction-logging-policy-builder patricio0312rev/skills
PII Redaction & Logging Policy Builder Protect user privacy in application logs. PII Redaction const PII_PATTERNS = { email: /\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b/g, ssn: /\b\d{3}-\d{2}-\d{4}\b/g, phone: /\b\d{3}[-.]?\d{3}[-.]?\d{4}\b/g, creditCard: /\b\d{4}[\s-]?\d{4}[\s-]?\d{4}[\s-]?\d{4}\b/g, }; function redactPII(message: string): string { let redacted = message; Object.entries(PII_PATTERNS).forEach(([type, pattern]) => { redacted = redacted.replace(pattern,...
38
18566 lang-typescript ravnhq/ai-toolkit
Principles Enable strict mode — no implicit any, strict null checks Prefer discriminated unions over type assertions Use unknown over any — narrow with type guards Rules See rules index for detailed patterns. Examples Positive Trigger User: "Replace unsafe any usage with discriminated unions in this module." Expected behavior: Use lang-typescript guidance, follow its workflow, and return actionable output. Non-Trigger User: "Design REST route naming conventions for a new backend." Expected behav...
38
18567 browser-automation femto/skills
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
38
18568 mailchimp-automation davepoon/buildwithclaude
Mailchimp Automation via Rube MCP Automate Mailchimp email marketing workflows including campaign creation and sending, audience/list management, subscriber operations, segmentation, and performance analytics through Composio's Mailchimp toolkit. Toolkit docs : composio.dev/toolkits/mailchimp Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Mailchimp connection via RUBE_MANAGE_CONNECTIONS with toolkit mailchimp Always call RUBE_SEARCH_TOOLS first to get current tool ...
38
18569 safe-action-forms next-safe-action/skills
next-safe-action Form Integration Options Approach When to Use useAction + native form Simple forms, no complex validation UI useHookFormAction (RHF adapter) Complex forms with field-level errors, validation on change/blur useHookFormOptimisticAction RHF forms with optimistic UI updates Quick Start — Native Form "use client" ; import { useAction } from "next-safe-action/hooks" ; import { submitContact } from "@/app/actions" ; export function ContactForm ( ) { const { execute , result , isPending...
38
18570 literature-review poemswe/co-researcher
Literature Review Overview Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats. This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and do...
38
18571 sip-protocol-fundamentals thebushidocollective/han
Master the Session Initiation Protocol (SIP) for building VoIP applications, understanding SIP messages, methods, and call flows essential for real-time communications. Understanding SIP SIP is an application-layer signaling protocol defined in RFC 3261 for creating, modifying, and terminating sessions with one or more participants. SIP Message Structure ``` INVITE sip:bob@biloxi.com SIP/2.0 Via: SIP/2.0/UDP pc33.atlanta.com;branch=z9hG4bK776asdhds Max-Forwards: 70 To: Bob <sip:bob@biloxi....
38
18572 docusign-automation davepoon/buildwithclaude
DocuSign Automation via Rube MCP Automate DocuSign e-signature workflows through Composio's DocuSign toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/docusign Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active DocuSign connection via RUBE_MANAGE_CONNECTIONS with toolkit docusign Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just ...
38
18573 wezterm dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
WezTerm Skill Use the wezterm CLI to control and interact with WezTerm terminal instances. CLI Location /Applications/WezTerm.app/Contents/MacOS/wezterm Or add to PATH for easier access. Listing and Connecting List all WezTerm panes: wezterm cli list List in JSON format: wezterm cli list --format json List clients (GUI windows): wezterm cli list-clients Pane Management Get current pane ID: wezterm cli get-pane-direction Split pane horizontally (new pane to right): wezterm cli ...
38
18574 kotlin-coroutines-expert sickn33/antigravity-awesome-skills
Kotlin Coroutines Expert Overview A guide to mastering asynchronous programming with Kotlin Coroutines. Covers advanced topics like structured concurrency, Flow transformations, exception handling, and testing strategies. When to Use This Skill Use when implementing asynchronous operations in Kotlin. Use when designing reactive data streams with Flow . Use when debugging coroutine cancellations or exceptions. Use when writing unit tests for suspending functions or Flows. Step-by-Step Guide 1. St...
38
18575 nansen-smart-money-tracker nansen-ai/nansen-cli
Smart Money All commands: nansen research smart-money <sub> [options] Subcommands Netflow — what tokens are smart money accumulating? nansen research smart-money netflow --chain solana --limit 10 DEX trades — real-time spot trades by smart money nansen research smart-money dex-trades --chain solana --labels "Smart Trader" --limit 20 Holdings — aggregated SM portfolio nansen research smart-money holdings --chain solana --limit 10 Perp trades — Hyperliquid only (no --chain needed) nansen resea...
38
18576 design-guide paperclipai/paperclip
Paperclip Design Guide Paperclip's UI is a professional-grade control plane — dense, keyboard-driven, dark-themed by default. Every pixel earns its place. Always use with: frontend-design (visual polish) and web-design-guidelines (web best practices). 1. Design Principles Dense but scannable. Maximum information without clicks to reveal. Whitespace separates, not pads. Keyboard-first. Global shortcuts (Cmd+K, C, [, ]). Power users rarely touch the mouse. Contextual, not modal. Inline editing ove...
38
18577 prompt-template-builder patricio0312rev/skills
Prompt Template Builder Build robust, reusable prompt templates with clear contracts and consistent outputs. Core Components System Prompt: Role, persona, constraints, output format User Prompt: Task, context, variables, examples Few-Shot Examples: Input/output pairs demonstrating desired behavior Output Contract: Strict format specification (JSON schema, Markdown structure) Style Rules: Tone, verbosity, formatting preferences Guardrails: Do's and don'ts, safety constraints System Prompt Tem...
38
18578 feature-image shpigford/skills
Generate a branded social media image for announcing a feature or update. The image is built as an HTML page styled to match the project's brand, then screenshotted with Playwright. Phase 1: Ensure Playwright is Available npx playwright --version 2 > /dev/null || ( echo "Installing Playwright..." && npx playwright install chromium ) If installation fails, inform the user and suggest npm install -D playwright && npx playwright install chromium . Phase 2: Understand What Changed (Git-Aware) Analyz...
38
18579 redbook-creator-publish yanquankun/redbook-creator-publish
小红书帖子创作与发布技能 概述 快速创作并发布小红书帖子,包括标题、正文、标签、配图,自动上传到小红书平台。 核心特点(v5.3) : 🚀 极简流程 :搜索 → 生成内容 → 获取配图 → 验证图片 → 自动上传 🖼️ 智能配图 :从网络下载公开图片或 AI 生成 ✅ 图片验证 :自动检测无效图片并删除,确保5-6张有效图片 📁 精简输出 :只生成 preview.html、config.json、images/ 🤖 自动上传 :直接触发,减少手动确认 🔐 登录检测 :智能检测登录状态,20秒等待提示 🐍 零依赖 :Python 原生能力为主 前置检查(第一步,自动执行) 检查 Python python3 --version 要求 3.7+ 全局检测并安装 Playwright 重要 : 只在未安装时才安装,避免重复安装 检查 playwright 是否已安装(全局检测) if python3 -c "import playwright" 2 > /dev/null ; then echo "✅ Playwright 已安装,跳过安装" else echo "📦 正在安装 Pla...
38
18580 configure-git-webserver letta-ai/skills
Configure Git Webserver Overview This skill provides guidance for setting up a Git-based web deployment system where pushing to a Git repository automatically deploys content to a web server. The typical workflow involves creating a bare Git repository, configuring a post-receive hook to deploy content, and running a web server to serve the deployed files. Approach Component Identification Before implementation, identify all required components: Bare Git repository - The central repository t...
38
18581 elixir-antipatterns gentleman-programming/gentleman-skills
Elixir Anti-Patterns Critical anti-patterns that compromise robustness and maintainability in Elixir/Phoenix applications. Complement with: mix format and Credo for style enforcement Extended reference: See EXTENDED.md for 40+ patterns and deep-dive examples When to Use Topics: Error handling (3 patterns) • Architecture (2 patterns) • Performance (2 patterns) • Testing (1 pattern) Load this skill when: Writing Elixir modules and functions Working with Phoenix Framework (Controllers, LiveVi...
38
18582 rss-automation aaaaqwq/claude-code-skills
RSS Automation Monitor and aggregate RSS/Atom feeds for automated content tracking and notification. Capabilities Parse RSS 2.0 and Atom feeds Filter entries by keywords, date, author Track seen/new entries to avoid duplicates Push new items to Telegram, Slack, or other channels Schedule periodic feed checks via cron Usage Parse a Feed import feedparser feed = feedparser . parse ( "https://example.com/feed.xml" ) for entry in feed . entries [ : 10 ] : print ( f" { entry . title } - { entry . lin...
38
18583 cpp htlin222/dotfiles
C++ Development Guidelines You are an expert in modern C++ development with deep knowledge of C++17/20 standards, memory management, and high-performance programming. Code Style and Structure Write clean, modern C++ code following C++17/20 standards Use meaningful variable and function names Follow the Single Responsibility Principle Prefer composition over inheritance Keep functions small and focused Naming Conventions Use PascalCase for classes and structs Use camelCase for functions, variab...
38
18584 distributing-tauri-for-ios dchuk/claude-code-tauri-skills
Distributing Tauri Apps for iOS This skill covers the complete process of distributing Tauri v2 applications to Apple's iOS App Store. Prerequisites Before distributing a Tauri iOS app, ensure: macOS development machine (required for iOS builds) Xcode installed with iOS SDK Apple Developer Program enrollment ($99/year) Tauri project initialized for iOS (tauri ios init) Apple Developer Program Enrollment Enroll at developer.apple.com/programs: Sign in with Apple ID Accept the Apple Develope...
38
18585 generic-fullstack-feature-developer travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
38
18586 hostinger-tools bsamiee/parametric_forge
[H1][HOSTINGER-TOOLS] Dictum: Unified interface reduces API complexity. Invokes Hostinger API through Python wrapper using HOSTINGER_TOKEN env var. [IMPORTANT] Zero-arg commands default to page=1 , limit=30 . Zero-arg commands uv run .claude/skills/hostinger-tools/scripts/hostinger.py vps-list uv run .claude/skills/hostinger-tools/scripts/hostinger.py firewall-list uv run .claude/skills/hostinger-tools/scripts/hostinger.py ssh-key-list uv run .claude/skills/hostinger-tools/scripts/hostinger.py ...
38
18587 migration-master gravito-framework/gravito
Migration Master You are a database administrator specialized in schema evolution. Your goal is to manage database changes safely and predictably. Workflow 1. Schema Planning Identify the necessary changes (New table, Add column, Drop index). Plan the Up (Apply) and Down (Rollback) operations. 2. Implementation Migration File : Create a timestamped file in database/migrations/ . Definition : Use the Atlas schema builder to define tables and columns. Seeding : (Optional) Implement seeders for ini...
38
18588 add-announcement agenta-ai/agenta
Add Announcement Card This skill helps you add announcement cards to the Agenta sidebar banner system. Announcement cards appear at the bottom of the sidebar and can be dismissed by users. System Overview The sidebar banner system is located at web/oss/src/components/SidebarBanners/ and uses: Priority-based queue : Only one banner shows at a time Auto-progression : When dismissed, the next highest priority banner appears Persistent dismissal : Uses localStorage to remember dismissed banners Jota...
38
18589 fetch-unresolved-comments mlflow/mlflow
Fetch Unresolved PR Review Comments Uses GitHub's GraphQL API to fetch only unresolved review thread comments from a pull request. When to Use You need to get only unresolved review comments from a PR You want to filter out already-resolved feedback Instructions Get PR URL : First check for environment variables: If PR_NUMBER and GITHUB_REPOSITORY are set, construct URL as https://github.com/${GITHUB_REPOSITORY}/pull/${PR_NUMBER} Otherwise: Use gh pr view --json url -q '.url' to get the current ...
38
18590 ai-sdk-ui ovachiever/droid-tings
AI SDK UI - Frontend React Hooks Frontend React hooks for AI-powered user interfaces with Vercel AI SDK v6. Version: AI SDK v6.0.42 (Stable) Framework: React 18+/19, Next.js 14+/15+ Last Updated: 2026-01-20 AI SDK v6 Stable (January 2026) Status: Stable Release Latest: ai@6.0.42, @ai-sdk/react@3.0.44, @ai-sdk/openai@3.0.7 Migration: Minimal breaking changes from v5 → v6 New UI Features in v6 1. Message Parts Structure (Breaking Change) In v6, message content is now accessed via .parts arra...
38
18591 altinity-expert-clickhouse-index-analysis altinity/skills
Diagnostics Run all queries from the file checks.sql and analyze the results. Deep Dive Queries (Placeholder-Based) EXPLAIN Index Usage for Specific Query EXPLAIN indexes = 1 {query_without_format} Look for: PrimaryKey condition should not be true (means no filtering) Granules: X/Y ratio shows selectivity (low X/Y = good) Skip indexes should reduce parts/granules further Column Cardinality Analysis SELECT { columns } APPLY uniq FROM { database } . { table } WHERE {time_column} > now ( ) - INTERV...
38
18592 dropbox-automation davepoon/buildwithclaude
Dropbox Automation via Rube MCP Automate Dropbox operations including file upload/download, search, folder management, sharing links, batch operations, and metadata retrieval through Composio's Dropbox toolkit. Toolkit docs : composio.dev/toolkits/dropbox Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Dropbox connection via RUBE_MANAGE_CONNECTIONS with toolkit dropbox Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://r...
38
18593 event-detection-temporal-intelligence-expert erichowens/some_claude_skills
Event Detection & Temporal Intelligence Expert Expert in detecting meaningful events from photo collections using spatio-temporal clustering, significance scoring, and intelligent photo selection for collages. When to Use This Skill ✅ Use for: Detecting events from photo timestamps + GPS coordinates Clustering photos by time, location, and visual content (ST-DBSCAN, DeepDBSCAN) Scoring event significance (birthday > commute) Predicting photo shareability for social media Recognizing life eve...
38
18594 excel-automation daymade/claude-code-skills
Excel Automation Skill Overview This skill enables advanced Excel automation using xlwings - a library that can interact with live Excel instances. Unlike openpyxl (file-only), xlwings can control Excel in real-time, execute VBA, update dashboards, and automate complex workflows. How to Use Describe the Excel automation task you need Specify if you need live Excel interaction or file processing I'll generate xlwings code and execute it Example prompts: "Update this live Excel dashboard with new ...
38
18595 helpdesk-automation davepoon/buildwithclaude
HelpDesk Automation via Rube MCP Automate HelpDesk ticketing operations through Composio's HelpDesk toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/helpdesk Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active HelpDesk connection via RUBE_MANAGE_CONNECTIONS with toolkit helpdesk Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just a...
38
18596 think-critically jbrukh/skills
Think Critically You are a critical analysis engine. Your job is to rigorously evaluate whether a prompt or document will produce the output the user expects when processed by an LLM. Inputs You will receive input from the user via $ARGUMENTS . This may contain: The Prompt/Document — a prompt, instruction set, design document, or specification intended to be processed by an LLM The Expected Output (optional) — what the user expects the LLM to produce when given that prompt. This can be a concret...
38
18597 use-findskill alentodorov/findskill-meta-skill
A meta skill that teaches AI agents how to discover, install, and use skills from the findskill.md ecosystem. Description This skill enables you to extend your capabilities by finding and installing specialized skills from the findskill.md registry. When a user asks you to do something you don't have a skill for, or when you need specialized functionality, use findskill to discover and install relevant skills. When to Use Findskill Use findskill when: - A user asks you to perform a task t...
38
18598 git-hygiene-enforcer patricio0312rev/skills
Git Hygiene Enforcer Enforce consistent, high-quality git practices across your team. Core Workflow Choose conventions: Select commit format (Conventional Commits, Angular, etc.) Setup commit hooks: Install commitlint with git hooks Configure branch rules: Define naming patterns and protection Create PR templates: Standardize pull request descriptions Add workflows: GitHub Actions or GitLab CI for automated checks Document process: Write CONTRIBUTING.md with git guidelines Provide bypasses: Do...
38
18599 genkit-dart genkit-ai/genkit-dart
Genkit Dart Genkit Dart is an AI SDK for Dart that provides a unified interface for code generation, structured outputs, tools, flows, and AI agents. Core Features and Usage If you need help with initializing Genkit ( Genkit() ), Generation ( ai.generate ), Tooling ( ai.defineTool ), Flows ( ai.defineFlow ), Embeddings ( ai.embedMany ), streaming, or calling remote flow endpoints, please load the core framework reference: references/genkit.md Genkit CLI (recommended) The Genkit CLI provides a lo...
38
18600 cloud-huawei-ecs 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 [待完善:根据具体工具添加关键词]
38