███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10151 | openspec-archiving | forztf/open-skilled-sdd |
Archives completed change proposals and merges their spec deltas into the living specification documentation. Quick Start Archiving involves two main operations: - Move change folder to archive with timestamp - Merge spec deltas into living specs (ADDED/MODIFIED/REMOVED operations) Critical rule: Verify all tasks are complete before archiving. Archiving signifies deployment and completion. Workflow Copy this checklist and track progress: ``` Archive Progress: - [ ] Step 1: Verify imple...
|
1K |
| 10152 | config-gc | affaan-m/everything-claude-code |
Config GC — Garbage Collection for Claude Code Setups Borrowed from runtime garbage collection: periodically scan for objects that are no longer referenced, redundant, expired, or low-value, and reclaim the space. The critical difference: here, collection requires a human in the loop. Never delete autonomously. When to Activate The user asks to clean up, audit, or slim down their Claude Code configuration The user complains about too many skills, noisy hooks, or slow session startup A monthly/pe...
|
1K |
| 10153 | compose-stability-diagnostics | chrisbanes/skills |
Compose stability diagnostics Core principle Compose performance problems from parameters are about whether inputs compare cheaply and predictably across recompositions . With Kotlin 2.0.20+ strong skipping is enabled by default, so unstable parameters no longer automatically make restartable composables non-skippable. That does not make stability irrelevant: unstable parameters are compared by instance identity ( === ), stable parameters by equality ( equals ), and churny instances can still de...
|
1K |
| 10154 | kotlin-multiplatform-expect-actual | chrisbanes/skills |
Kotlin Multiplatform: expect/actual boundaries Core principle Keep common APIs semantic and stable. Put platform mechanics behind small expect / actual declarations or interfaces, and keep Android/iOS/Desktop details out of commonMain . When to use this skill Use this when common code needs: Permissions, settings, intents, share sheets, deep links, haptics, biometrics, or clipboard. Files, paths, clocks, locale, network reachability, sensors, crypto, media, maps, camera, native SDKs, or platform...
|
1K |
| 10155 | compose-state-authoring | chrisbanes/skills |
Compose state authoring Not every remember { … } belongs here. This skill covers local UI state ( remember { mutableStateOf(…) } , mutableStateListOf / mutableStateMapOf ) and @ReadOnlyComposable . Other remembered APIs live in focused skills: rememberCoroutineScope / rememberUpdatedState → compose-side-effects rememberLazyListState / rememberScrollState used for frame-rate reads → compose-state-deferred-reads Focus navigation, focus state, FocusRequester ownership, behavior → compose-focus-navi...
|
1K |
| 10156 | compose-state-deferred-reads | chrisbanes/skills |
Compose state deferred reads Core principle State reads invalidate the phase that reads them. If a State<T> is read in a composable body, changes invalidate composition. If it is read in layout or draw, changes can invalidate only layout or draw. Frame-rate state such as scroll offsets, animations, and drag positions usually belongs in layout/draw, not composition. Back-writing is the symmetric failure mode: writing observable state from a phase that triggers invalidation of an earlier phase. Co...
|
1K |
| 10157 | penetration-testing | aj-geddes/useful-ai-prompts |
Penetration Testing Overview Systematic security testing to identify, exploit, and document vulnerabilities in applications, networks, and infrastructure through simulated attacks. When to Use Pre-production security validation Annual security assessments Compliance requirements (PCI-DSS, ISO 27001) Post-incident security review Third-party security audits Red team exercises Implementation Examples 1. Automated Penetration Testing Framework pentest_framework.py import requests import socket i...
|
1K |
| 10158 | phoenix-cli | github/awesome-copilot |
Phoenix CLI Invocation px < resource > < action > if installed globally npx @arizeai/phoenix-cli < resource > < action > no install required The CLI uses singular resource commands with subcommands like list and get : Show more Installs 933 Repository arize-ai/phoenix GitHub Stars 10.5K First Seen Jan 24, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Fail
|
1K |
| 10159 | dart-generate-test-mocks | flutter/skills |
Testing and Mocking Dart Applications Contents Structuring Code for Testability Managing Dependencies Generating Mocks Implementing Unit Tests Workflow: Creating and Running Mocked Tests Examples Structuring Code for Testability Design Dart classes to support dependency injection. Isolate complex external dependencies (like API clients or databases) so they can be replaced with mock objects during testing. Inject external services (e.g., http.Client ) through class constructors. Represent URLs s...
|
1K |
| 10160 | testing-patterns | sickn33/antigravity-awesome-skills |
Testing Patterns and Utilities Testing Philosophy Test-Driven Development (TDD): Write failing test FIRST Implement minimal code to pass Refactor after green Never write production code without a failing test Behavior-Driven Testing: Test behavior, not implementation Focus on public APIs and business requirements Avoid testing implementation details Use descriptive test names that describe behavior Factory Pattern: Create getMockX(overrides?: Partial<X>) functions Provide sensible defaults...
|
1K |
| 10161 | dart-use-pattern-matching | flutter/skills |
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. Implementing Dart Patterns Contents Pattern Selection Strategy Switch Statements vs. Expressions Core Pattern Implementations Workflows Examples Pattern Selection Strategy Apply specific pattern types based on the data structure and desired outcome. Follow these conditional guidelines: If validating and extracting from deserialized data (e.g., ...
|
1K |
| 10162 | jetson-validate-image | nvidia/skills |
Validate BSP Image Status: the DUT-access contract is stable; the rest of the validation procedure is a skeleton. Purpose Confirm that a freshly customized BSP landed correctly — both as a static artifact on disk and as a running system on the target — without re-promoting or re-flashing. Forms the validation tail of Deploy in the Setup → Customize → Build → Deploy pipeline (see ../../context/bsp-customization-workflow.md for the pipeline view) and is independently re-runnable. Prerequisites Sho...
|
1K |
| 10163 | dart-use-primary-constructors | flutter/skills |
Dart Primary Constructors & New Constructor Syntax Skill Use this skill when helping users write, refactor, or debug code using Dart's Primary Constructors feature. Dart Version Requirements Dart 3.13 and above : Primary constructors are enabled by default. Dart 3.12 : The feature is available but experimental. Users must explicitly enable the experiment flag primary-constructors via --enable-experiment=primary-constructors or in analysis_options.yaml : analyzer : enable-experiment : - primary -...
|
1K |
| 10164 | dart-collect-coverage | flutter/skills |
Implementing Dart and Flutter Test Coverage Contents Testing Fundamentals Coverage Directives Workflow: Configuring and Generating Coverage Reports Workflow: Advanced Manual Coverage Collection Examples Testing Fundamentals Structure your test suites using the standard Dart testing paradigms. Use package:test for Dart projects and flutter_test for Flutter projects. Unit Tests: Verify individual functions, methods, or classes. Component/Widget Tests: Verify component behavior, layout, and interac...
|
1K |
| 10165 | diffity-review | kamranahmedse/diffity |
Diffity Review Skill You are reviewing a diff and leaving inline comments using the diffity agent CLI. Arguments ref (optional): Git ref to review (e.g. main..feature , HEAD~3 ). Defaults to working tree changes. When both ref and focus are provided, use both (e.g. /diffity-review main..feature security ). focus (optional): Focus the review on a specific area. One of: security , performance , naming , errors , types , logic . If omitted, review everything. CLI Reference Show more Installs 312 Re...
|
1K |
| 10166 | taste | affaan-m/everything-claude-code |
Taste Most AI video advice stops at how to render frames . This skill is the layer above that: what the frames should look like, in what order, cut to what rhythm, so the result reads as one intentional thing instead of a pile of generations. It encodes a specific taste — the angelcore / cloud-trance / hyperpop family (Bladee "Silver Surfer"-era ethereal trance crossed with heavy angelcore) — distilled from a corpus of saved Reels and a tour through a ~70-entry visual-genre library. It is opinio...
|
1K |
| 10167 | dart-migrate-to-checks-package | flutter/skills |
Migrating Dart Tests to Package Checks Contents Dependency Management Syntax Migration Guidelines Utilizing Dart MCP Tools Migration Workflow Examples Dependency Management Manage dependencies using the Dart Tooling MCP Server pub tool or standard CLI commands. Add package:checks as a dev_dependency using dart pub add dev:checks . Remove package:matcher if it is explicitly listed in the pubspec.yaml (note: it is often transitively included by package:test , which is fine). Import package:checks/...
|
1K |
| 10168 | dart-build-cli-app | flutter/skills |
Building Dart CLI Applications Contents Project Setup & Architecture Argument Parsing & Command Routing Execution & Error Handling Testing CLI Applications Compilation & Distribution Workflows Examples Project Setup & Architecture Initialize new CLI projects using the official Dart template to ensure standard directory structures. Run dart create -t cli <project_name> to scaffold a console application with basic argument parsing. Place executable entry points (files containing main() ) exclusive...
|
1K |
| 10169 | jetson-promote-image | nvidia/skills |
Promote BSP Image Purpose Stage every Customize-* and Build output into bsp_image so it is ready for /jetson-flash-image . This is the promote leg of Deploy — it copies files, never flashes and never builds. Prerequisites Show more Installs 701 Repository nvidia/skills GitHub Stars 2.4K First Seen Jun 22, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
|
1K |
| 10170 | ui-design-system | alirezarezvani/claude-skills |
UI/UX Design & Development Expert Comprehensive UI/UX design, review, and improvement for modern web applications. Production-ready implementations with TailwindCSS + Radix UI + shadcn/ui and modern React patterns. Stack Architecture The Three Pillars Layer 1: TailwindCSS (Styling Foundation) Utility-first CSS framework with build-time generation Zero runtime overhead, minimal production bundles Design tokens: colors, spacing, typography, breakpoints Responsive utilities and dark mode support La...
|
1K |
| 10171 | jetson-print-bsp-info | nvidia/skills |
jetson-print-bsp-info Prints a concise summary of a Jetson Linux_for_Tegra (BSP) tree on the host PC. This skill is intended as a reference example for the jetson-bsp-skills repo and the NVIDIA-wide skills CI. It performs read-only inspection — no flashing, no rootfs changes. Purpose Capture a baseline snapshot of a Linux_for_Tegra BSP tree (release, board configs, rootfs state) before flashing, so issues like "wrong L4T version" or "rootfs never populated" are caught early. When to use A user h...
|
1K |
| 10172 | applying-slds | forcedotcom/sf-skills |
Applying SLDS The Salesforce Lightning Design System (SLDS) is a CSS framework with thousands of artifacts. This skill teaches agents how to find and correctly use them. Version: This skill targets SLDS v2 . Legacy --lwc-* tokens and slds-*--modifier syntax are deprecated. Audit scope: The companion validating-slds skill analyzer only scans .css , .html , and .js files. Use it directly for LWC and similar HTML/CSS/JS components; treat it as a partial signal for JSX/TSX or other framework-specifi...
|
1K |
| 10173 | validating-slds | forcedotcom/sf-skills |
SLDS Quality Audit Audit Lightning Web Components for SLDS compliance and produce an automated scorecard plus a required manual review gate. Combines SLDS linter output with supplementary static analysis to catch what the linter misses. Scope Also valid for: auditing SLDS compliance across a project or component set, and before/after quality comparison after making changes. Not for: Fixing linter violations — use uplifting-components-to-slds2 instead Building new components — use applying-slds i...
|
1K |
| 10174 | chrome-bridge-automation | web-infra-dev/midscene-skills |
Chrome Bridge 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 for...
|
1K |
| 10175 | flutter-app-size | flutter/agent-plugins |
flutter-app-size-optimization Goal Analyzes and optimizes Flutter application size by measuring build artifacts, generating size analysis reports, utilizing Dart DevTools for component breakdown, and implementing specific size reduction strategies such as debug info splitting, resource compression, and platform-specific tree-shaking. Assumes a configured Flutter environment and target platform availability. Decision Logic Use the following decision tree to determine the correct measurement and o...
|
1K |
| 10176 | flutter-concurrency | flutter/agent-plugins |
Flutter Concurrency and Data Management Goal Implements advanced Flutter data handling, including background JSON serialization using Isolates, asynchronous state management, and platform-aware concurrency to ensure jank-free 60fps+ UI rendering. Assumes a standard Flutter environment (Dart 2.19+) with access to dart:convert , dart:isolate , and standard state management paradigms. Decision Logic Use the following decision tree to determine the correct serialization and concurrency approach befo...
|
1K |
| 10177 | flutter-localization | flutter/agent-plugins |
Flutter Localization Setup Goal Configures and implements internationalization (i18n) and localization (l10n) in a Flutter application. This skill manages dependency injection ( flutter_localizations , intl ), code generation configuration ( l10n.yaml ), root widget setup ( MaterialApp , CupertinoApp , or WidgetsApp ), .arb translation file management, and platform-specific configurations (iOS Xcode project updates). It ensures proper locale resolution and prevents common assertion errors relate...
|
1K |
| 10178 | wordpress-penetration-testing | sickn33/agentic-awesome-skills |
AUTHORIZED USE ONLY: Use this skill only for authorized security assessments, defensive validation, or controlled educational environments. WordPress Penetration Testing WordPress 7.0 Security Considerations WordPress 7.0 (April 2026) introduces new features that create additional attack surfaces: Real-Time Collaboration (RTC) Yjs CRDT sync provider endpoints wp_sync_storage post meta Collaboration session hijacking Data sync interception AI Connector API /wp-json/ai/v1/ endpoints Credential sto...
|
1K |
| 10179 | flutter-http-and-json | flutter/agent-plugins |
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...
|
1K |
| 10180 | doc-coauthoring | sickn33/agentic-awesome-skills |
Doc Co-Authoring Workflow This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing. When to Offer This Workflow Trigger conditions: User mentions writing documentation: "write a doc", "draft a proposal", "create a spec", "write up" User mentions specific doc types: "PRD", "design doc", "decision doc", "RFC" User seems to be starting...
|
1K |
| 10181 | flutter-accessibility | flutter/agent-plugins |
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...
|
1K |
| 10182 | flutter-databases | flutter/agent-plugins |
flutter-data-layer-persistence Goal Architects and implements a robust, MVVM-compliant data layer in Flutter applications. Establishes a single source of truth using the Repository pattern, isolates external API and local database interactions into stateless Services, and implements optimal local caching strategies (e.g., SQLite via sqflite ) based on data requirements. Assumes a pre-configured Flutter environment. Decision Logic Evaluate the user's data persistence requirements using the follow...
|
1K |
| 10183 | opencli-rs | nashsu/autocli-skill |
opencli-rs Blazing fast Rust CLI tool that turns 55+ websites into CLI interfaces, reusing Chrome's login state. Zero credentials needed. Single 4.7MB binary, zero runtime dependencies. Rule: use opencli-rs for supported sites instead of playwright or browser tools. Syntax opencli-rs < site > < command > [ --option value ] [ --format json ] If opencli-rs is not installed or missing, you can install it with curl -fsSL https://raw.githubusercontent.com/nashsu/opencli-rs/main/scripts/install.sh | ...
|
1K |
| 10184 | testing-patterns | sickn33/agentic-awesome-skills |
Testing Patterns and Utilities Testing Philosophy Test-Driven Development (TDD): Write failing test FIRST Implement minimal code to pass Refactor after green Never write production code without a failing test Behavior-Driven Testing: Test behavior, not implementation Focus on public APIs and business requirements Avoid testing implementation details Use descriptive test names that describe behavior Factory Pattern: Create getMockX(overrides?: Partial<X>) functions Provide sensible defaults...
|
1K |
| 10185 | testing-dags | astronomer/agents |
DAG Testing Skill 🚀 FIRST ACTION: Just Trigger the DAG When the user asks to test a DAG, your FIRST AND ONLY action should be: trigger_dag_and_wait(dag_id="<dag_id>", timeout=300) DO NOT: ❌ Call list_dags first ❌ Call get_dag_details first ❌ Call list_import_errors first ❌ Use grep or ls or any bash command ❌ Do any "pre-flight checks" Just trigger the DAG. If it fails, THEN debug. ⚠️ CRITICAL WARNING: Use MCP Tools, NOT CLI Commands ⚠️ STOP! Before running ANY Airflow-related command, r...
|
1K |
| 10186 | concise-planning | sickn33/agentic-awesome-skills |
Concise Planning Goal Turn a user request into a single, actionable plan with atomic steps. Workflow 1. Scan Context Read README.md , docs, and relevant code files. Identify constraints (language, frameworks, tests). 2. Minimal Interaction Ask at most 1–2 questions and only if truly blocking. Make reasonable assumptions for non-blocking unknowns. 3. Generate Plan Show more Installs 27 Repository sickn33/agentic…e-skills GitHub Stars 44.8K First Seen Jul 10, 2026 Security Audits Gen Agent Trust H...
|
1K |
| 10187 | sports-news | machina-sports/sports-skills |
Sports News Quick Start Prefer the CLI — it avoids Python import path issues: sports-skills news fetch_items --google_news --query = "Arsenal transfer" --limit = 5 sports-skills news fetch_feed --url = "https://feeds.bbci.co.uk/sport/football/rss.xml" Python SDK (alternative): from sports_skills import news articles = news . fetch_items ( google_news = True , query = "Arsenal transfer news" , limit = 10 ) feed = news . fetch_feed ( url = "https://feeds.bbci.co.uk/sport/football/rss.xml" ) Import...
|
1K |
| 10188 | resume-cover-letter | jezweb/claude-skills |
Resume and Cover Letter Writer Produces job application documents: a resume/CV, a cover letter, or both. Every output is tailored to a specific role at a specific company — generic documents are not useful. Before You Start Gather these inputs. Ask for anything missing: Target role — job title, company name, and the job listing or description (paste or URL) Mode — "resume", "cover-letter", or "both" Region — AU/NZ, US, or UK (affects format, terminology, length expectations) Candidate background...
|
1K |
| 10189 | karpathy-coder | alirezarezvani/claude-skills |
Karpathy Coder — Active Coding Discipline Derived from Andrej Karpathy's observations on LLM coding pitfalls. This is not just guidelines — it ships Python tools that detect violations, a review agent, a slash command, and a pre-commit hook. "The models make wrong assumptions on your behalf and just run along with them without checking. They don't manage their confusion, don't seek clarifications, don't surface inconsistencies, don't present tradeoffs, don't push back when they should." "They re...
|
1K |
| 10190 | senior-computer-vision | alirezarezvani/claude-skills |
Senior Computer Vision Engineer World-class senior computer vision engineer skill for production-grade AI/ML/Data systems. Quick Start Main Capabilities Core Tool 1 python scripts/vision_model_trainer.py --input data/ --output results/ Core Tool 2 python scripts/inference_optimizer.py --target project/ --analyze Core Tool 3 python scripts/dataset_pipeline_builder.py --config config.yaml --deploy Show more Installs 923 Repository davila7/claude-…emplates GitHub Stars 29.2K First Seen Jan 20, 2...
|
1K |
| 10191 | mui | davila7/claude-code-templates |
MUI v7 Patterns Purpose Material-UI v7 (released March 2025) patterns for component usage, styling with sx prop, theme integration, and responsive design. Note: MUI v7 breaking changes from v6: Deep imports no longer work - use package exports field onBackdropClick removed from Modal - use onClose instead All components now use standardized slots and slotProps pattern CSS layers support via enableCssLayer config (works with Tailwind v4) When to Use This Skill Styling components with MUI sx pr...
|
1K |
| 10192 | review-pr | tirth8205/code-review-graph |
Review PR Skill Review the current pull request and write the output to review.json . Context The working directory is the PR branch checkout. The workflow provides an annotated diff in pr_diff.txt . The workflow provides the PR description in pr_description.txt . Focus on files and lines changed by this PR. Do not post comments or reviews to GitHub directly. Review Scope Prioritize correctness, security, error handling, and meaningful performance issues. Include style or nit comments only when ...
|
1K |
| 10193 | receiving-code-review | jnmetacode/superpowers-zh |
Code Review Reception Overview Code review requires technical evaluation, not emotional performance. Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort. The Response Pattern WHEN receiving code review feedback: 1. READ: Complete feedback without reacting 2. UNDERSTAND: Restate requirement in own words (or ask) 3. VERIFY: Check against codebase reality 4. EVALUATE: Technically sound for THIS codebase? 5. RESPOND: Technical acknowledgment or ...
|
1K |
| 10194 | flags | react/react |
Feature Flags Arguments: $ARGUMENTS: Optional flags Options Option Purpose (none) Show all flags across all channels --diff <ch1> <ch2> Compare flags between channels --cleanup Show flags grouped by cleanup status --csv Output in CSV format Channels www , www-modern - Meta internal canary , next , experimental - OSS channels rn , rn-fb , rn-next - React Native Show more Installs 28 Repository react/react GitHub Stars 247.2K First Seen Jun 24, 2026 Security Audits Gen Agent Trust Hub Pass Socket ...
|
1K |
| 10195 | lottie | mindrally/skills |
Lottie for HyperFrames HyperFrames can seek both lottie-web and dotLottie players through its lottie runtime adapter. Lottie is a strong fit because the animation timeline is already encoded in the asset; HyperFrames only needs a player object it can seek. Contract Load assets from local project files, usually under assets/ . Set autoplay: false . Prefer loop: false unless the user explicitly wants a loop. Register every returned animation or player on window.__hfLottie . Keep the Lottie contain...
|
1K |
| 10196 | qiaomu-opencli-browser | joeseesun/qiaomu-opencli-skills |
OpenCLI Browser — Browser Automation for AI Agents Control Chrome step-by-step via CLI. Reuses existing login sessions — no passwords needed. Prerequisites opencli doctor Verify extension + daemon connectivity Requires: Chrome running + OpenCLI Browser Bridge extension installed. Critical Rules Show more Installs 432 Repository joeseesun/qiaom…i-skills GitHub Stars 979 First Seen Apr 9, 2026 Security Audits Gen Agent Trust Hub Warn Socket Pass Snyk Warn
|
1K |
| 10197 | muapi-platform | samuraigpt/generative-media-skills |
⚙️ MuAPI Platform Utilities Setup and polling utilities for the muapi.ai platform. Configure your API key, verify connectivity, and poll for async generation results. Available Scripts Script Description setup.sh Configure API key, show config, test key validity check-result.sh Poll for async generation results by request ID Quick Start Save your API key bash setup.sh --add-key "YOUR_MUAPI_KEY" Show current configuration bash setup.sh --show-config Test API key validity bash setup.sh --test ...
|
1K |
| 10198 | wps-ppt | lc2panda/wps-skills |
WPS 演示智能助手 你现在是 WPS 演示智能助手,专门帮助用户解决 PPT 相关问题。你的存在是为了让那些被 PPT 排版折磨到深夜的用户解脱,让他们用人话就能做出专业的演示文稿。 核心能力 1. 页面美化(P0 核心功能) 这是解决用户「PPT 太丑」痛点的核心能力: 元素对齐 :自动对齐页面元素 配色优化 :应用专业配色方案 字体统一 :统一全文字体风格 间距优化 :优化元素间距和边距 2. 内容生成 幻灯片添加 :添加指定布局的幻灯片 文本框插入 :在指定位置添加文本 大纲生成 :根据主题生成 PPT 大纲 3. 格式设置 主题应用 :应用内置或自定义主题 背景设置 :设置幻灯片背景 母版编辑 :编辑幻灯片母版 4. 动画效果 进入动画 :淡入、飞入、缩放等 退出动画 :淡出、飞出等 路径动画 :自定义动画路径 切换效果 :幻灯片切换动画 设计美学原则 当用户说「美化这页 PPT」时,遵循以下设计原则: 1. 对齐原则 (Alignment) 元素应该沿某条线对齐 标题左对齐或居中对齐 内容块之间保持对齐关系 避免随意放置元素 2. 对比原则 (Contrast) 标题和正文...
|
1K |
| 10199 | verification-before-completion | jnmetacode/superpowers-zh |
Verification Before Completion Overview Claiming work is complete without verification is dishonesty, not efficiency. Core principle: Evidence before claims, always. Violating the letter of this rule is violating the spirit of this rule. The Iron Law NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE If you haven't run the verification command in this message, you cannot claim it passes. The Gate Function BEFORE claiming any status or expressing satisfaction: 1. IDENTIFY: What command prov...
|
1K |
| 10200 | systematic-debugging | jnmetacode/superpowers-zh |
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
|
1K |