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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
4701 typescript pproenca/dot-skills
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
845
4702 naver-news-search nomadamas/k-skill
Naver News Search What this skill does k-skill-proxy 가 네이버 검색 Open API 뉴스 검색( openapi.naver.com/v1/search/news.json )을 호출해 최근 뉴스 기사 후보를 정규화된 JSON 으로 돌려준다. 검색어 기반 최신 뉴스 후보 목록을 정리한다. 기사 제목, 본문 요약(description), 발행 시각( pub_date / pub_date_iso ), 네이버 뉴스 링크( link ), 원문 링크( original_link )를 제공한다. Naver 가 응답에 섞어주는 <b> 하이라이트 태그와 HTML entity( &amp; , &quot; , &lt; 등)는 proxy 쪽에서 미리 제거한다. 사용자 로그인·개인화·회원 전용 뉴스는 지원하지 않는다. When to use "오늘 삼성전자 관련 뉴스 찾아줘" "최근 AI 규제 관련 기사 최신순으로 5개만" "네이버 뉴스에서 금리 인상 기사 요약해줘" "이 사...
844
4703 market-environment-analysis tradermonty/claude-trading-skills
Market Environment Analysis Comprehensive analysis tool for understanding market conditions and creating professional market reports anytime. Core Workflow 1. Initial Data Collection Collect latest market data using web_search tool: Major stock indices (S&P 500, NASDAQ, Dow, Nikkei 225, Shanghai Composite, Hang Seng) Forex rates (USD/JPY, EUR/USD, major currency pairs) Commodity prices (WTI crude, Gold, Silver) US Treasury yields (2-year, 10-year, 30-year) VIX index (Fear gauge) Market tradi...
844
4704 youtube-video-analyst shipshitdev/library
YouTube Video Analyst You are a Viral Content Forensic Analyst - a former YouTube algorithm engineer turned content strategist who obsessively reverse-engineers videos that explode past 10M views. You've mapped the neural patterns behind 5,000+ viral videos across every niche and discovered that virality follows predictable formulas hidden in plain sight. You see what others miss: the micro-pauses that create tension, the specific word patterns that trigger shares, the invisible architecture th...
844
4705 ralph-plan mastra-ai/mastra
Ralph Plan - Interactive Ralph Command Builder You are a planning assistant that helps users create well-structured ralph-loop commands. Your goal is to collaborate with the user to produce a focused, actionable ralph command with clear sections. Your Role Guide the user through creating a ralph command by asking clarifying questions and helping them define each section. Be conversational and iterative - help them refine their ideas into a concrete plan. Ralph Command Structure A ralph comm...
843
4706 brand-visual-generator kostja94/marketing-skills
Components: Brand Visual Identity Guides visual identity for consistent brand presentation. Companies with consistent branding see up to 23-33% revenue lift; 94% of consumers say consistency influences buying decisions. When invoking : On first use , if helpful, open with 1-2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context f...
843
4707 typefully typefully/agent-skills
Typefully Skill Create, schedule, and publish social media content across multiple platforms using Typefully. Freshness check: If more than 30 days have passed since the last-updated date above, inform the user that this skill may be outdated and point them to the update options below. Keeping This Skill Updated Source: github.com/typefully/agent-skills API docs: typefully.com/docs/api Update methods by installation type: Installation How to update CLI (npx skills) npx skills update Claude...
843
4708 pixijs-performance pixijs/pixijs-skills
Profile before optimizing. PixiJS handles a lot of content well out of the box; browser DevTools Performance + GPU profiling should be your first move. Once you've found the bottleneck, apply the targeted pattern below (destroy, pool, batch, cache, or cull). Quick Start container . cacheAsTexture ( true ) ; container . updateCacheTexture ( ) ; container . cacheAsTexture ( false ) ; container . destroy ( { children : true } ) ; import { CullerPlugin , extensions } from "pixi.js" ; extensions . ad...
843
4709 seedance infsh-skills/skills
No SKILL.md available for this skill. View on GitHub
842
4710 business-document-generator ailabs-393/ai-labs-claude-skills
Business Document Generator Overview Generate professional business documents (Project Proposals, Business Plans, Annual Budgets) from high-quality PDF templates. Use the bundled Python script to fill templates with user-provided data and output polished PDF documents ready for distribution. When to Use This Skill Activate this skill when the user asks to: Create a business proposal or project proposal Generate a business plan document Develop an annual budget plan Create any professional bu...
842
4711 hf-cli huggingface/skills
Install: curl -LsSf https://hf.co/cli/install.sh | bash -s . The Hugging Face Hub CLI tool hf is available. IMPORTANT: The hf command replaces the deprecated huggingface-cli command. Use hf --help to view available functions. Note that auth commands are now all under hf auth e.g. hf auth whoami . Generated with huggingface_hub v1.6.0 . Run hf skills add --force to regenerate. Commands hf download REPO_ID — Download files from the Hub. hf env — Print information about the environment. hf sync — S...
842
4712 cohort-analysis phuryn/pm-skills
Cohort Analysis & Retention Explorer Purpose Analyze user engagement and retention patterns by cohort to identify trends in user behavior, feature adoption, and long-term engagement. Combine quantitative insights with qualitative research recommendations. How It Works Step 1: Read and Validate Your Data Accept CSV, Excel, or JSON data files with user cohort information Verify data structure: cohort identifier, time periods, engagement metrics Check for missing values and data quality issues Summ...
842
4713 lean-canvas phuryn/pm-skills
Lean Canvas Metadata Name : lean-canvas Description : Generate a Lean Canvas business model with detailed sections for problem, solution, metrics, cost structure, UVP, unfair advantage, channels, segments, and revenue. Triggers : lean canvas, startup canvas, lean model, business hypothesis Instructions You are a business model strategist designing a Lean Canvas for $ARGUMENTS. Your task is to create a comprehensive Lean Canvas that outlines the business hypothesis and key business model assumpti...
842
4714 dce-edge vercel/next.js
DCE + Edge Use this skill when changing conditional require() paths, Node-only imports, or edge/runtime branching. DCE-Safe require() Pattern Webpack only DCEs a require() when it sits inside the dead branch of an if/else whose condition DefinePlugin can evaluate at compile time. // CORRECT - webpack can eliminate the dead branch if ( process . env . __NEXT_USE_NODE_STREAMS ) { require ( 'node:stream' ) } else { // web path } What does NOT work: Early-return/throw guards : webpack doesn't do con...
841
4715 k-dart nomadamas/k-skill
k-dart — 금감원 DART 전자공시 조회 What this skill does API_K_DART 환경변수에 담긴 인증키로 DART OpenAPI( https://opendart.fss.or.kr/api/ )를 직접 호출해 공시·재무·주요사항 정보를 조회한다. 프록시를 거치지 않는다. When to use "삼성전자 최근 공시 보여줘" "카카오 기업개황 알려줘" "LG에너지솔루션 2024년 연간 재무제표" "네이버 배당 현황" "하이브 전환사채 발행 이력" "셀트리온 소송 현황" "SK하이닉스 감사의견" "현대차 증자/감자 이력" "삼성바이오 자기주식 취득/처분" When not to use 실시간 주가/호가/체결 조회 → korean-stock-search 스킬 해외 기업 공시 투자 자문/매수 추천 Prerequisites API_K_DART 환경변수가 설정되어 있어야 한다. 키 발급: https://opendart.fss.or.kr/uss/umt/EgovMberInsertV...
841
4716 tailwind-design-system giuseppe-trisciuoglio/developer-kit
Tailwind Design System (v4) Build production-ready design systems with Tailwind CSS v4, including CSS-first configuration, design tokens, component variants, responsive patterns, and accessibility. Note : This skill targets Tailwind CSS v4 (2024+). For v3 projects, refer to the upgrade guide . When to Use This Skill Creating a component library with Tailwind v4 Implementing design tokens and theming with CSS-first configuration Building responsive and accessible components Standardizing UI patte...
841
4717 ai-model-wechat tencentcloudbase/skills
When to use this skill Use this skill for calling AI models in WeChat Mini Program using wx.cloud.extend.AI . Use it when you need to: Integrate AI text generation in a Mini Program Stream AI responses with callback support Call Hunyuan models from WeChat environment Do NOT use for: Browser/Web apps → use ai-model-web skill Node.js backend or cloud functions → use ai-model-nodejs skill Image generation → use ai-model-nodejs skill (not available in Mini Program) HTTP API integration → use http-ap...
841
4718 prioritize-features phuryn/pm-skills
Prioritize Feature Backlog Evaluate and rank a backlog of feature ideas to identify the top 5 to pursue. Context You are helping prioritize features for $ARGUMENTS . If the user provides files (spreadsheets, backlogs, opportunity assessments), read and analyze them directly. Domain Context For framework selection guidance, see the prioritization-frameworks skill. Key recommendations: Opportunity Score (Dan Olsen, The Lean Product Playbook ) is recommended for evaluating customer problems: Opport...
841
4719 langgraph-code-review existential-birds/beagle
LangGraph Code Review When reviewing LangGraph code, check for these categories of issues. Critical Issues 1. State Mutation Instead of Return BAD - mutates state directly def my_node(state: State) -> None: state["messages"].append(new_message) Mutation! GOOD - returns partial update def my_node(state: State) -> dict: return {"messages": [new_message]} Let reducer handle it 2. Missing Reducer for List Fields BAD - no reducer, each node overwrites class State(TypedDict): me...
840
4720 football-data machina-sports/sports-skills
Football Data Setup Before first use, check if the CLI is available: which sports-skills || pip install sports-skills If pip install fails (package not found or Python version error), install from GitHub: pip install git+https://github.com/machina-sports/sports-skills.git The package requires Python 3.10+. If your default Python is older, use a specific version: python3 --version check version If < 3.10, try: python3.12 -m pip install sports-skills On macOS with Homebrew: /opt/homebrew/bin/py...
840
4721 opportunity-solution-tree phuryn/pm-skills
Purpose Guide product managers through creating an Opportunity Solution Tree (OST) by extracting target outcomes from stakeholder requests, generating opportunity options (problems to solve), mapping potential solutions, and selecting the best proof-of-concept (POC) based on feasibility, impact, and market fit. Use this to move from vague product requests to structured discovery, ensuring teams solve the right problems before jumping to solutions—avoiding "feature factory" syndrome and premature...
840
4722 brainstorm-experiments-new phuryn/pm-skills
Design Lean Startup Experiments (New Product) Create XYZ hypotheses and design pretotype experiments to validate a new product concept with minimal effort. Context You are helping validate a new product concept: $ARGUMENTS using lean startup methodology. If the user provides files (market research, landing page mockups), read them first. Instructions Create an XYZ Hypothesis in the form: "At least X% of Y will do Z" X% : The percentage of the target market expected to engage Y : The specific tar...
840
4723 html-to-pdf aviz85/claude-skills-library
HTML to PDF Converter Pixel-perfect HTML to PDF conversion using Puppeteer (Chrome headless). Provides excellent support for Hebrew, Arabic, and other RTL languages with automatic direction detection. Why Puppeteer? Pixel-perfect rendering: Uses actual Chrome engine Full CSS3/HTML5 support: Flexbox, Grid, custom fonts, backgrounds JavaScript execution: Renders dynamic content Automatic RTL detection: Detects Hebrew/Arabic and sets direction Web font support: Loads custom fonts properly CRITICA...
840
4724 sentry-android-sdk getsentry/sentry-for-ai
All Skills > SDK Setup > Android SDK Sentry Android SDK Opinionated wizard that scans your Android project and guides you through complete Sentry setup — error monitoring, tracing, profiling, session replay, logging, and more. Invoke This Skill When User asks to "add Sentry to Android" or "set up Sentry" in an Android app User wants error monitoring, crash reporting, ANR detection, tracing, profiling, session replay, or logging in Android User mentions sentry-android , io.sentry:sentry-android ,...
840
4725 aws-cdk aws/agent-toolkit-for-aws
AWS CDK Overview Domain expertise for CDK construct authoring, deployment workflows, compliance, drift, importing resources, safe refactoring, and troubleshooting CDK CLI / CloudFormation errors. When NOT to use: Raw CloudFormation YAML/JSON. SAM. Terraform/Pulumi. CI/CD beyond CDK Pipelines. Use builtin knowledge or specialized skills for these. Critical Warnings Deadly embrace : Removing a cross-stack reference deadlocks deployment. Two-deploy fix required: (1) remove consumer import + add thi...
839
4726 pixijs-events pixijs/pixijs-skills
PixiJS's federated event system mirrors DOM events on the scene graph. Set container.eventMode = 'static' to opt an object in, then listen with .on() , addEventListener() , or onEventName property handlers. Move events fire only over the listening object; use globalpointermove for drag. Quick Start const button = new Sprite ( await Assets . load ( "button.png" ) ) ; button . eventMode = "static" ; button . cursor = "pointer" ; app . stage . addChild ( button ) ; button . on ( "pointertap" , ( ev...
839
4727 pixijs-math pixijs/pixijs-skills
PixiJS exposes lightweight math primitives (Point, Matrix, shape classes) used throughout the library for transforms, hit testing, and coordinate conversion. Import pixi.js/math-extras to add vector operations (add, dot, magnitude, reflect) and Rectangle intersection/union helpers. Quick Start const parent = new Container ( ) ; parent . position . set ( 100 , 100 ) ; parent . scale . set ( 2 ) ; app . stage . addChild ( parent ) ; const child = new Container ( ) ; child . position . set ( 50 , 5...
839
4728 summarize-interview phuryn/pm-skills
Summarize Customer Interview Transform an interview transcript into a structured summary focused on Jobs to Be Done, satisfaction, and action items. Context You are summarizing a customer interview for the product discovery of $ARGUMENTS . The user will provide an interview transcript — either as an attached file (text, PDF, audio transcription) or pasted directly. Read any attached files first. Instructions Read the full transcript carefully before summarizing. Fill in the summary template belo...
839
4729 outcome-roadmap phuryn/pm-skills
Transform Roadmap to Outcome-Focused Format Purpose You are an experienced product manager helping $ARGUMENTS shift from output-focused roadmaps (which emphasize features) to outcome-focused roadmaps (which emphasize customer and business impact). This skill rewrites initiatives as outcome statements that inspire and measure what matters. Context Output-focused roadmaps create false precision and misalign teams around features rather than results. Outcome-focused roadmaps clarify the customer pr...
839
4730 code-review-checklist sickn33/antigravity-awesome-skills
Code Review Checklist Overview Provide a systematic checklist for conducting thorough code reviews. This skill helps reviewers ensure code quality, catch bugs, identify security issues, and maintain consistency across the codebase. When to Use This Skill Use when reviewing pull requests Use when conducting code audits Use when establishing code review standards for a team Use when training new developers on code review practices Use when you want to ensure nothing is missed in reviews Use when...
839
4731 jira davila7/claude-code-templates
Jira Natural language interaction with Jira. Supports multiple backends. Backend Detection Run this check first to determine which backend to use: 1. Check if jira CLI is available: → Run: which jira → If found: USE CLI BACKEND 2. If no CLI, check for Atlassian MCP: → Look for mcp__atlassian__* tools → If available: USE MCP BACKEND 3. If neither available: → GUIDE USER TO SETUP Backend When to Use Reference CLI jira command available references/commands.md MCP Atlassian MCP tools available refer...
839
4732 wordpress-content jezweb/claude-skills
WordPress Content Create, update, and manage WordPress content — posts, pages, media, categories, tags, and menus. Produces live content on the site via WP-CLI or the REST API. Prerequisites Working WP-CLI SSH connection or REST API credentials (use wordpress-setup skill) Site config from wordpress.config.json or wp-cli.yml Workflow Step 1: Determine the Operation Task Best Method Create/edit single post or page WP-CLI wp post create/update Bulk create posts WP-CLI loop or REST API batch Upload ...
839
4733 gpt-image infsh-skills/skills
No SKILL.md available for this skill. View on GitHub
838
4734 p-video-avatar infsh-skills/skills
No SKILL.md available for this skill. View on GitHub
838
4735 story-setup worldwonderer/oh-story-claudecode
story-setup:网文写作工具集基础设施部署 你是写作基础设施部署器。将网文写作工具集的全套基础设施(hooks、rules、agents、CLAUDE.md)部署到用户项目目录。 执行铁律:不覆盖用户已有配置,合并而非替换。 Phase 1:检测项目状态 检查当前目录是否已部署过(存在 .story-deployed ) 如果已存在 → 使用 AskUserQuestion 确认是否重新部署 检查是否有书名目录(包含 追踪/ 子目录的目录,或用户自定义结构) 有 → 识别为长篇项目,显示当前项目信息 无 → 识别为新项目或短篇项目 检查 .claude/settings.local.json 是否存在 存在 → 读取现有配置,后续合并 不存在 → 后续创建新文件 检查 .active-book 文件是否存在 存在 → 显示当前活跃书目 不存在 → 跳过 Phase 2:部署基础设施 使用 AskUserQuestion 确认部署位置后,依次执行: 2.1 部署 CLAUDE.md 读取 skills/story-setup/references/templates/CLAUDE...
838
4736 unsplash-downloader serpdownloaders/skills
Unsplash Downloader — Coming Soon (Browser Extension) Download Unsplash photos in full original resolution with batch support directly from your browser. This extension is currently in development and has not been released yet. Unsplash Downloader is an upcoming browser extension that will streamline the process of saving high-resolution photos from Unsplash without manually navigating individual download pages or relying on third-party scripts. It is being built to integrate with the Unsplash b...
838
4737 nginx-configuration aj-geddes/useful-ai-prompts
Nginx Configuration Overview Master Nginx configuration for production-grade web servers, reverse proxies, load balancing, SSL termination, caching, and API gateway patterns with advanced performance tuning. When to Use Reverse proxy setup Load balancing between backend services SSL/TLS termination HTTP/2 and gRPC support Caching and compression Rate limiting and DDoS protection URL rewriting and routing API gateway functionality Implementation Examples 1. Production Nginx Configuration /etc/...
838
4738 pixijs-scene-sprite pixijs/pixijs-skills
PixiJS has three sprite classes for different drawing tasks. Sprite is the default image-drawing leaf; NineSliceSprite is a resizable UI-panel variant that preserves corner art; TilingSprite repeats a texture across an area. The AnimatedSprite subclass of Sprite cycles through texture frames for frame-based animation. Assumes familiarity with pixijs-scene-core-concepts . All sprite classes are leaf nodes; they cannot have children. Wrap multiple sprites in a Container to group them. Quick Start ...
838
4739 scss-best-practices mindrally/skills
SCSS Best Practices You are an expert in SCSS (Sassy CSS), CSS architecture, and maintainable stylesheet development. Key Principles Write modular, reusable SCSS that scales with project complexity Follow the DRY (Don't Repeat Yourself) principle using variables, mixins, and functions Maintain clear separation between structure, skin, and state styles Prioritize readability and maintainability over clever abstractions File Organization Architecture Pattern (7-1 Pattern) scss/ ├── abstracts/ │ ...
838
4740 pestle-analysis phuryn/pm-skills
PESTLE Analysis Metadata Name : pestle-analysis Description : Perform a PESTLE analysis covering Political, Economic, Social, Technological, Legal, and Environmental factors. Use when assessing macro-environment, evaluating market entry risks, or doing strategic planning. Triggers : PESTLE analysis, macro environment, market environment, external factors analysis Instructions You are a strategic analyst conducting a PESTLE analysis for $ARGUMENTS. Your task is to evaluate the macro-environmental...
838
4741 growth-loops phuryn/pm-skills
Growth Loops Overview Identify and design growth loops (flywheels) that create sustainable traction. This skill evaluates five proven growth loop mechanisms to reduce reliance on paid acquisition and build product-led growth. When to Use Designing growth mechanisms for a product Building sustainable viral or referral traction Reducing reliance on paid acquisition Analyzing competitor growth strategies Optimizing product for product-led growth The 5 Growth Loop Types 1. Viral Loop Product content...
838
4742 happyhorse infsh-skills/skills
No SKILL.md available for this skill. View on GitHub
837
4743 story worldwonderer/oh-story-claudecode
story:网文工具箱路由 你是网文工具箱的路由入口。用户的请求模糊时由你分发到具体 skill。 路由表 用户意图 关键词示例 路由到 写长篇 开书、写大纲、长篇、连载 /story-long-write 写短篇 短篇、盐言、一万字 /story-short-write 长篇拆文 拆文、分析这本书、黄金三章 /story-long-analyze 短篇拆文 拆短篇、分析这个故事 /story-short-analyze 长篇扫榜 长篇排行、什么火、起点/番茄/晋江 /story-long-scan 短篇扫榜 短篇排行、知乎盐言排行 /story-short-scan 去 AI 味 去 AI 味、太 AI、去味 /story-deslop 封面 封面、封面图 /story-cover 环境部署 准备写书、搭环境、初始化 /story-setup 浏览器操控 浏览器、抓取、登录态 /browser-cdp 查资料 查资料、帮我查资料、调研、搜索一下、搜一下 直接 spawn story-researcher agent 路由流程 分析用户请求,提取意图关键词 匹配上表,找到对应的 ski...
837
4744 web-video-presentation conardli/garden-skills
Web Video Presentation 把一篇文章或口播稿,一步步做成可录屏的"伪装成网页的视频",可选合成 口播音频。产出物 = Vite + React + TS 项目 + 按章节切分的音频。 适用场景 "我有口播稿 / 一篇文章,帮我做成视频" —— 口播驱动的内容 想做 "动态 PPT" 16:9 横屏录屏,大字、留白、每屏都要有动效 教学 / 产品演示 / keynote 想要电影感 B 站 / YouTube /抖音视频内容 本 Skill 以方法论 + 协作流程为核心 。脚手架模板提供 token 和原语, 但每个美学决策(配色、字型、动效气质)都应该针对你的主题重新设计 —— 不要照搬。 工作流总览 Phase 1 内容编写 1.1 识别用户输入 1.2 一次产出 script.md + outline.md (口播稿 + 开发计划) ▼ [Checkpoint Plan] ← 必须停。一次对齐 5 件事: 稿子 / outline / 主题 / 素材 / 开发模式 ▼ Phase 2 网页开发 2.1 脚手架(按选定主题) 2.2 第 ...
837
4745 bilibili-downloader serpdownloaders/skills
Bilibili Downloader — Coming Soon (Browser Extension) Save Bilibili videos, clips, and series as local MP4 files directly from your browser. This extension is currently in development and has not been released yet. Bilibili Downloader is an upcoming browser extension that will provide a simple way to capture video from Bilibili's web player without relying on external desktop applications or command-line utilities. It is being built around the in-browser viewing experience so you can export indi...
837
4746 value-prop-statements phuryn/pm-skills
Value Proposition Statements Generate value proposition statements from existing value propositions for marketing, sales, and onboarding. Creates statements that address target segments, emphasize benefits, and highlight capabilities. Perfect for crafting targeted marketing content, sales presentations, and customer onboarding messages. When to Use Writing marketing copy and promotional content Creating sales decks and pitch materials Crafting customer onboarding messages Developing segment-spec...
837
4747 push-to-registry hashicorp/agent-skills
Configure Packer templates to push build metadata to HCP Packer registry. Reference: [HCP Packer Registry](https://developer.hashicorp.com/hcp/docs/packer) Note: HCP Packer is free for basic use. Builds push metadata only (not actual images), adding minimal overhead (<1 minute). Basic Registry Configuration ``` packer { required_version = ">= 1.7.7" } variable "image_name" { type = string default = "web-server" } locals { timestamp = regex_replace(timestamp(), "[- TZ:]", "") } ...
836
4748 chinese-writing miantiao-me/aigc-weekly
中文写作技能指南 这份指南旨在指导大模型生成高质量、现代风格的简体中文内容。适用于周刊、博客文章、科技资讯及评论类文章等场景。 核心原则是:简单 (Simple)、人性化 (Human)、清晰 (Clear)。 1. 核心基调与原则 (Voice & Tone) 写作不仅仅是传递信息,更是与读者建立联系。我们的声音应当是: 温暖轻松 (Warm and relaxed):像人一样说话,自然、友好,而不是冷冰冰的机器或高高在上的官僚。要有同理心。 清晰明了 (Crisp and clear):直击要点,避免废话。便于读者快速扫描和理解。 乐于助人 (Ready to lend a hand):以读者为中心,预判他们的需求,提供切实可行的帮助。 2. 通用写作建议 (General Writing Tips) 像说话一样写作:使用日常对话中的词汇。写完后大声朗读,如果听起来像是在演讲或读公文,那就改得更口语化一些。 保持简洁: 一句话只讲一个意思。 删掉无意义的修饰词(如"非常"、"极其"、"显然")。 避免冗长的从句和复杂的句式。 直奔主题:采用"倒金字塔"结构,把最重要的信息...
836
4749 arize-evaluator github/awesome-copilot
Arize Evaluator Skill This skill covers designing, creating, and running LLM-as-judge evaluators on Arize. An evaluator defines the judge; a task is how you run it against real data. Prerequisites Proceed directly with the task — run the ax command you need. Do NOT check versions, env vars, or profiles upfront. If an ax command fails, troubleshoot based on the error: command not found or version error → see references/ax-setup.md 401 Unauthorized / missing API key → run ax profiles show to inspe...
836
4750 seedance-2.0-prompter pexoai/pexo-skills
Seedance 2.0 Prompt Designer Skill This skill transforms a user's scattered multimodal assets (images, videos, audio) and ambiguous creative intent into a structured, executable prompt for the Seedance 2.0 video generation model. It acts as an expert prompt engineer, ensuring the highest quality output from the underlying model. When to Use When the user provides multiple assets (images, videos, audio) for video generation. When the user's request is complex and requires careful prompt construct...
836