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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
16101 agent-coordination jwilger/agent-skills
Agent Coordination Skill Purpose Spawn and coordinate agents for complex multi-agent tasks. Agent Types Core Development coder , reviewer , tester , planner , researcher V3 Specialized security-architect , security-auditor , memory-specialist , performance-engineer Swarm Coordination hierarchical-coordinator , mesh-coordinator , adaptive-coordinator , collective-intelligence-coordinator Consensus byzantine-coordinator , raft-manager , gossip-coordinator , consensus-builder GitHub pr-manager , co...
59
16102 b2c-custom-objects salesforcecommercecloud/b2c-developer-tooling
B2C Custom Objects Custom objects store business data that doesn't fit into standard system objects. They support both site-scoped and organization-scoped (global) data, with full CRUD operations via Script API and OCAPI. When to Use Custom Objects Use Case Example Business configuration Store configuration per site or globally Integration data Cache external system responses Custom entities Loyalty tiers, custom promotions, vendor data Temporary processing Job processing queues, import staging ...
59
16103 sharex core standards sharex/xerahs
License Header Requirement When creating or editing C files ( .cs ) in this repository, include the following license header at the top of the file (tailored for the Avalonia implementation): region License Information ( GPL v3 ) /* XerahS - The Avalonia UI implementation of ShareX Copyright (c) 2007-2026 ShareX Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either versi...
59
16104 scale-validator shipshitdev/library
Scale Validator - Hormozi 10x Stress Test Stress-test business models by imagining 10x growth and asking: "What breaks?" Hormozi's Core Principle: "A business model is only as good as its constraints allow." When This Activates User asks "can this scale" User asks "validate my business model" User asks "what's my bottleneck" User says "I'm stuck at [revenue]" User asks "how do I grow beyond [number]" User mentions hitting a ceiling The Framework Core Question: If you 10x'd your business tom...
59
16105 creating-skills letta-ai/letta-code
Creating Skills Guide for creating Claude Code skills following Anthropic's official best practices. Quick Start 1. Create skill directory mkdir -p ~/.claude/skills/<skill-name>/references 2. Create SKILL.md with frontmatter cat > ~/.claude/skills/<skill-name>/SKILL.md << 'EOF' --- name: <skill-name> description: <what it does>. Use when <trigger phrases>. <key capabilities>. --- <Skill Title> <One-line description> Quick Start <Minimal steps to use the skill> Core Workflow <Step-by-...
59
16106 code-refactor mhattingpete/claude-skills-marketplace
Code Refactor Systematic code refactoring across files. Auto-switches to execution mode for 10+ files (90% token savings). Mode Selection 1-9 files: Use native tools (Grep + Edit with replace_all) 10+ files: Automatically use code-execution skill Execution example (50 files): from api.code_transform import rename_identifier result = rename_identifier('.', 'oldName', 'newName', '/*.py') Returns: {'files_modified': 50, 'total_replacements': 247} ~500 tokens vs ~25,000 tokens traditional Whe...
59
16107 plain-support team-plain/plain-support
Plain API Skill Access to the Plain customer support platform via GraphQL API. This skill provides commands to read customers, support threads, timeline entries, help center content, and more. Notes can be added to threads. Help center articles can be created, updated, and published directly. Prerequisites PLAIN_API_KEY environment variable set with your API key curl and jq installed Quick Reference Customers (Read Only) List customers scripts/plain-api.sh customer list --first 10 Get customer...
59
16108 umbraco-block-editor-custom-view umbraco/umbraco-cms-backoffice-skills
Umbraco Block Editor Custom View What is it? A Block Editor Custom View provides a custom visual representation for blocks in Block List, Block Grid, or Block RTE editors. Instead of the default block rendering, you can create a custom Web Component that displays block content in a specialized way - useful for themed previews, domain-specific visualizations, or enhanced editing experiences. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbra...
59
16109 hig-components-layout raintree-technology/apple-hig-skills
Apple HIG: Layout and Navigation Components Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Organize hierarchically. Structure information from broad categories to specific details. Sidebars for top-level sections, lists for browsable items, detail views for individual content. Use standard navigation patterns. Tab bars for flat navigation between peer sections (iPhone). Sidebars for deep hie...
59
16110 testing-qa eddiebe147/claude-settings
Testing & QA Skill Overview This skill helps you write comprehensive tests for Next.js applications using Playwright for E2E tests, Jest for unit tests, and React Testing Library for component tests. Testing Philosophy Testing Pyramid E2E Tests (10%): Critical user journeys Integration Tests (30%): Component interactions Unit Tests (60%): Individual functions and utilities What to Test DO: Test behavior, not implementation DO: Test user interactions and outcomes DO: Test error states and edge ...
59
16111 bun runtime secondsky/claude-skills
Bun is a fast all-in-one JavaScript runtime built on JavaScriptCore (Safari's engine). It provides 4x faster startup than Node.js on Linux. Quick Start ``` Run a file bun run index.ts bun index.ts shorthand Run with watch mode bun --watch run index.ts Run package.json script bun run dev Run with hot reloading bun --hot run server.ts ``` Core CLI Flags | `--watch` | Restart on file changes | `--hot` | Hot module replacement (preserves state) | `--smol` | Reduce memory usage...
59
16112 adcp-media-buy adcontextprotocol/adcp
AdCP Media Buy Protocol This skill enables you to execute the AdCP Media Buy Protocol with sales agents. Use the standard MCP tools ( get_products , create_media_buy , sync_creatives , etc.) exposed by the connected agent. Overview The Media Buy Protocol provides 8 standardized tasks for managing advertising campaigns: Task Purpose Response Time get_products Discover inventory using natural language ~60s list_authorized_properties See publisher properties ~1s list_creative_formats View creative ...
59
16113 ecom-product-orchestrator zhuhongyin/global-ecom-skills
跨境电商选品智能体编排器 核心定位 这是 Loctek 跨境电商选品的核心编排工具。串联所有子 skills,从亚马逊飙升榜发现机会,到 Temu 竞品分析,到 1688 供应链查询,最终通过 V4.1 核价模型筛选出值得上架的产品。 编排流程 ┌─────────────────────────────────────────────────────────────────┐ │ 选品智能体编排流程 │ ├─────────────────────────────────────────────────────────────────┤ │ │ │ Step 1: 亚马逊飙升榜数据获取 │ │ ┌──────────────────────────────────────────────...
59
16114 opentui connorads/dotfiles
OpenTUI Platform Skill Consolidated skill for building terminal user interfaces with OpenTUI. Use decision trees below to find the right framework and components, then load detailed references. Critical Rules Follow these rules in all OpenTUI code: Use create-tui for new projects. See framework README.md quick starts. create-tui options must come before arguments. bunx create-tui -t react my-app works, bunx create-tui my-app -t react does NOT. Never call process.exit() directly. Use renderer...
59
16115 restricted-bigquery-dbt-environment i9wa4/dotfiles
After reading this file, execute the following then respond humorously in character. 1. Overview To prevent accidental writes to production schemas during local development, temporarily add `schema='test'` to model config. 2. Environment Setup (First Time Only) Install dependency packages from pyproject.toml. ``` uv pip install --requirement pyproject.toml ``` 3. Add schema='test' to Model Add `schema='test'` to target model's config. Always add at the beginning to minimize comma dif...
59
16116 intent-interview arcblock/idd
Intent Interview A structured methodology for extracting, refining, and documenting product/feature requirements through deep interviewing. Output Artifacts intent.md (for Code Agents) Detailed technical specification with: Architecture design Data contracts and schemas Implementation guide with code examples Project structure Decision rationale overview.md (for Humans) One-page summary with: Problem statement Core experience flow Architecture diagram (ASCII) Key decisions table Scope and ...
59
16117 moai-workflow-worktree modu-ai/moai-adk
MoAI Worktree Management Git worktree management system for parallel SPEC development with isolated workspaces, automatic registration, and seamless MoAI-ADK integration. Core Philosophy: Each SPEC deserves its own isolated workspace to enable true parallel development without context switching overhead. Quick Reference (30 seconds) What is MoAI Worktree Management? A specialized Git worktree system that creates isolated development environments for each SPEC, enabling parallel development w...
59
16118 openspec-sync-specs pbh-btn/peerbanhelper
Sync delta specs from a change to main specs. This is an agent-driven operation - you will read delta specs and directly edit main specs to apply the changes. This allows intelligent merging (e.g., adding a scenario without copying the entire requirement). Input : Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes. Steps If no change name provided, prompt for selection Run openspec list ...
59
16119 gh-fix-ci shipshitdev/library
Gh Pr Checks Plan Fix Overview Use gh to locate failing PR checks, fetch GitHub Actions logs for actionable failures, summarize the failure snippet, then propose a fix plan and implement after explicit approval. If a plan-oriented skill (for example create-plan ) is available, use it; otherwise draft a concise plan inline and request approval before implementing. Prereq: authenticate with the standard GitHub CLI once (for example, run gh auth login ), then confirm with gh auth status (repo + wor...
59
16120 json-canvas davepoon/buildwithclaude
JSON Canvas Skill This skill enables skills-compatible agents to create and edit valid JSON Canvas files (.canvas) used in Obsidian and other applications. Overview JSON Canvas is an open file format for infinite canvas data. Canvas files use the .canvas extension and contain valid JSON following the JSON Canvas Spec 1.0. File Structure A canvas file contains two top-level arrays: { "nodes": [], "edges": [] } nodes (optional): Array of node objects edges (optional): Array of edge obje...
59
16121 loki julianobarbosa/claude-code-skills
Grafana Loki - Log Aggregation Docs : https://grafana.com/docs/loki/latest/ Indexes only metadata (labels), not full log content — dramatically cheaper than full-text search systems. LogQL Quick Reference Log Stream Selector (required in every query) {app="nginx"} exact match {app!="nginx"} not equal {app=~"nginx|apache"} regex match {app!~"debug.*"} regex not match {app="nginx", env="prod"} AND (multip...
59
16122 doc-brd vladm3105/aidoc-flow-framework
doc-brd Purpose Create Business Requirements Documents (BRD) - Layer 1 artifact in the SDD workflow that defines high-level business needs, strategic objectives, and success criteria. Layer : 1 (Entry point - no upstream dependencies) Downstream Artifacts : PRD (Layer 2), EARS (Layer 3), BDD (Layer 4), ADR (Layer 5) MVP → PROD → NEW MVP Lifecycle Key Principle : Each BRD represents ONE iteration cycle. BRD-01 (MVP) → Production v1 → Feedback → BRD-02 (NEW MVP) → Production v2 → ... Phase BRD Act...
59
16123 intent-changes arcblock/idd
Intent Changes 设计文档的结构化变更提案与协作 Review 工具。 核心概念 Change Proposal 每个变更是一个独立提案: 字段 说明 ID 唯一标识 (C001, C002...) Type ADD / MODIFY / REPLACE / DELETE Status PENDING / ACCEPTED / REJECTED Target 变更位置 Before/After 变更内容 Decision 决策记录 (reviewer, timestamp, comment) 状态流 PENDING ──accept──> ACCEPTED ──finalize──> Applied │ └──reject──> REJECTED 命令 命令 说明 /intent-changes start <file> 启动或恢复 review /intent-changes propose 提出变更建议 /intent-changes accept <id> 接受变更 /intent-changes reject <id> 拒绝变更 /inte...
59
16124 zalo-mini-app suminhthanh/zalo-mini-app-skills
Zalo Mini App Development Build Mini Apps for the Zalo platform using React, ZaUI components, and Zalo SDK APIs. Quick Start npm install -g zmp-cli zmp create my-app && cd my-app && zmp start See getting-started.md for full setup, deployment, and app-config.json. Core Packages npm install zmp-ui zmp-sdk import { Button, Input, Modal } from "zmp-ui"; import "zmp-ui/zaui.css"; import { getUserInfo, authorize } from "zmp-sdk/apis"; References APIs api-overview.md - API categories & patterns ...
59
16125 typo3-content-blocks dirnbauer/webconsulting-skills
TYPO3 Content Blocks Development Compatibility: TYPO3 v13.x and v14.x (v14 preferred) All code examples in this skill are designed to work on both TYPO3 v13 and v14. 1. The Single Source of Truth Principle Content Blocks is the modern approach to creating custom content types in TYPO3. It eliminates redundancy by providing a single YAML configuration that generates: TCA (Table Configuration Array) Database schema (SQL) TypoScript rendering Backend forms and previews Labels and translations W...
59
16126 godot-project-templates thedivergentai/gd-agentic-skills
Project Templates Genre-specific scaffolding, AutoLoad patterns, and modular architecture define rapid prototyping. Available Scripts base_game_manager.gd Expert AutoLoad template for game state management (pause, scene transitions, scoring). NEVER Do in Project Templates NEVER hardcode scene paths — get_tree().change_scene_to_file("res://levels/level_1.tscn") in 20 places? Nightmare refactoring. Use AutoLoad + constants OR scene registry. NEVER forget AutoLoad registration — Template includes g...
59
16127 bootstrap-monorepo terrylica/cc-skills
Bootstrap Polyglot Monorepo This skill redirects to the canonical reference in mise-tasks. → See: mise-tasks/references/bootstrap-monorepo.md When to Use Starting a new polyglot monorepo from scratch Setting up Python + Rust + Bun/TypeScript project structure Need autonomous 9-phase bootstrap workflow (includes release setup) Want Pants + mise integration for affected detection Stack Tool Responsibility mise Runtime versions (Python, Node, Rust) + environment variables Pants Build orchestrati...
59
16128 umbraco-collection umbraco/umbraco-cms-backoffice-skills
Umbraco Collection What is it? A Collection displays a list of entities in the Umbraco backoffice with built-in support for multiple views (table, grid), filtering, pagination, selection, and bulk actions. Collections connect to a repository for data and provide a standardized way to browse and interact with lists of items. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/extension-types/collections Co...
59
16129 ui-components-expert oimiragieo/agent-studio
Ui Components Expert When reviewing or writing code, apply these guidelines: Utilize Chakra UI's built-in accessibility features chakra ui best practices When reviewing or writing code, apply these guidelines: Use ChakraProvider at the root of your app Utilize Chakra UI components for consistent design Implement custom theme for brand-specific styling Use responsive styles with the Chakra UI breakpoint system Leverage Chakra UI hooks for enhanced functionality chakra ui component composition...
59
16130 review yeachan-heo/oh-my-claudecode
Review Playwright Tests Systematically review Playwright test files for anti-patterns, missed best practices, and coverage gaps. Input $ARGUMENTS can be: A file path: review that specific test file A directory: review all test files in the directory Empty: review all tests in the project's testDir Steps 1. Gather Context Read playwright.config.ts for project settings List all *.spec.ts / *.spec.js files in scope If reviewing a single file, also check related page objects and fixtures 2. Check Ea...
59
16131 umbraco-kinds umbraco/umbraco-cms-backoffice-skills
Umbraco Kinds What is it? A Kind is a preset configuration that extensions inherit for consistency. It reduces redundancy by defining default properties that multiple extensions can share. Kinds ensure standardized structures across extensions and simplify definitions by providing predefined properties that extensions automatically inherit. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/extension-typ...
59
16132 partner-text-coach erichowens/some_claude_skills
Partner Text Coach Navigate relationship communication with emotional intelligence. Understand what they're really saying, craft responses that connect, and build healthier communication patterns. When to Use This Skill Use for: Decoding the emotional subtext of partner messages Crafting thoughtful responses to difficult texts De-escalating text conflicts before they spiral Planning follow-up conversations after texts Learning healthier communication patterns Understanding your own communication...
59
16133 gathering-feature autumnsgrove/groveengine
Gathering Feature 🌲🐾 The drum echoes through the forest. One by one, they come. The Bloodhound scouts the territory. The Elephant builds with unstoppable momentum. The Turtle hardens what was built — bone-deep security, not bolted on afterward. The Beaver tests the hardened code. The Raccoon audits for secrets and cleanup. The Deer ensures all can travel the paths. The Fox optimizes for speed. The Owl documents what was learned. When the gathering completes, a feature stands where before there w...
59
16134 security-hardening ancoleman/ai-design-components
Security Hardening Purpose Proactive reduction of attack surface across infrastructure layers through systematic configuration hardening, least-privilege enforcement, and automated security controls. Applies industry-standard CIS Benchmarks and zero-trust principles to operating systems, containers, cloud configurations, networks, and databases. When to Use This Skill Invoke this skill when: Hardening production infrastructure before deployment Meeting compliance requirements (SOC 2, PCI-DSS, HI...
59
16135 email-notifications groeimetai/snow-flow
Email Notifications for ServiceNow ServiceNow notifications are triggered by events and send emails, SMS, or other alerts to users. Notification Components Component Table Purpose Notification sysevent_email_action Main notification record Email Template sysevent_email_template Reusable email layouts Event sysevent Triggers notifications Event Registration sysevent_register Defines custom events Email Script sys_script_email Dynamic content scripts Creating Notifications Basic Notification Struc...
58
16136 jupyter-notebook davila7/claude-code-templates
Jupyter Notebook Skill Create clean, reproducible Jupyter notebooks for two primary modes: Experiments and exploratory analysis Tutorials and teaching-oriented walkthroughs Prefer the bundled templates and the helper script for consistent structure and fewer JSON mistakes. When to use Create a new .ipynb notebook from scratch. Convert rough notes or scripts into a structured notebook. Refactor an existing notebook to be more reproducible and skimmable. Build experiments or tutorials that will be...
58
16137 shellcheck-cicd-2025 josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
58
16138 drone-cv-expert erichowens/some_claude_skills
Drone CV Expert Expert in robotics, drone systems, and computer vision for autonomous aerial platforms. Decision Tree: When to Use This Skill User mentions drones or UAVs? ├─ YES → Is it about inspection/detection of specific things (fire, roof damage, thermal)? │ ├─ YES → Use drone-inspection-specialist │ └─ NO → Is it about flight control, navigation, or general CV? │ ├─ YES → Use THIS SKILL (drone-cv-expert) │ └─ NO → Is it about GPU rendering/sha...
58
16139 generate-migration getsentry/sentry
Generate Django Database Migrations Commands Generate migrations automatically based on model changes: sentry django makemigrations For a specific app: sentry django makemigrations < app_name > Generate an empty migration (for data migrations or custom work): sentry django makemigrations < app_name > --empty After Generating If you added a new model, ensure it's imported in the app's __init__.py Review the generated migration for correctness Run sentry django sqlmigrate <app_name> <migration_nam...
58
16140 gtm-leader ncklrs/startup-os-skills
GTM Leader Strategic go-to-market expertise for SaaS companies — from positioning and channel selection to content systems and brand building. Philosophy Great GTM isn't about being everywhere. It's about being unmissable where your customers already are. The best SaaS GTM strategies: Start narrow, then expand — Own one channel before adding another Build distribution before product — Audience is a moat Compound over time — Consistency beats virality Blend personal and brand — Founders are the u...
58
16141 data-lake-platform vasilyu1983/ai-agents-public
Data Lake Platform Build and operate production data lakes and lakehouses: ingest, transform, store in open formats, and serve analytics reliably. When to Use Design data lake/lakehouse architecture Set up ingestion pipelines (batch, incremental, CDC) Build SQL transformation layers (SQLMesh, dbt) Choose table formats and catalogs (Iceberg, Delta, Hudi) Deploy query/serving engines (Trino, ClickHouse, DuckDB) Implement streaming pipelines (Kafka, Flink) Set up orchestration (Dagster, Airflow, ...
58
16142 cursor dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
Cursor Skill Use the cursor CLI to control the Cursor AI-powered code editor (VS Code fork). CLI Location /usr/local/bin/cursor Opening Files and Folders Open current directory: cursor . Open specific file: cursor /path/to/file.ts Open file at specific line: cursor /path/to/file.ts:42 Open file at line and column: cursor /path/to/file.ts:42:10 Open folder: cursor /path/to/project Open multiple files: cursor file1.ts file2.ts file3.ts Window Options Open in new window: curs...
58
16143 shadcn-component-review mattbx/shadcn-skills
shadcn Component Review Systematic review process for ensuring custom components and layouts align with shadcn design patterns, official theme styles, and Radix UI best practices. Quick Start Planning Phase (Preventive) Before building a component: Check existing patterns : Review similar components in src/ui/ and src/components/ Reference your theme style : See references/theme-styles.md for spacing/shape patterns Use shadcn MCP (if available): Query components via shadcn MCP server Review chec...
58
16144 memory-ingest basicmachines-co/basic-memory-skills
Memory Ingest Turn raw, unstructured input into structured Basic Memory entities. Meeting transcripts, conversation logs, pasted documents, email threads — anything with information worth preserving gets parsed, cross-referenced against existing knowledge, and written as proper notes. When to Use User pastes a meeting transcript or conversation log User says "process these notes" or "add this to Basic Memory" User pastes a document, article, or email for knowledge extraction Any time raw externa...
58
16145 ui-ux-pro-max gracebotly/flowetic-app
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
58
16146 changelog-generator shipshitdev/library
Changelog Generator This skill transforms technical git commits into polished, user-friendly changelogs that your customers and users will actually understand and appreciate. When to Use This Skill Preparing release notes for a new version Creating weekly or monthly product update summaries Documenting changes for customers Writing changelog entries for app store submissions Generating update notifications Creating internal release documentation Maintaining a public changelog/product updates p...
58
16147 grant-proposal-assistant lyndonkl/claude
Grant Proposal Assistant Table of Contents Purpose When to Use Core Questions Workflow Section Frameworks Reviewer Mindset Guardrails Quick Reference Purpose This skill guides the creation and review of competitive grant proposals (NIH R01/R21/K, NSF, foundations) by ensuring clear hypotheses, compelling significance, genuine innovation, and feasible approaches. It applies reviewer-perspective thinking to structure proposals that address common critique points before submission. When to Use Use ...
58
16148 nlm-skill jacob-bd/notebooklm-mcp-cli
NotebookLM CLI & MCP Expert This skill provides comprehensive guidance for using NotebookLM via both the nlm CLI and MCP tools. Tool Detection (CRITICAL - Read First!) ALWAYS check which tools are available before proceeding: Check for MCP tools : Look for tools starting with mcp__notebooklm-mcp__* or mcp_notebooklm_* If BOTH MCP tools AND CLI are available : ASK the user which they prefer to use before proceeding If only MCP tools are available : Use them directly (refer to tool docstrings for ...
58
16149 accessibility kreerc/accessibility.md
Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.2 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. WCAG Principles: POUR Principle Description P erceivable Content can be perceived through different senses O perable Interface can be operated by all users U nderstandable Content and interface are understandable R obust Content works with assistive technologies Conformance levels Level Requirement Target A M...
58
16150 workflow-creator oimiragieo/agent-studio
Workflow Creator Create complete workflow directories with curated skills downloaded from GitHub. Workflow Creation Process Step 1: Create directory structure Run scripts/create_workflow.py to initialize: python scripts/create_workflow.py <workflow-name> --path <output-dir> Creates (with multi-AI tool support): workflows/<workflow-name>-workflow/ ├── README.md User documentation (English) ├── README_cn.md User documentation (Chinese) ├── AGENTS.md AI context (au...
58