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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
7501 layout-grid owl-listener/designer-skills
Layout Grid You are an expert in layout grid systems for digital product design. What You Do You define responsive grid systems that create consistent, flexible page layouts across breakpoints. Grid Anatomy Columns : Typically 4 (mobile), 8 (tablet), 12 (desktop) Gutters : Space between columns (16px, 24px, or 32px typical) Margins : Outer page margins (16px mobile, 24-48px desktop) Breakpoints : Points where layout adapts (e.g., 375, 768, 1024, 1440px) Grid Types Column grid : Equal columns for...
447
7502 agent-coordination ruvnet/ruflo
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...
447
7503 agent-tool-builder davila7/claude-code-templates
Agent Tool Builder You are an expert in the interface between LLMs and the outside world. You've seen tools that work beautifully and tools that cause agents to hallucinate, loop, or fail silently. The difference is almost always in the design, not the implementation. Your core insight: The LLM never sees your code. It only sees the schema and description. A perfectly implemented tool with a vague description will fail. A simple tool with crystal-clear documentation will succeed. You push for ex...
447
7504 agent-orchestration-improve-agent sickn33/antigravity-awesome-skills
Agent Performance Optimization Workflow Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration. [Extended thinking: Agent optimization requires a data-driven approach combining performance metrics, user feedback analysis, and advanced prompt engineering techniques. Success depends on systematic evaluation, targeted improvements, and rigorous testing with rollback capabilities for production safety.] Use this skill when Improving an ex...
447
7505 mobile-security-coder sickn33/antigravity-awesome-skills
Use this skill when Working on mobile security coder tasks or workflows Needing guidance, best practices, or checklists for mobile security coder Do not use this skill when The task is unrelated to mobile security coder You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-pl...
447
7506 react-composition-2026 patternsdev/skills
Modern React Composition Patterns Table of Contents When to Use Instructions Details Source Composition patterns for building flexible, maintainable React components that scale. These patterns replace boolean-prop proliferation, rigid component APIs, and tangled state with composable, explicit designs. When to Use Reference these patterns when: A component has more than 3-4 boolean props controlling its behavior Building reusable UI components or a shared component library Refactoring components...
447
7507 tailwindcss-advanced-design-systems josiahsiegel/claude-plugin-marketplace
Tailwind CSS Advanced Design Systems Building Design Tokens with @theme Complete Design Token System @import "tailwindcss"; @theme { /* ===== COLOR SYSTEM ===== */ /* Disable all defaults for full control */ --color-*: initial; /* Semantic color tokens */ --color-surface-primary: oklch(1 0 0); --color-surface-secondary: oklch(0.98 0.002 250); --color-surface-tertiary: oklch(0.95 0.004 250); --color-surface-inverse: oklch(0.15 0.02 250); --color-text-primary: oklch(0.15 0.02...
447
7508 auth0-mfa auth0/agent-skills
Auth0 MFA Guide Add Multi-Factor Authentication to protect user accounts and require additional verification for sensitive operations. Overview What is MFA? Multi-Factor Authentication (MFA) requires users to provide two or more verification factors to access their accounts. Auth0 supports multiple MFA factors and enables step-up authentication for sensitive operations. When to Use This Skill Adding MFA to protect user accounts Requiring additional verification for sensitive actions (payments, s...
447
7509 flutter-navigation madteacher/mad-agents-skills
Flutter Navigation Overview Implement navigation and routing in Flutter applications across mobile and web platforms. Choose the right navigation approach, configure deep linking, manage data flow between screens, and handle browser history integration. Choosing an Approach Use Navigator API (Imperative) When: Simple apps without deep linking requirements Single-screen to multi-screen transitions Basic navigation stacks Quick prototyping Example: assets/navigator_basic.dart Use go_router (De...
447
7510 build-graph tirth8205/code-review-graph
Build Graph Build or incrementally update the persistent code knowledge graph for this repository. Steps Check graph status by calling the list_graph_stats_tool MCP tool. If the graph has never been built (last_updated is null), proceed with a full build. If the graph exists, proceed with an incremental update. Build the graph by calling the build_or_update_graph_tool MCP tool: For first-time setup: build_or_update_graph_tool(full_rebuild=True) For updates: build_or_update_graph_tool() (incremen...
447
7511 google-gemini-api jezweb/claude-skills
Google Gemini API - Complete Guide Version: 3.0.0 (14 Known Issues Added) Package: @google/genai@1.35.0 (⚠️ NOT @google/generative-ai) Last Updated: 2026-01-21 ⚠️ CRITICAL SDK MIGRATION WARNING DEPRECATED SDK: @google/generative-ai (sunset November 30, 2025) CURRENT SDK: @google/genai v1.27+ If you see code using @google/generative-ai, it's outdated! This skill uses the correct current SDK and provides a complete migration guide. Status ✅ Phase 1 Complete: ✅ Text Generation (basic + stre...
446
7512 customaize-agent:test-skill neolabhq/context-engineering-kit
Testing Skills With Subagents Test skill provided by user or developed before. Overview Testing skills is just TDD applied to process documentation. You run scenarios without the skill (RED - watch agent fail), write skill addressing those failures (GREEN - watch agent comply), then close loopholes (REFACTOR - stay compliant). Core principle: If you didn't watch an agent fail without the skill, you don't know if the skill prevents the right failures. REQUIRED BACKGROUND: You MUST understand supe...
446
7513 ljg-x-download lijigang/ljg-skills
ljg-x-download 从 X (Twitter) 链接下载图片或视频到 ~/Downloads。 依赖 yt-dlp (已安装) 执行流程 1. 解析输入 从用户输入中提取 X/Twitter URL。支持的格式: https://x.com/user/status/123456 https://twitter.com/user/status/123456 https://mobile.twitter.com/user/status/123456 带查询参数的 URL(yt-dlp 自动处理 ?s=20 等追踪参数) 缩短链接(t.co)先解析: curl -Ls -o /dev/null -w '%{url_effective}' "SHORT_URL" 如果用户没有提供 URL,用 AskUserQuestion 要求提供。 2. 尝试直接下载(视频优先) 直接用 yt-dlp 下载,无需先探测: yt-dlp -o "~/Downloads/%(uploader)s_%(id)s.%(ext)s" "URL" 如果成功(视频推文),完成。跳到步骤 4 汇报结果。 3. 视...
446
7514 qms-audit-expert alirezarezvani/claude-skills
QMS Audit Expert ISO 13485 internal audit methodology for medical device quality management systems. Table of Contents Audit Planning Workflow Audit Execution Nonconformity Management External Audit Preparation Reference Documentation Tools Audit Planning Workflow Plan risk-based internal audit program: List all QMS processes requiring audit Assign risk level to each process (High/Medium/Low) Review previous audit findings and trends Determine audit frequency by risk level Assign qualified audit...
446
7515 x-mentor-skill-nuwa aradotso/trending-skills
X导师.skill (X Mentor Skill) Skill by ara.so — Daily 2026 Skills collection. A Claude Code skill that distills methodologies from 6 top X creators (Nicolas Cole, Dickie Bush, Sahil Bloom, Justin Welsh, Dan Koe, Alex Hormozi) plus open-source X algorithm data into a complete content operating system. Covers hook engineering, thread writing, growth mechanics, account diagnostics, and monetization strategy. Installation npx skills add alchaincyf/x-mentor-skill After installation, activate with natura...
446
7516 icon-system owl-listener/designer-skills
Icon System You are an expert in designing and maintaining comprehensive icon systems. What You Do You create icon system specs ensuring visual consistency and scalable management. Foundations Grid : Base size (24x24px), keylines, stroke width, corner radius Sizes : XS (12-16px), S (20px), M (24px), L (32px), XL (48px+) Style : Stroke, filled, duotone — when to use each Naming icon-[category]-[name]-[variant] Categories: action, navigation, content, communication, social, status, file, device De...
446
7517 developing-ios-apps daymade/claude-code-skills
iOS App Development Build, configure, and deploy iOS applications using XcodeGen and Swift Package Manager. Critical Warnings Issue Cause Solution "Library not loaded: @rpath/Framework" XcodeGen doesn't auto-embed SPM dynamic frameworks Build in Xcode GUI first (not xcodebuild). See Troubleshooting xcodegen generate loses signing Overwrites project settings Configure in project.yml target settings, not global Command-line signing fails Free Apple ID limitation Use Xcode GUI or paid developer a...
446
7518 tanstack-cli tanstack-skills/tanstack-skills
Overview TanStack CLI is an interactive scaffolding tool for creating TanStack Start applications. It provides guided project creation with 30+ pre-built integrations covering authentication, databases, deployment, and developer tools. It also includes an MCP (Model Context Protocol) server for AI agent assistance and supports custom templates for team-standardized setups. Package: @tanstack/cli Status: Stable Installation & Usage Create a new project (interactive) npx @tanstack/cli create my-a...
446
7519 aicoin-account aicoincom/coinos-skills
⚠️ 运行脚本: 必须先 cd 到本 SKILL.md 所在目录再执行。示例: cd ~/.openclaw/workspace/skills/aicoin-account && node scripts/exchange.mjs ... AiCoin Account Exchange account queries and API key management. Safe read-only operations. Commands Task Command Balance node scripts/exchange.mjs balance '{"exchange":"okx"}' Positions node scripts/exchange.mjs positions '{"exchange":"okx","market_type":"swap"}' Open orders node scripts/exchange.mjs open_orders '{"exchange":"okx","symbol":"BTC/USDT"}' Order history node script...
446
7520 openai-api jezweb/claude-skills
OpenAI API - Complete Guide Version: Production Ready ✅ Package: openai@6.16.0 Last Updated: 2026-01-20 Status ✅ Production Ready: ✅ Chat Completions API (GPT-5, GPT-4o, GPT-4 Turbo) ✅ Embeddings API (text-embedding-3-small, text-embedding-3-large) ✅ Images API (DALL-E 3 generation + GPT-Image-1 editing) ✅ Audio API (Whisper transcription + TTS with 11 voices) ✅ Moderation API (11 safety categories) ✅ Streaming patterns (SSE) ✅ Function calling / Tools ✅ Structured outputs (JSON schemas) ✅ V...
445
7521 customaize-agent:test-prompt neolabhq/context-engineering-kit
Testing Prompts With Subagents Test any prompt before deployment: commands, hooks, skills, subagent instructions, or production LLM prompts. Overview Testing prompts is TDD applied to LLM instructions. Run scenarios without the prompt (RED - watch agent behavior), write prompt addressing failures (GREEN - watch agent comply), then close loopholes (REFACTOR - verify robustness). Core principle: If you didn't watch an agent fail without the prompt, you don't know what the prompt needs to fix. REQU...
445
7522 recall arjunkmrm/recall
/recall — Search Past Claude & Codex Sessions Search all past Claude Code and Codex sessions using full-text search with BM25 ranking. Usage python3 ~/.claude/skills/recall/scripts/recall.py QUERY [ --project PATH ] [ --days N ] [ --source claude | codex ] [ --limit N ] [ --reindex ] Examples Simple keyword search python3 ~/.claude/skills/recall/scripts/recall.py "bufferStore" Phrase search (exact match) python3 ~/.claude/skills/recall/scripts/recall.py '"ACP protocol"' Boolean query python3 ...
445
7523 dashboarding grafana/skills
Grafana Dashboard Authoring Dashboards are JSON documents stored in Grafana. Every dashboard has panels, variables, time range, and refresh settings. Understanding the JSON schema lets you programmatically create and modify dashboards via the API or Grafana Assistant tools. Dashboard JSON structure { "title" : "My Dashboard" , "uid" : "my-dashboard-v1" , "tags" : [ "service" , "production" ] , "time" : { "from" : "now-1h" , "to" : "now" } , "refresh" : "30s" , "timezone" : "browser" , "schemaVer...
445
7524 frontend-slides sickn33/antigravity-awesome-skills
Frontend Slides Create zero-dependency, animation-rich HTML presentations that run entirely in the browser. Inspired by the visual exploration approach showcased in work by zarazhangrui (credit: @zarazhangrui). When to Activate Creating a talk deck, pitch deck, workshop deck, or internal presentation Converting .ppt or .pptx slides into an HTML presentation Improving an existing HTML presentation's layout, motion, or typography Exploring presentation styles with a user who does not know their de...
445
7525 alchemy-api alchemyplatform/skills
AI + Alchemy API Integration Guide Mandatory Routing Gate (Hard Requirement) Before the first network call or implementation step, you MUST ask the user the following question and wait for an explicit answer: Do you want to use an existing Alchemy API key, or should I use the agentic gateway flow instead? If the user chooses the API key path, continue with this skill. If the user chooses the agentic gateway path, switch to the agentic-gateway skill immediately and follow its existing wallet flow...
445
7526 ocr-super-surya aktsmm/agent-skills
GPU-optimized OCR skill using [Surya](https://github.com/datalab-to/surya) - a modern, high-accuracy OCR engine. When to Use - Extracting text from screenshots, photos, or scanned images - Processing PDFs with embedded images - Multi-language document OCR (90+ languages including Japanese) - Layout analysis and table detection - When GPU acceleration is available and desired Key Features | Accuracy | 2x better than Tesseract (0.97 vs 0.88 similarity) | GPU Support | PyTorch-based, ...
445
7527 nodejs-best-practices davila7/claude-code-templates
Node.js Best Practices Principles and decision-making for Node.js development in 2025. Learn to THINK, not memorize code patterns. ⚠️ How to Use This Skill This skill teaches decision-making principles, not fixed code to copy. ASK user for preferences when unclear Choose framework/pattern based on CONTEXT Don't default to same solution every time 1. Framework Selection (2025) Decision Tree What are you building? │ ├── Edge/Serverless (Cloudflare, Vercel) │ └── Hono (zero-dependency, ultra-...
445
7528 writing-for-interfaces andrewgleave/skills
Writing for Interfaces Good interface writing is invisible. When words work seamlessly with design, people don't notice them. Writing should be part of the design process from the start, not something filled in at the end. When words are considered alongside layout, interaction, and visual design, the result feels seamless. When they're an afterthought, product experiences feel stitched together. Every piece of text in an interface is a small act of communication: it should respect the person's ...
445
7529 mermaid-tools daymade/claude-code-skills
Mermaid Tools Overview This skill enables extraction of Mermaid diagrams from markdown files and generation of high-quality PNG images. The skill bundles all necessary scripts (extract-and-generate.sh, extract_diagrams.py, and puppeteer-config.json) in the scripts/ directory for portability and reliability. Core Workflow Standard Diagram Extraction and Generation Extract Mermaid diagrams from a markdown file and generate PNG images using the bundled extract-and-generate.sh script: cd ~/.clau...
445
7530 using-superpowers sickn33/antigravity-awesome-skills
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT. This is not negotiable. This is not optional. You cannot rationalize your way out of this. Instruction Priority Superpowers skills override default system prompt behavior, but user instructions always take precedence : User's explicit instructions (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority Superpowers skills — override default system behavior where they conflict Default system prompt — lowest p...
445
7531 api-documentation-generator davila7/claude-code-templates
API Documentation Generator Overview Automatically generate clear, comprehensive API documentation from your codebase. This skill helps you create professional documentation that includes endpoint descriptions, request/response examples, authentication details, error handling, and usage guidelines. Perfect for REST APIs, GraphQL APIs, and WebSocket APIs. When to Use This Skill Use when you need to document a new API Use when updating existing API documentation Use when your API lacks clear docum...
445
7532 fork-discipline jezweb/claude-skills
Fork Discipline Audit the core/client boundary in multi-client codebases. Every multi-client project should have a clean separation between shared platform code (core) and per-deployment code (client). This skill finds where that boundary is blurred and shows you how to fix it. The Principle project/ src/ ← CORE: shared platform code. Never modified per client. config/ ← DEFAULTS: base config, feature flags, sensible defaults. clients/ client-name/ ← CLIENT: everything that v...
445
7533 video-content-analyzer bradautomates/head-of-content
Video Content Analyzer Analyze short-form videos with Gemini AI to extract hooks, content structure, delivery style, and CTA strategies. Prerequisites GEMINI_API_KEY environment variable google-genai and requests Python packages Usage python3 .claude/skills/video-content-analyzer/scripts/analyze_videos.py \ --input outliers.json \ --output video-analysis.json \ --platform instagram \ --max-videos 5 Parameters Arg Description --input , -i Input JSON file with outlier posts (required) --output , -...
445
7534 ai-social-media-content inference-sh/skills
AI Social Media Content Create social media content for all platforms via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Generate a TikTok-style video infsh app run google/veo-3-1-fast --input '{ "prompt": "POV walking through a neon-lit Tokyo street at night, vertical format 9:16, cinematic" }' Platform Formats Platform Aspect Ratio Duration Resolution TikTok 9:16 vertical 15-60s 1080x1920 Instagram Reels 9:16 vertical 15-90s 1080x1920 Insta...
444
7535 feishu-wiki m1heng/clawdbot-feishu
Feishu Wiki Tool Single tool feishu_wiki for knowledge base operations. Token Extraction From URL https://xxx.feishu.cn/wiki/ABC123def → token = ABC123def Actions List Knowledge Spaces { "action" : "spaces" } Returns all accessible wiki spaces. List Nodes { "action" : "nodes" , "space_id" : "7xxx" } With parent: { "action" : "nodes" , "space_id" : "7xxx" , "parent_node_token" : "wikcnXXX" } Get Node Details { "action" : "get" , "token" : "ABC123def" } Returns: node_token , obj_token , obj_type ,...
444
7536 api-page-generator kostja94/marketing-skills
Pages: API Introduction Guides the API introduction page →typically at /api →that overviews the API, use cases, and links to documentation. API documentation (endpoint reference, code examples) lives on separate pages. 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 project context first: If .c...
444
7537 subtitle-generation eachlabs/skills
Subtitle Generation Generate professional subtitles and captions for videos using each::sense. This skill creates accurate transcriptions, multi-language subtitles, animated captions, and various export formats optimized for social media, video production, and accessibility. Features Auto-Generated Subtitles : Automatic speech-to-text transcription with accurate timing Multi-Language Generation : Generate subtitles in multiple languages from audio Animated Captions : TikTok/Instagram-style anima...
444
7538 cloudformation-to-pulumi pulumi/agent-skills
IMPORTANT: PLAN ADJUSTMENT REQUIRED If you have already generated a migration plan before loading this skill, you MUST: Review your existing plan against the workflows and requirements in this skill Identify any gaps, missing steps, or incorrect assumptions Update and revise your plan to align with this skill's guidance Communicate the adjusted plan to the user before proceeding CRITICAL SUCCESS REQUIREMENTS The migration output MUST meet all of the following: Complete Resource Coverage Every Cl...
444
7539 state-machine owl-listener/designer-skills
State Machine You are an expert in modeling complex UI behavior as finite state machines. What You Do You model UI components and flows as state machines to eliminate impossible states and make behavior predictable. State Machine Components States : Distinct modes the UI can be in (idle, loading, success, error) Events : Things that cause transitions (click, submit, timeout, response) Transitions : Rules for moving between states (on event X in state A, go to state B) Actions : Side effects duri...
444
7540 analytics-data-analysis mindrally/skills
Analytics and Data Analysis You are an expert in data analysis, visualization, and Jupyter development using Python libraries including pandas, matplotlib, seaborn, and numpy. Key Principles Deliver concise, technical responses with accurate Python examples Emphasize readability and reproducibility in data analysis workflows Use functional programming patterns; minimize class usage Leverage vectorized operations over explicit loops for performance Use descriptive variable naming conventions (e...
444
7541 image-optimization aj-geddes/useful-ai-prompts
SEO On-Page: Image Optimization Guides image optimization for Google Search (text results, Image Pack, Google Images, Discover), Core Web Vitals (LCP), and accessibility. Consolidates image-related best practices from components (hero, trust-badges) and pages (landing-page). References: Google Image SEO , Semrush Image SEO . 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 ...
444
7542 onboarding-cro sickn33/antigravity-awesome-skills
Onboarding CRO You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before pr...
444
7543 seo-flow agricidaniel/claude-seo
FLOW Framework — Find · Leverage · Optimize · Win Framework and prompts © Daniel Agrici, CC BY 4.0 — github.com/AgriciDaniel/flow FLOW is an evidence-led SEO operating model built for the AI-search era. Claude SEO integrates the FLOW prompt library (41 prompts across 5 stages) so every analysis can be driven by structured, evidence-backed AI prompts rather than improvised queries. Runtime context: Load references/flow-framework.md on every /seo flow activation. Load prompt files on demand — only...
444
7544 markdown-to-docx duc01226/easyplatform
markdown-to-docx Convert markdown files to Microsoft Word (.docx) documents. Installation Required cd .claude/skills/markdown-to-docx npm install Dependencies: markdown-docx (uses docx internally) Quick Start Basic conversion node .claude/skills/markdown-to-docx/scripts/convert.cjs \ --file ./README.md Custom output path node .claude/skills/markdown-to-docx/scripts/convert.cjs \ --file ./doc.md \ --output ./output/doc.docx CLI Options Option Required Description --file <path> Yes ...
444
7545 research-grants davila7/claude-code-templates
Research Grant Writing Overview Research grant writing is the process of developing competitive funding proposals for federal agencies and foundations. Master agency-specific requirements, review criteria, narrative structure, budget preparation, and compliance for NSF (National Science Foundation), NIH (National Institutes of Health), DOE (Department of Energy), and DARPA (Defense Advanced Research Projects Agency) submissions. Critical Principle: Grants are persuasive documents that must sim...
444
7546 short-video-production vivy-yi/xiaohongshu-skills
Short Video Production (短视频制作) Overview Short video production is the art and science of creating engaging 15-60 second vertical videos optimized specifically for Xiaohongshu's mobile-first, algorithm-driven platform. This skill encompasses the complete workflow from concept through filming, editing, and optimization—combining compelling storytelling, visual appeal, rapid pacing, and concise delivery to capture viewer attention within milliseconds and retain it through completion. The core princ...
444
7547 ai-automation-workflows inference-sh/skills
AI Automation Workflows Build automated AI workflows via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Simple automation: Generate daily image infsh app run falai/flux-dev --input '{ "prompt": "Inspirational quote background, minimalist design, date: ' " $( date +%Y-%m-%d ) "'" } ' Automation Patterns Pattern 1: Batch Processing Process multiple items with the same workflow. !/bin/bash batch_images.sh - Generate images for multiple prompts ...
443
7548 desktop computer automation web-infra-dev/midscene-skills
Desktop Computer Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time ...
443
7549 cs-audit liuzhengdongfortest/codestable
cs-audit 启动必读 开始任何判断或动作前,先读取 .codestable/attention.md ;缺失则视为骨架不完整,提示先补齐或运行 cs-onboard ,不要回退到外部 AI 入口文件。 cs-issue 等你报 bug, cs-refactor 等你指优化点, cs-explore 等你提问题——但"我也不知道哪有问题,你先扫一遍看看"这个诉求没人接。 cs-audit 补上这块: 在用户限定的范围内主动扫描,产出一份按严重度 × 性质交叉分类的发现清单 。 本技能只发现、不定修。修是 cs-issue / cs-refactor 的事。 文件放哪儿 .codestable/audits/{YYYY-MM-DD}-{slug}/ ├── index.md 速览:范围、总评、发现清单交叉矩阵 ├── finding-01.md ├── finding-02.md └── ... 日期取审计当天。slug 短到一眼看出审计目标( auth-module 、 order-flow 、 payment-security )。 所有 audit 文档带...
443
7550 startup-analysis himself65/finance-skills
Startup Analysis Produces a multi-perspective analysis of a startup, examining it through three lenses that each reveal different aspects of company health and potential: VC Investor Lens — Is this a good investment? Market size, unit economics, growth trajectory, team quality, defensibility Job Applicant Lens — Should I work here? Equity value, runway risk, culture signals, career growth, compensation fairness CEO/Founder Lens — How healthy is this company? Product-market fit, burn efficiency, ...
443