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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,454
总 Skills
90.8M
总安装量
2,582
贡献者
# Skill 仓库 描述 安装量
5501 m02-resource actionbook/rust-skills
Resource Management Layer 1: Language Mechanics Core Question What ownership pattern does this resource need? Before choosing a smart pointer, understand: Is ownership single or shared? Is access single-threaded or multi-threaded? Are there potential cycles? Error → Design Question Show more
1K
5502 ads-google agricidaniel/claude-ads
Google Ads Deep Analysis Process Collect Google Ads account data (export, Change History, Search Terms Report) Read ads/references/google-audit.md for full 74-check audit Read ads/references/benchmarks.md for Google-specific benchmarks Read ads/references/scoring-system.md for weighted scoring Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate Google Ads Health Score (0-100) Generate findings report with action plan What to Analyze Conversion Tracking (25% weight) Google tag (gta...
1K
5503 alloy grafana/skills
Grafana Alloy Docs : https://grafana.com/docs/alloy/latest/ Alloy is an open-source OpenTelemetry collector distribution that unifies telemetry collection (metrics, logs, traces, profiles) in a single binary supporting Prometheus and OTel standards. Installation macOS brew install grafana/grafana/alloy Linux (Debian/Ubuntu) sudo apt install alloy Docker docker run -v $( pwd ) /config.alloy:/etc/alloy/config.alloy \ grafana/alloy:latest run /etc/alloy/config.alloy Show more
1K
5504 m01-ownership actionbook/rust-skills
Ownership & Lifetimes Layer 1: Language Mechanics Core Question Who should own this data, and for how long? Before fixing ownership errors, understand the data's role: Is it shared or exclusive? Is it short-lived or long-lived? Is it transformed or just read? Error → Design Question Show more
1K
5505 vip-test-plan api/git
1K
5506 vip-test-executor api/git
1K
5507 graphify howell5/willhong-skills
graphify — Code Navigation Layer Structural index of the codebase. Know what exists, where, and how it connects — before you grep. Requires CLI: npm i -g graphify-ts (uses Bun runtime). Manual updates only. The graph does not refresh on its own — you (or the user) run graphify update or graphify build when you want a fresh index. This avoids write conflicts in git worktrees and other multi-session setups. First-time setup (one-time per machine) npm i -g graphify-ts install CLI Then, once per pr...
1K
5508 design-review nexu-io/open-design
This skill runs a structured design review of what has been built, measured against the design brief and the chosen aesthetic philosophy. CRITICAL — Visual Screenshot Capture You MUST capture screenshots of the running application as part of every design review. Code review alone is insufficient — you need to see what the user sees. Follow the screenshot capture protocol in Step 3 below. This is not optional. Example prompts "Review what I just built" "Run a design critique on the landing page" ...
1K
5509 design-md nexu-io/open-design
Stitch DESIGN.md Skill You are an expert Design Systems Lead. Your goal is to analyze the provided technical assets and synthesize a "Semantic Design System" into a file named DESIGN.md . Overview This skill helps you create DESIGN.md files that serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values. Prerequisites Access to the Stitch ...
1K
5510 pdf nexu-io/open-design
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
1K
5511 fusion-mcp equinor/fusion-skills
Fusion MCP Setup Guide When to use Use this skill when a user asks: what Fusion MCP is what it can do how to install/configure it how to verify that it is working how to troubleshoot a failing Fusion MCP setup Typical triggers: "what is fusion mcp" "help me set up fusion mcp" "how do I use fusion mcp with copilot" When not to use Do not use this skill for: implementing product features unrelated to MCP setup making destructive environment changes without user confirmation assuming private reposi...
1K
5512 fusion-skill-authoring equinor/fusion-skills
Create or Modernize Skills When to use Use this skill when you need to create a new skill under skills/ , or when an existing skill needs a material authoring refresh instead of a small copy edit. Typical triggers: "Create a skill for ..." "Scaffold skills/<name>/SKILL.md " "Turn this workflow into a reusable skill" "Improve this skill's metadata and activation cues" "Make this skill easier for agents to discover and follow" "Set up references/assets/helper agents for a skill" Implicit triggers:...
1K
5513 mies deeflect/mies
Mies A design taste skill for ruthless reduction and exacting craft. Ask "why is this here?" of every element. If it cannot answer, remove it. If it survives, make it immaculate — proportion, spacing, alignment, type, hierarchy, state, motion, copy, and material tuned until they feel inevitable. The result should feel calm, confident, expensive, and human. Restraint is not emptiness: warmth comes from intentional use, humane copy, thoughtful defaults, resilient states, and details that prove som...
1K
5514 m05-type-driven actionbook/rust-skills
Type-Driven Design Layer 1: Language Mechanics Core Question How can the type system prevent invalid states? Before reaching for runtime checks: Can the compiler catch this error? Can invalid states be unrepresentable? Can the type encode the invariant? Error → Design Question Show more
999
5515 analyzing-data astronomer/agents
Data Analysis Answer business questions by querying the data warehouse. The kernel starts automatically on first use. Prerequisites uv must be installed: curl -LsSf https://astral.sh/uv/install.sh | sh Scripts are located relative to this skill file. MANDATORY FIRST STEP Before any other action, check for cached patterns: uv run scripts/cli.py pattern lookup "<user's question>" This is NON-NEGOTIABLE. Patterns contain proven strategies that save time and avoid failed queries. Workflo...
999
5516 setting-up-ec2-instance-profiles aws/agent-toolkit-for-aws
Setting Up EC2 Instance Profiles Overview Domain expertise for granting EC2 instances secure access to AWS services using IAM roles and instance profiles. Covers the full lifecycle: identifying required permissions, creating or reusing IAM roles with least-privilege policies, creating instance profiles, attaching them to EC2 instances, and verifying credential availability. Configure an EC2 instance profile To set up an IAM role and instance profile for an EC2 instance, follow the procedure exac...
999
5517 test-driven-development sickn33/antigravity-awesome-skills
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
998
5518 version-release lobehub/lobehub
Version Release Workflow Overview The primary development branch is canary . All day-to-day development happens on canary. When releasing, canary is merged into main. After merge, auto-tag-release.yml automatically handles tagging, version bumping, creating a GitHub Release, and syncing back to the canary branch. Only two release types are used in practice (major releases are extremely rare and can be ignored): Type Use Case Frequency Source Branch PR Title Format Version Minor Feature iteration...
998
5519 wordpress-setup jezweb/claude-skills
WordPress Setup Connect to a WordPress site and verify working access via WP-CLI or REST API. Produces a verified connection config ready for content management and Elementor editing. Workflow Step 1: Check WP-CLI wp --version If not installed, guide the user: macOS/Linux curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar chmod +x wp-cli.phar sudo mv wp-cli.phar /usr/local/bin/wp Also ensure the SSH extension is available (needed for remote sites): wp package inst...
998
5520 flutter-http-and-json flutter/skills
flutter-http-json-networking Goal Manages HTTP networking and JSON data handling in Flutter applications. Implements secure, asynchronous REST API calls (GET, POST, PUT, DELETE) using the http package. Handles JSON serialization, background parsing via isolates for large datasets, and structured JSON schemas for AI model integrations. Assumes the http package is added to pubspec.yaml and the environment supports Dart 3 pattern matching and null safety. Decision Logic When implementing JSON parsi...
997
5521 api-patterns sickn33/antigravity-awesome-skills
API Patterns API design principles and decision-making for 2025. Learn to THINK, not copy fixed patterns. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. 📑 Content Map File Description When to Read api-style.md REST vs GraphQL vs tRPC decision tree Choosing API type rest.md Resource naming, HTTP methods, status codes Designing REST API response.md Envelope pattern, error format, pagination Response structure graphql.md Schema design, w...
997
5522 tailwindcss mindrally/skills
Tailwind CSS The skill is based on Tailwind CSS v4.1.18, generated at 2026-01-28. Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduces CSS-first configuration with theme variables, making it easier to customize your design system. Core References Topic Description Reference Installation Vite, PostCSS, CLI, and CDN setup core-installation U...
997
5523 e2e-tests-studio mastra-ai/mastra
E2E Behavior Validation for Frontend Modifications Core Principle: Test Product Behavior, Not UI States CRITICAL: Tests must verify that product features WORK correctly, not just that UI elements render. What NOT to test (UI States): ❌ "Dropdown opens when clicked" ❌ "Modal appears after button click" ❌ "Loading spinner shows during request" ❌ "Form fields are visible" ❌ "Sidebar collapses" What TO test (Product Behavior): ✅ "Selecting an LLM provider configures the agent to use that provider"...
997
5524 competitive-analysis anthropics/financial-services-plugins
No SKILL.md available for this skill. View on GitHub Installs 2.3K Repository claude-office-s…s/skills GitHub Stars 160 First Seen Mar 9, 2026
997
5525 flutter-accessibility flutter/skills
flutter-accessibility-and-adaptive-design Goal Implements, audits, and enforces accessibility (a11y) and adaptive design standards in Flutter applications. Ensures compliance with WCAG 2 and EN 301 549 by applying proper semantic roles, contrast ratios, tap target sizes, and assistive technology integrations. Constructs adaptive layouts that respond to available screen space and input modalities (touch, mouse, keyboard) without relying on hardware-specific checks or locked orientations. Decision...
996
5526 django-access-review getsentry/skills
Django Access Control & IDOR Review Find access control vulnerabilities by investigating how the codebase answers one question: Can User A access, modify, or delete User B's data? Philosophy: Investigation Over Pattern Matching Do NOT scan for predefined vulnerable patterns. Instead: Understand how authorization works in THIS codebase Ask questions about specific data flows Trace code to find where (or if) access checks happen Report only what you've confirmed through investigation Every codebas...
996
5527 avatar-video heygen-com/skills
Avatar Video Create AI avatar videos with full control over avatars, voices, scripts, scenes, and backgrounds. Build single or multi-scene videos with exact configuration using HeyGen's /v2/video/generate API. Authentication All requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable. curl -X GET "https://api.heygen.com/v2/avatars" \ -H "X-Api-Key: $HEYGEN_API_KEY " Tool Selection If HeyGen MCP tools are available ( mcp__heygen__* ), prefer them over direct HTTP API ca...
995
5528 code-review-graph aradotso/trending-skills
code-review-graph Skill by ara.so — Daily 2026 Skills collection. code-review-graph builds a persistent structural map of a codebase using Tree-sitter, stores it in a local SQLite graph, and exposes it to Claude via MCP. Instead of re-reading entire projects on every task, Claude queries the graph and reads only the files in the blast radius of a change — averaging 6.8× fewer tokens on code reviews and up to 49× on daily coding tasks in large monorepos. Installation Claude Code Plugin (recommend...
995
5529 portfolio-manager tradermonty/claude-trading-skills
Portfolio Manager Overview Analyze and manage investment portfolios by integrating with Alpaca MCP Server to fetch real-time holdings data, then performing comprehensive analysis covering asset allocation, diversification, risk metrics, individual position evaluation, and rebalancing recommendations. Generate detailed portfolio reports with actionable insights. This skill leverages Alpaca's brokerage API through MCP (Model Context Protocol) to access live portfolio data, ensuring analysis is bas...
995
5530 shopify-products jezweb/claude-skills
Shopify Products Create, update, and bulk-import Shopify products. Produces live products in the store via the GraphQL Admin API or CSV import. Prerequisites Admin API access token (use the shopify-setup skill if not configured) Store URL and API version from shopify.config.json or .dev.vars Workflow Step 1: Gather Product Data Determine what the user wants to create or update: Product basics : title, description (HTML), product type, vendor, tags Variants : options (size, colour, material), pri...
995
5531 aws-lambda-php-integration giuseppe-trisciuoglio/developer-kit
AWS Lambda PHP Integration Patterns for deploying PHP and Symfony applications on AWS Lambda using the Bref framework. Overview This skill provides complete patterns for AWS Lambda PHP development with two main approaches: Bref Framework - The standard solution for PHP on Lambda with Symfony support, built-in routing, and cold start optimization Raw PHP - Minimal overhead approach with maximum control Both approaches support API Gateway integration with production-ready configurations. When to U...
995
5532 huggingface-datasets huggingface/skills
Hugging Face Dataset Viewer Use this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction. Core workflow Optionally validate dataset availability with /is-valid . Resolve config + split with /splits . Preview with /first-rows . Paginate content with /rows using offset and length (max 100). Use /search for text matching and /filter for row predicates. Retrieve parquet links via /parquet and totals/metadata via /size and /statistics . Defaults Base URL: https:...
995
5533 cs-feat-design liuzhengdongfortest/codestable
cs-feat-design 这一阶段的产出是一份方案文件 {slug}-design.md ,加上从中抽出的行动清单 {slug}-checklist.yaml 。这两份东西后面会被两个阶段消费——implement 照着推进、acceptance 照着核对,所以这里写错或写漏,下游就跟着错。 共享路径和命名约定看 codestable/reference/shared-conventions.md 。本阶段一般 feature 目录已经由 brainstorm 创建好了;没有的话在这一步建。 本阶段有三个入口: 正式起草 :用户已经能讲清楚需求(或已经填好 {slug}-intent.md ),直接进"流程"一节走完整起草。 初始化模式 :用户说"开一个新需求 / 起个草稿 / 新建一个 feature",但想自己先写半成品方案而不是口述。走下一节"初始化模式",建好目录和空 {slug}-intent.md 就结束本轮,等用户填完再回来。 从 roadmap 条目起头 :用户说"开始做 roadmap 里的 {子 feature slug}"或"推进 {roadmap} 的下一条...
995
5534 cs-feat-accept liuzhengdongfortest/codestable
cs-feat-accept 代码已经写完,但流程没结束。本阶段做四件事,缺一不可: 核对实现有没有偏离方案 ——逐层对照 {slug}-design.md ,发现偏差当场修,不是在报告里"记一下"就过去 把 feature 归并到整体架构 ——对照方案第 4 节,实际去更新架构中心目录下的相关 doc 能力落档到 requirement ——req 是现状档案,能力做完才有现状,所以 req 的新建 / 刷新都在本阶段做 完成状态回写到 roadmap ——方案 frontmatter 有 roadmap / roadmap_item 字段时 必须 改 items.yaml 对应条目为 done 并同步主文档 漏掉任何一件的代价:架构 doc 过期下个 feature 读到错信息;req 和实际能力脱节;roadmap 规划层和实际进度脱节,下次推进会重复跑流程。 没产出报告 = 工作流未完成 。后人查"上次这个功能验收时确认了哪些行为",没报告就只能翻 git diff 重新推断。 共享路径与命名约定看 codestable/reference/shared-conventions...
995
5535 heygen-video heygen-com/skills
Preamble (run first) No auto-run steps. Check for updates manually when desired: " ${SKILL_DIR} /scripts/update-check.sh" This script is opt-in only. Do not execute it automatically on skill invocation. HeyGen Video Producer You are a video producer. Not a form. Not a CLI wrapper. A producer who understands what makes video work and guides the user from idea to finished cut. Docs: https://developers.heygen.com/docs/quick-start (API) · https://developers.heygen.com/cli (CLI) STOP. If you are abou...
995
5536 senior-backend alirezarezvani/claude-skills
Senior Backend Complete toolkit for senior backend with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Api Scaffolder python scripts/api_scaffolder.py [ options ] Script 2: Database Migration Tool python scripts/database_migration_tool.py [ options ] Script 3: Api Load Tester python scripts/api_load_tester.py [ options ] Core Capabilities 1. Api Scaffolder Automated tool for api scaffolder tasks. ...
994
5537 cs-brainstorm liuzhengdongfortest/codestable
cs-brainstorm brainstorm 是"讨论层"统一入口。用户开口时 AI 不知道终点应落在哪——feature design / roadmap / 还是聊两句发现已经够清楚直接 design。本技能先用一两轮对话分诊,再把讨论交给合适下游。 三件最重要的事: brainstorm 是创意空间不是审计关卡 ——探索 / 质疑 / 改主意 / 聊着聊着发现真正想做的是另一件事都正常 任何话题都可以聊 ——用户想聊库 / Schema / 接口就聊;TA 提出来说明心里有谱,趁早讨论清楚 design 阶段更省力。不设话题黑名单 AI 是思考伙伴不是记录员 ——用户来这步是想被挑战、被启发,不是被一条条问题填表。如果只是把用户的话整理一遍写下来这步就白做了 共享路径和命名约定看 codestable/reference/shared-conventions.md 。 三种讨论、三个出口 情况 特征 出口 case 1:其实已经够清楚 一句话能说出"做什么 / 为谁 / 怎么算成功 / 不做什么",不需要再 explore 直接 cs-feat-design (不落盘,告知用...
994
5538 running-code-analyzer forcedotcom/sf-skills
Running Code Analyzer Skill ⚠️ CRITICAL: Tool Selection BEFORE DOING ANYTHING ELSE: This skill MUST use the Bash tool to execute sf code-analyzer run and Node.js scripts. DO NOT use these tools under any circumstances: ❌ run_code_analyzer (MCP tool) ❌ mcp__* (any MCP tool) ❌ Any tool containing mcp in its name If you see a run_code_analyzer tool available, ignore it completely . Use only the Bash tool with sf code-analyzer run . Overview Show more Installs 418 Repository forcedotcom/sf-skills Gi...
994
5539 pdf-downloader serpdownloaders/skills
PDF Downloader — Coming Soon (Browser Extension) Detect, capture, and download PDF files from any webpage directly in your browser. This extension is currently in development and has not been released yet. PDF Downloader is an upcoming browser extension that will provide a seamless way to find and save PDF files encountered while browsing. Rather than hunting through page source code or right-click menus, the extension will automatically detect PDF links, embedded PDF viewers, and inline documen...
993
5540 planning-with-files charon-fan/agent-playbook
Planning with Files Work like Manus: Use persistent markdown files as your "working memory on disk." FIRST: Check for Previous Session (v2.2.0) Before starting work , check for unsynced context from a previous session: Linux/macOS $( command -v python3 || command -v python ) ${CLAUDE_PLUGIN_ROOT} /scripts/session-catchup.py " $( pwd ) " Windows PowerShell & ( Get-Command python - ErrorAction SilentlyContinue ) . Source " $env :USERPROFILE\.claude\skills\planning-with-files\scripts\session-catc...
993
5541 typescript-review metabase/metabase
TypeScript/JavaScript Code Review Skill @./../_shared/typescript-commands.md Code Review Guidelines Review pull requests with a focus on: Compliance with project coding standards and conventions Code quality and best practices Clear and correct JSDoc comments Type safety and proper TypeScript usage React best practices (when applicable)
993
5542 ads-tiktok agricidaniel/claude-ads
TikTok Ads Deep Analysis Process Collect TikTok Ads data (Ads Manager export, Pixel/Events API status) Read ads/references/tiktok-audit.md for full 25-check audit Read ads/references/benchmarks.md for TikTok-specific benchmarks Read ads/references/platform-specs.md for creative specifications Read ads/references/scoring-system.md for weighted scoring algorithm Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate TikTok Ads Health Score (0-100) Generate findings report with action p...
993
5543 routing-traffic-with-route53-and-cloudfront aws/agent-toolkit-for-aws
Routing Traffic with Route 53 and CloudFront Overview Domain expertise for configuring Amazon Route 53 to route traffic to Amazon CloudFront distributions using custom domain names. Covers hosted zone management, alias A/AAAA records, alternate domain name (CNAME) configuration, and ACM certificate setup for HTTPS. Configure Route 53 to route traffic to a CloudFront distribution To set up a custom domain for a CloudFront distribution with Route 53 DNS, follow the procedure exactly. See Route 53 ...
993
5544 cs-onboard liuzhengdongfortest/codestable
cs-onboard 把仓库 接入 CodeStable 工作流体系 ——白纸或已有零散文档的都行。本技能只做两件事: 搭骨架 、 归旧档 。骨架搭好后子工作流(feature / issue / compound 等)即可直接运行。 两条路径 路径 适用 产出 空仓库 仓库内无 spec 类文档,也没有 codestable/ 完整骨架 + 必要骨架文件 迁移 仓库内有零散文档 / docs/ / 部分 codestable/ 结构 审计报告 + 迁移映射方案(用户逐条确认)+ 落盘 启动后 先扫一次自动判断 ,不要让用户选——TA 大概率不知道项目里现有哪些文档。扫描结果模糊(如只有 README)就明说判断依据并问用户。 标准骨架(目标状态) 共享路径与命名约定的权威版本是项目里的 codestable/reference/shared-conventions.md ——本技能从技能包复制过去。下面只列 onboarding 创建 / 检查的骨架文件。 codestable/ ├── requirements/ 需求聚合根(空目录 .gitkeep) ...
993
5545 modern-web-design freshtechbro/claudedesignskills
Modern Web Design Overview Modern web design in 2024-2025 emphasizes performance, accessibility, and meaningful interactions. This skill provides comprehensive guidance on current design trends, implementation patterns, and best practices for creating engaging, accessible, and performant web experiences. This meta-skill synthesizes knowledge from all animation, interaction, and 3D skills in this repository to provide holistic design guidance. Core Design Principles (2024-2025) 1. Performance-Fir...
992
5546 axiom-vision charleswiltgen/axiom
Vision Framework Computer Vision Guides you through implementing computer vision: subject segmentation, hand/body pose detection, person detection, text recognition, barcode detection, document scanning, and combining Vision APIs to solve complex problems. When to Use This Skill Use when you need to: ☑ Isolate subjects from backgrounds (subject lifting) ☑ Detect and track hand poses for gestures ☑ Detect and track body poses for fitness/action classification ☑ Segment multiple people separat...
992
5547 cs-feat-impl liuzhengdongfortest/codestable
cs-feat-impl 到这一步用户已经在方案上签过字了,你的活是把方案变成代码。容易出问题的不是写代码本身,而是 实现路上发现方案没覆盖到的情况时怎么办 ——硬冲下去就把方案当摆设了。下面整套规则就是为了让"停下来"成为默认动作。 共享路径与命名约定看 codestable/reference/shared-conventions.md 第 0 节。 写代码时的三条姿态 具体规则是这三条姿态的落点,理解姿态比记规则重要。 1. 默认写最少的代码 只写当前步骤明确要的东西。不顺手加"以后可能要"的可配置项、抽象层、参数开关、防御性兜底。判据:写完一段觉得"是不是还得加点 X",先问 X 是不是当前用户能感知到的——不是就别加。整体写完一看 200 行其实 50 行能讲清楚 → 重写。多出来的代码不是中性的,是后人维护的负担。 2. 只动该动的,不顺手"改善"邻居 改某个函数时只改那个函数。同文件里别的函数风格丑、命名怪——除非和本次改动直接冲突,否则别碰。新代码风格匹配当前文件已有写法。混进的"顺手改"会把功能 PR 稀释成"一坨综合改动",review 成本翻几倍。值得改的按下文"...
992
5548 cs-explore liuzhengdongfortest/codestable
cs-explore 同一个问题第一次花两小时查代码,第二次应该五分钟内找到答案——前提是第一次做完留下证据化的记录。cs-explore 把"提问 → 读代码 → 得结论"沉淀成可检索的探索文档。 适用场景 新人入仓快速理解模块边界 / 调用链 / 入口 用户提具体问题但暂时不要求直接产出方案 / 修复 feature-design / issue-analyze / issue-fix 前先补一轮证据化探索 技术方向还在讨论,需要轻量 spike(只探索不拍板) 本技能只负责"看到了什么"的证据化记录。用户意图是别的(拍板 / 处方 / 修 bug)让用户按场景选对应子技能。 共享路径与命名约定看 codestable/reference/shared-conventions.md 。产物写入 codestable/compound/ ,命名 YYYY-MM-DD-explore-{slug}.md ,frontmatter 带 doc_type: explore 。 三种探索类型 frontmatter 的 type 字段: 类型 适用情境 question 围绕一个具体问题查代...
992
5549 canvas-design nexu-io/open-design
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
992
5550 qdrant-performance-optimization qdrant/skills
Qdrant Performance Optimization There are different aspects of Qdrant performance, this document serves as a navigation hub for different aspects of performance optimization in Qdrant. Search Speed Optimization There are two different criteria for search speed: latency and throughput. Latency is the time it takes to get a response for a single query, while throughput is the number of queries that can be processed in a given time frame. Depending on your use case, you may want to optimize for one...
991