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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,424
总 Skills
34.8M
总安装量
2,439
贡献者
# Skill 仓库 描述 安装量
13951 release-manager daffy0208/ai-dev-standards
Release Manager Ship features safely with progressive rollouts. Progressive Rollout Strategy Phase 1 - Internal (Day 1): - 100% to internal team - Test thoroughly - Fix critical bugs Phase 2 - Beta (Day 2-3): - 5% to beta users - Monitor errors/performance - Collect feedback Phase 3 - Gradual (Day 4-7): - 25% of users - Watch metrics closely - 50% of users if good - 100% if still good Phase 4 - Full Release: - 100% of users - Remove feature flag - Announce publicly...
61
13952 ai-agent-orchestrator patricio0312rev/skills
AI Agent Orchestrator Build coordinated multi-agent systems for complex task automation. Core Workflow Define agents: Create specialized agents Design workflow: Plan agent coordination Implement handoffs: Agent-to-agent communication Add shared memory: Persistent context Create supervisor: Orchestrate execution Monitor execution: Track agent activities Agent Architecture Agent Definition // agents/base.ts import { ChatOpenAI } from '@langchain/openai'; import { SystemMessage, HumanMessage, AIM...
61
13953 api-pagination secondsky/claude-skills
API Pagination Overview Implement scalable pagination strategies for handling large datasets with efficient querying, navigation, and performance optimization. When to Use Returning large collections of resources Implementing search results pagination Building infinite scroll interfaces Optimizing large dataset queries Managing memory in client applications Improving API response times Instructions 1. Offset/Limit Pagination // Node.js offset/limit implementation app.get('/api/users', async (r...
61
13954 turborepo secondsky/claude-skills
Turborepo Skill Build system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on dependency graph. IMPORTANT: Package Tasks, Not Root Tasks DO NOT create Root Tasks. ALWAYS create package tasks. When creating tasks/scripts/pipelines, you MUST: Add the script to each relevant package's package.json Register the task in root turbo.json Root package.json only delegates via turbo run <task> DO NOT put task logic in root package.json . This defeats T...
61
13955 ship-learn-next michalparkola/tapestry-skills-for-claude-code
Ship-Learn-Next Action Planner This skill helps transform passive learning content into actionable Ship-Learn-Next cycles - turning advice and lessons into concrete, shippable iterations. When to Use This Skill Activate when the user: Has a transcript/article/tutorial and wants to "implement the advice" Asks to "turn this into a plan" or "make this actionable" Wants to extract implementation steps from educational content Needs help breaking down big ideas into small, shippable reps Says things ...
61
13956 adr-skill skillrecordings/adr-skill
ADR Skill Philosophy ADRs created with this skill are executable specifications for coding agents . A human approves the decision; an agent implements it. The ADR must contain everything the agent needs to write correct code without asking follow-up questions. This means: Constraints must be explicit and measurable, not vibes Decisions must be specific enough to act on ("use PostgreSQL 16 with pgvector" not "use a database") Consequences must map to concrete follow-up tasks Non-goals must be sta...
61
13957 audio-analyzer dkyazzentwatwa/chatgpt-skills
Audio Analyzer A comprehensive toolkit for analyzing audio files. Extract detailed information about audio including tempo, musical key, frequency content, loudness metrics, and generate professional visualizations. Quick Start from scripts.audio_analyzer import AudioAnalyzer Analyze an audio file analyzer = AudioAnalyzer("song.mp3") analyzer.analyze() Get all analysis results results = analyzer.get_results() print(f"BPM: {results['tempo']['bpm']}") print(f"Key: {results['key']['key']} {re...
61
13958 server-components davepoon/buildwithclaude
React Server Components in Next.js Overview React Server Components (RSC) allow components to render on the server, reducing client-side JavaScript and enabling direct data access. In Next.js App Router, all components are Server Components by default. Server vs Client Components Server Components (Default) Server Components run only on the server: // app/users/page.tsx (Server Component - default) async function UsersPage() { const users = await db.user.findMany() // Direct DB access r...
61
13959 web-interface-design ratacat/claude-skills
Web Interface Design Overview Design exists to separate the primary from the secondary. Users should instantly recognize what matters. Good interface design is invisible—users accomplish goals without noticing the interface. This skill orchestrates domain-specific reference files. Read only what you need for the task. Reference File Index Task Load Reference Font sizes, line spacing, heading hierarchy, vertical rhythm references/typography.md Input fields, validation, checkboxes, radios, sele...
61
13960 watchos-code-review existential-birds/beagle
watchOS Code Review Quick Reference Issue Type Reference App lifecycle, scenes, background modes, extended runtime references/lifecycle.md ClockKit, WidgetKit, timeline providers, Smart Stack references/complications.md WCSession, message passing, file transfer, reachability references/connectivity.md Memory limits, background refresh, battery optimization references/performance.md Review Checklist SwiftUI App protocol used with @WKApplicationDelegateAdaptor for lifecycle events scenePhase rea...
61
13961 calendar-event-manager terrylica/cc-skills
Calendar Event Manager Create macOS Calendar events with tiered sound alarms and paired Reminders so events are never missed across Mac and iOS. CRITICAL RULES (Hard-Learned Truths 2026-02-12) These rules are NON-NEGOTIABLE. Violating any of them defeats the purpose of this skill. 1. Calendar + Reminders ALWAYS Together Every event MUST create BOTH: Calendar event with multiple sound alarm entries (custom sound per tier) Reminders (3 minimum) as a separate notification channel Never create one w...
61
13962 frontend-page-discovery zixun-github/aisdlc
前端页面清单逆向(证据化) 概览 目标:基于代码证据生成页面清单与单页说明文档(落盘到 docs/ )。 何时使用 / 何时不使用 使用时机(触发信号) 你需要从前端代码得出 可追溯 的页面清单,并继续提炼流程/规则 项目路由入口复杂:多 SPA/微前端/多框架共存、运行时注入路由、后端下发菜单 团队常见问题:漏页、重复页、权限/动态路由无法落盘、规则总结缺证据 不使用时机 你只需要写 PRD/原型(这不是代码逆向) 你被要求“没代码也要给出你项目的真实页面清单/规则结论”(此时只能交付模板/示例,不能输出事实) 本技能的默认交付物(落盘到 .aisdlc/project/frontend/) .aisdlc/project/frontend/pages/index.md .aisdlc/project/frontend/pages/<page_id>.md .aisdlc/project/frontend/flows/index.md .aisdlc/project/frontend/conflicts.md 落盘模板(最小可用,可直接复制) 本技能的输出模板已迁移到 assets/...
61
13963 python-dependency-resolver jorgealves/agent_skills
Python Dependency Resolver Purpose and Intent Analyze and resolve Python package dependency conflicts. Use when pip install fails due to version mismatches or circular dependencies. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosystem. Error Cond...
61
13964 color-contrast-auditor erichowens/some_claude_skills
Color Contrast Auditor Detects color contrast violations that make text unreadable and provides WCAG-compliant fixes. Uses both mathematical contrast ratio analysis and perceptual evaluation via vision capabilities. When to Use Activate on: Screenshots of websites/apps with suspected contrast issues CSS/Tailwind files for color audit "I can't read this" or "this is hard to see" Pre-launch accessibility checks Design system color validation NOT for: Choosing brand colors (use web-design-exp...
61
13965 design-system-creation secondsky/claude-skills
Design System Creation Overview A design system is a structured set of components, guidelines, and principles that ensure consistency, accelerate development, and improve product quality. When to Use Multiple product interfaces or teams Scaling design consistency Reducing redundant component development Improving design-to-dev handoff Creating shared language across teams Building reusable components Documenting design standards Instructions 1. Design System Components Design System Structure:...
61
13966 code-clone-assistant terrylica/cc-skills
Code Clone Assistant Detect code clones and guide refactoring using PMD CPD (exact duplicates) + Semgrep (patterns). Tools PMD CPD v7.17.0+: Exact duplicate detection Semgrep v1.140.0+: Pattern-based detection Tested: October 2025 - 30 violations detected across 3 sample files Coverage: ~3x more violations than using either tool alone When to Use Triggers: "find duplicate code", "DRY violations", "refactor similar code", "detect code duplication", "similar validation logic", "repeated patte...
61
13967 godot-platform-desktop thedivergentai/gd-agentic-skills
Platform: Desktop Settings flexibility, window management, and kb/mouse precision define desktop gaming. Available Scripts desktop_integration_manager.gd Expert desktop integration (Steam achievements, settings persistence, window management). NEVER Do in Desktop Development NEVER hardcode resolution/fullscreen — 1920x1080 fullscreen on 4K monitor? Blurry mess. ALWAYS provide settings menu with resolution dropdown + fullscreen toggle. NEVER save settings to res:// — res:// is read-only in expor...
61
13968 notion-spec-to-implementation makenotion/claude-code-notion-plugin
Spec to Implementation Convert a Notion spec into linked implementation plans, tasks, and ongoing status updates. Quick start Locate the spec with Notion:notion-search , then fetch it with Notion:notion-fetch . Parse requirements and ambiguities using reference/spec-parsing.md . Create a plan page with Notion:notion-create-pages (pick a template: quick vs. full). Find the task database, confirm schema, then create tasks with Notion:notion-create-pages . Link spec ↔ plan ↔ tasks; keep status curr...
61
13969 lead-channel-optimizer shipshitdev/library
Lead Channel Optimizer - Lead Generation Leverage Finder Overview You are a lead generation strategist specializing in Alex Hormozi's lead gen leverage principles. You help indie founders stop spreading themselves thin across channels, identify their highest-ROI lead source, and go all-in on what works. Your job is to execute a channel audit—not just advise—by analyzing current performance and creating a focused action plan. Hormozi's Core Principle: "Solve the getting customers problem, and e...
61
13970 pr-feedback-classifier dagster-io/erk
PR Feedback Classifier Fetch and classify all PR review feedback for the current branch's PR. Arguments --pr <number> : Target a specific PR by number (default: current branch's PR) --include-resolved : Include resolved threads (for reference) Check $ARGUMENTS for flags. Critical Constraints DO NOT write Python scripts or any code files. Classify the data using direct AI reasoning only. Writing code to process JSON is unnecessary and pollutes the filesystem. Steps Fetch PR info and all comments ...
61
13971 netease-skills-hub api/git
No SKILL.md available for this skill. View on GitHub
61
13972 subtitles zeropointrepo/youtube-skills
Subtitles Fetch YouTube video subtitles via TranscriptAPI.com . Setup If $TRANSCRIPT_API_KEY is not set, help the user create an account (100 free credits, no card): Step 1 — Register: Ask user for their email. node ./scripts/tapi-auth.js register --email USER_EMAIL → OTP sent to email. Ask user: "Check your email for a 6-digit verification code." Step 2 — Verify: Once user provides the OTP: node ./scripts/tapi-auth.js verify --token TOKEN_FROM_STEP_1 --otp CODE API key saved to your shell profi...
61
13973 grove-documentation autumnsgrove/groveengine
Grove Documentation Skill When to Activate Activate this skill when: Writing help center articles (Waystone) Drafting specs or technical documentation Writing user-facing text (onboarding, tooltips, error messages) Creating landing page copy Writing blog posts for the Grove platform itself Reviewing existing docs for voice consistency Any time you're writing words that users will read The Grove Voice From the project's guiding principles: This site is my authentic voice—warm, introspective, quee...
61
13974 artifacts-builder davepoon/buildwithclaude
Artifacts Builder To build powerful frontend claude.ai artifacts, follow these steps: Initialize the frontend repo using scripts/init-artifact.sh Develop your artifact by editing the generated code Bundle all code into a single HTML file using scripts/bundle-artifact.sh Display artifact to user (Optional) Test the artifact Stack : React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui Design & Style Guidelines VERY IMPORTANT: To avoid what is often referred to as "AI slop", ...
61
13975 ci-iteration dagster-io/erk
CI Iteration Overview Run the specified CI target and automatically fix any failures. Keep iterating until all checks pass or you get stuck on an issue that requires human intervention. IMPORTANT : All make commands must be run from the repository root directory. The Makefile is located at the root of the repository, not in subdirectories. Sub-Agent Policy CRITICAL : When spawning sub-agents to run make , pytest , ty , ruff , prettier , or gt commands, you MUST use devrun : Task tool with: - sub...
61
13976 skill-architecture terrylica/cc-skills
Comprehensive guide for creating effective Claude Code skills following Anthropic's official standards with emphasis on security, CLI-specific features, and progressive disclosure architecture. ⚠️ Scope: Claude Code CLI Agent Skills (`~/.claude/skills/`), not Claude.ai API skills FIRST: TodoWrite Task Templates MANDATORY: Select and load the appropriate template into TodoWrite before any skill work. For detailed context on each step, see [Skill Creation Process (Detailed Tutorial)](skill-cr...
61
13977 moai-formats-data modu-ai/moai-adk
Data Format Specialist Quick Reference Advanced Data Format Management - Comprehensive data handling covering TOON encoding, JSON/YAML optimization, serialization patterns, and data validation for performance-critical applications. Core Capabilities: TOON Encoding: 40-60% token reduction vs JSON for LLM communication JSON/YAML Optimization: Efficient serialization and parsing patterns Data Validation: Schema validation, type checking, error handling Format Conversion: Seamless transformation ...
61
13978 museum-documentation autumnsgrove/groveengine
Museum Documentation Documentation as hospitality. Code as curated collection. The art of transforming technical systems into welcoming guided tours. Museum documentation positions the writer as a guide walking alongside readers through "why" questions before diving into implementation specifics. This is Grove's elegant documentation style—meant for Wanderers of any experience level who want to understand the technologies, patterns, and decisions that make Grove what it is. When to Activate Crea...
61
13979 dojo-client dojoengine/book
Dojo Client Integration Connect your game client or frontend to your deployed Dojo world across multiple platforms. When to Use This Skill "Set up JavaScript SDK for my Dojo game" "Integrate Dojo with Unity" "Generate TypeScript bindings" "Connect React app to my world" What This Skill Does Handles client integration for: JavaScript/TypeScript SDK (primary) Unity, Unreal, Godot, Bevy (game engines) Typed binding generation Query/subscription patterns Supported Platforms Platform Language Package...
61
13980 route-handlers davepoon/buildwithclaude
Next.js Route Handlers Overview Route Handlers allow you to create API endpoints using the Web Request and Response APIs. They're defined in route.ts files within the app directory. Basic Structure File Convention Route handlers use route.ts (or route.js): app/ ├── api/ │ ├── users/ │ │ └── route.ts /api/users │ └── posts/ │ ├── route.ts /api/posts │ └── [id]/ │ └── route.ts /api/posts/:id HTTP Methods Export functions named after HTTP methods: ...
61
13981 six-thinking-hats proffesor-for-testing/agentic-qe
<default_to_action> When analyzing testing decisions: - DEFINE focus clearly (specific testing question) - APPLY each hat sequentially (5 min each) - DOCUMENT insights per hat - SYNTHESIZE into action plan Quick Hat Rotation (30 min): ``` 🤍 WHITE (5 min) - Facts only: metrics, data, coverage ❤️ RED (3 min) - Gut feelings (no justification needed) 🖤 BLACK (7 min) - Risks, gaps, what could go wrong 💛 YELLOW (5 min) - Strengths, opportunities, what works 💚 GREEN (7 min) - Creative ideas, alte...
61
13982 taro documentation whinc/my-claude-plugins
Taro is a comprehensive multi-platform development framework that enables building applications for multiple platforms from a single codebase. Platforms include WeChat Mini Programs, Alipay Mini Programs, Baidu Smart Programs, ByteDance Mini Apps, QQ Mini Programs, H5 (web), React Native, and Harmony OS. Key characteristics: - React-like syntax and component model - Write once, run on multiple platforms - Extensive API coverage for platform-specific features - Rich component library - Stro...
61
13983 umbraco-openapi-client umbraco/umbraco-cms-backoffice-skills
Umbraco OpenAPI Client Setup CRITICAL: Why This Matters NEVER use raw fetch() calls for Umbraco backoffice API communication. Raw fetch calls will result in 401 Unauthorized errors because they don't include the bearer token authentication that Umbraco requires. ALWAYS use a generated OpenAPI client configured with Umbraco's auth context. This ensures: Proper bearer token authentication Type-safe API calls Automatic token refresh handling When to Use This Use this pattern whenever you: Create cu...
61
13984 alex-hormozi-pitch microck/ordinary-claude-skills
Alex Hormozi Pitch Skill When to Activate This Skill Create compelling offer or pitch Design irresistible value proposition Structure pricing and guarantees Build "too good not to take" offer Apply Hormozi frameworks Optimize existing offer Create Grand Slam Offer What This Skill Does Guides you through Alex Hormozi's systematic approach to creating offers so compelling that prospects feel stupid saying no, using proven frameworks from "$100M Offers". How to Execute Execute the /create-hormoz...
61
13985 ai-rag vasilyu1983/ai-agents-public
RAG & Search Engineering — Complete Reference Build production-grade retrieval systems with hybrid search, grounded generation, and measurable quality. This skill covers: RAG: Chunking, contextual retrieval, grounding, adaptive/self-correcting systems Search: BM25, vector search, hybrid fusion, ranking pipelines Evaluation: recall@k, nDCG, MRR, groundedness metrics Modern Best Practices (Jan 2026): Separate retrieval quality from answer quality; evaluate both (RAG: https://arxiv.org/abs/200...
61
13986 felo-cli doggy8088/felo-cli
Use this skill for Felo Open Platform chat workflows in this repository. Prefer project tools in this order: CLI: npx -y @willh/felo-cli --json "<query>" (always use --json when retrieving content so the full structured output is preserved). SDK: createFeloClient() / feloChat() from src/felo-client.ts when programmatic integration is needed. Direct API call only when validating protocol-level behavior. For direct HTTP reference, use POST https://openapi.felo.ai/v2/chat with: Environment variable...
61
13987 umbraco-health-check umbraco/umbraco-cms-backoffice-skills
Umbraco Health Check What is it? Health Checks in Umbraco allow you to create custom system diagnostics that appear in the Health Check dashboard. They verify that your Umbraco installation and related services are functioning correctly. Health checks can report status, display warnings, and provide actionable recommendations for resolving issues. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/extending/health-check Foundation : h...
61
13988 code-style automattic/wordpress-activitypub
ActivityPub PHP Conventions Plugin-specific conventions and architectural patterns for the ActivityPub plugin. Quick Reference File Naming class-{name}.php Regular classes. trait-{name}.php Traits. interface-{name}.php Interfaces. Namespace Pattern namespace Activitypub; namespace Activitypub\Transformer; namespace Activitypub\Collection; namespace Activitypub\Handler; namespace Activitypub\Activity; namespace Activitypub\Rest; Text Domain Always use 'activitypub' for...
61
13989 python-venv-manager jorgealves/agent_skills
Python Virtual Env Manager Purpose and Intent Setup and validate Python virtual environments (venv, virtualenv, conda). Use to ensure isolated dependencies and correct Python versions for projects. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosy...
61
13990 midjourney-replicate-flux rawveg/skillsforge-marketplace
Midjourney-Style Prompt Generator for FLUX 1.1 Pro Generate professional, Midjourney-quality image prompts optimized for the black-forest-labs/flux-1.1-pro model on Replicate. Purpose Transform basic user image requests into rich, detailed prompts that produce Midjourney-quality results using the FLUX 1.1 Pro model. This skill provides: Midjourney aesthetic principles and visual characteristics FLUX 1.1 Pro model optimization techniques Prompt structure templates and patterns Before/after tr...
61
13991 auditing-pre-release-security onekeyhq/app-monorepo
Pre-Release Security Audit (Between Any Two Git Refs) This skill compares any two git refs (tag/branch/commit SHA) and audits: Source-code diffs for security regressions Dependency changes (direct + transitive) and lockfile determinism Newly introduced package behaviors inside node_modules CI/CD workflow risks in .github/workflows and build configs (Expo/EAS) The output is a Chinese Markdown report, with a unique title and filename containing the refs to avoid overwrites. 0) Mandatory: confi...
61
13992 godot-economy-system thedivergentai/gd-agentic-skills
Economy System Expert guidance for designing balanced game economies with currency, shops, and loot. NEVER Do NEVER use int for currency — Use int for small amounts, but float or custom BigInt for large economies. Integer overflow destroys economies (max 2.1B). NEVER forget buy/sell price spread — Selling for same price as buying creates infinite money loop. Sell price should be 30-50% of buy price. NEVER skip currency sinks — Without sinks (repairs, taxes, consumables), economy inflates. Player...
61
13993 growth-marketing dengineproblem/agents-monorepo
Growth Marketing Expert Expertise in growth experimentation, funnel optimization, and data-driven marketing. Core Competencies Growth Experimentation Hypothesis development A/B and multivariate testing Statistical significance Experiment prioritization (ICE/PIE) Learning documentation Funnel Optimization Conversion rate optimization (CRO) Landing page optimization Sign-up flow optimization Activation improvement Retention mechanics Analytics & Data Funnel analytics Cohort analysis Attribution mo...
61
13994 character-design omer-metin/skills-for-antigravity
Character Design Identity You are a character designer who has created heroes, villains, and entire casts for games ranging from AAA titles to beloved indie hits. You've studied the masters—the Nintendo character design philosophy, Pixar's approach to appeal, Disney's principles of personality through design, and the distinctive styles that made characters like Mario, Sonic, Link, and Hollow Knight's protagonist instantly recognizable worldwide. You understand that great character design isn't...
61
13995 kalshi-docs ammario/kalshi-docs
Kalshi API Documentation Complete API reference for Kalshi's prediction markets platform. Use this skill when: Building trading bots or integrations with Kalshi Working with market data, orders, or portfolio APIs Implementing WebSocket connections for real-time data Understanding authentication and rate limits Documentation Structure api-reference/ - Complete REST API endpoints organized by category: api-keys/ - API key management communications/ - RFQs and quotes events/ - Event data and series...
61
13996 groove-utilities-prime andreadellacorte/groove
groove-utilities-prime Outcome The agent receives full groove workflow context in the conversation — config, key commands, conventions, and constraints. Run at the start of every session before doing any work. Acceptance Criteria Agent is shown current config values from .groove/index.md Agent is shown all key commands, conventions, and constraints If a newer version of groove is available, agent is notified Output format Output the following to the conversation (do not write to any file): Groo...
61
13997 nansen-perp nansen-ai/nansen-cli
Perps (Hyperliquid) No --chain flag needed — Hyperliquid only. Screener Top perp markets by volume nansen research perp screener --sort volume:desc --limit 20 By open interest nansen research perp screener --sort open_interest:desc --limit 10 Leaderboard Top perp traders by PnL nansen research perp leaderboard --days 7 --limit 20 Flags Flag Purpose --sort Sort field:direction (e.g. volume:desc ) --limit Number of results --days Lookback period (default 30) --fields Select specific fields --ta...
61
13998 .net cli exceptionless/exceptionless
.NET CLI Prerequisites .NET SDK 10.0 NuGet feeds defined in NuGet.Config Common Commands Restore Packages dotnet restore Build Solution dotnet build Run Tests All tests dotnet test By test name dotnet test --filter "FullyQualifiedName~CanCreateOrganization" By class name dotnet test --filter "ClassName~OrganizationTests" By category/trait dotnet test --filter "Category=Integration" Run Project Run the AppHost (recommended for full stack) dotnet run --project src/Exceptionless.AppHost Run s...
61
13999 pw-embedded-c-style plugins-world/pw-skills
嵌入式 C 代码风格助手, 基于《手把手教你学51单片机》302 个 .c 文件和 66 个 .h 文件的代码风格分析。 默认命名风格: 蛇形命名 (snake_case) 使用场景 适用情况 - 创建新的嵌入式 C 项目 (51 单片机、STM32 等) - 优化现有嵌入式代码的命名和结构 - 生成硬件驱动模块 (定时器、串口、LCD、按键等) - 规范化项目文件组织和代码风格 - 学习嵌入式 C 编程的最佳实践 不适用情况 - 非嵌入式的通用 C/C++ 项目 - 需要 RTOS 或复杂架构的项目 - 纯算法实现 (无硬件交互) 使用方式 默认命名风格: 蛇形命名 (snake_case) 如需使用驼峰命名,请在指令中明确说明 "使用驼峰命名"。 创建项目 ``` 基础示例 (默认蛇形命名) /pw-embedded-c-style 创建一个 LED 闪烁的项目 带外设的项目 /pw-embedded-c-style 创建一个带 LCD1602 显示和按键输入的项目 指定芯片 /pw-embedded-c-style 为 STM...
61
14000 ln-614-docs-fact-checker levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Documentation Fact-Checker (L3 Worker) Specialized worker that extracts verifiable claims from documentation and validates each against the actual codebase. Purpose & Scope Worker in ln-610 coordinator pipeline - invoked by ln-610-docs-auditor Extract all verifiable claims from ALL .md files in project Verify each claim aga...
61