自动定期更新

Coding & Refactoring Agent Skill

浏览 Coding & Refactoring 类工作流,并导入 Codex、Claude Code、Cursor 等 coding agent。

699个 Skill
23出处
602Low risk
Jul 13更新时间
324 个 Skill
自动定期更新
65推荐

agentic-eval

Coding & Refactoring

Patterns and techniques for evaluating and improving AI agent outputs. Use this skill when: - Implementing self-critique and reflection loops - Building evaluator-optimizer pipelines for quality-critical generation - Creating test-driven code refinement workflows - Designing rubric-based or LLM-as-judge evaluation systems - Adding iterative improvement to agent outputs (code, reports, analysis) - Measuring and improving agent response quality

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

prd

Coding & Refactoring

Generate high-quality Product Requirements Documents (PRDs) for software systems and AI-powered features. Includes executive summaries, user stories, technical specifications, and risk analysis.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

appinsights-instrumentation

Coding & Refactoring

Instrument a webapp to send useful telemetry data to Azure App Insights

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

apple-appstore-reviewer

Coding & Refactoring

Serves as a reviewer of the codebase with instructions on looking for Apple App Store optimizations or rejection reasons.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

Comprehensive project architecture blueprint generator that analyzes codebases to create detailed architectural documentation. Automatically detects technology stacks and architectural patterns, generates visual diagrams, documents implementation patterns, and provides extensible blueprints for maintaining architectural consistency and guiding new development.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

aspnet-minimal-api-openapi

Coding & Refactoring

Create ASP.NET Minimal API endpoints with proper OpenAPI documentation

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

aws-resource-query

Coding & Refactoring

Query AWS resources using natural language. Covers EC2, S3, RDS, Lambda, ECS, EKS, Secrets Manager, IAM, VPC, networking, messaging, and more. Strictly read-only — no writes, deletes, or mutations.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

azure-resource-visualizer

Coding & Refactoring

Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. Use this skill when the user asks for a diagram of their Azure resources or help in understanding how the resources relate to each other.

github/awesome-copilot·Complete terms in LICENSE.txt·Agent Skills
low100质量分
65推荐

react-audit-grep-patterns

Coding & Refactoring

Provides the complete, verified grep scan command library for auditing React codebases before a React 18.3.1 or React 19 upgrade. Use this skill whenever running a migration audit - for both the react18-auditor and react19-auditor agents. Contains every grep pattern needed to find deprecated APIs, removed APIs, unsafe lifecycle methods, batching vulnerabilities, test file issues, dependency conflicts, and React 19 specific removals. Always use this skill when writing audit scan commands - do not rely on memory for grep syntax, especially for the multi-line async setState patterns which require context flags.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react18-batching-patterns

Coding & Refactoring

Provides exact patterns for diagnosing and fixing automatic batching regressions in React 18 class components. Use this skill whenever a class component has multiple setState calls in an async method, inside setTimeout, inside a Promise .then() or .catch(), or in a native event handler. Use it before writing any flushSync call - the decision tree here prevents unnecessary flushSync overuse. Also use this skill when fixing test failures caused by intermediate state assertions that break after React 18 upgrade.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

batch-files

Coding & Refactoring

Expert-level Windows batch file (.bat/.cmd) skill for writing, debugging, and maintaining CMD scripts. Use when asked to "create a batch file", "write a .bat script", "automate a Windows task", "CMD scripting", "batch automation", "scheduled task script", "Windows shell script", or when working with .bat/.cmd files in the workspace. Covers cmd.exe syntax, environment variables, control flow, string processing, error handling, and integration with system tools.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

bigquery-pipeline-audit

Coding & Refactoring

Audits Python + BigQuery pipelines for cost safety, idempotency, and production readiness. Returns a structured report with exact patch locations.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react18-enzyme-to-rtl

Coding & Refactoring

Provides exact Enzyme → React Testing Library migration patterns for React 18 upgrades. Use this skill whenever Enzyme tests need to be rewritten - shallow, mount, wrapper.find(), wrapper.simulate(), wrapper.prop(), wrapper.state(), wrapper.instance(), Enzyme configure/Adapter calls, or any test file that imports from enzyme. This skill covers the full API mapping and the philosophy shift from implementation testing to behavior testing. Always read this skill before rewriting Enzyme tests - do not translate Enzyme APIs 1:1, that produces brittle RTL tests.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react18-legacy-context

Coding & Refactoring

Provides the complete migration pattern for React legacy context API (contextTypes, childContextTypes, getChildContext) to the modern createContext API. Use this skill whenever migrating legacy context in class components - this is always a cross-file migration requiring the provider AND all consumers to be updated together. Use it before touching any contextTypes or childContextTypes code, because migrating only the provider without the consumers (or vice versa) will cause a runtime failure. Always read this skill before writing any context migration - the cross-file coordination steps here prevent the most common context migration bugs.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react18-lifecycle-patterns

Coding & Refactoring

Provides exact before/after migration patterns for the three unsafe class component lifecycle methods - componentWillMount, componentWillReceiveProps, and componentWillUpdate - targeting React 18.3.1. Use this skill whenever a class component needs its lifecycle methods migrated, when deciding between getDerivedStateFromProps vs componentDidUpdate, when adding getSnapshotBeforeUpdate, or when fixing React 18 UNSAFE_ lifecycle warnings. Always use this skill before writing any lifecycle migration code - do not guess the pattern from memory, the decision trees here prevent the most common migration mistakes.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

breakdown-epic-arch

Coding & Refactoring

Prompt for creating the high-level technical architecture for an Epic, based on a Product Requirements Document.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react19-concurrent-patterns

Coding & Refactoring

Preserve React 18 concurrent patterns and adopt React 19 APIs (useTransition, useDeferredValue, Suspense, use(), useOptimistic, Actions) during migration.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react19-source-patterns

Coding & Refactoring

Reference for React 19 source-file migration patterns, including API changes, ref handling, and context updates.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

react19-test-patterns

Coding & Refactoring

Provides before/after patterns for migrating test files to React 19 compatibility, including act() imports, Simulate removal, and StrictMode call count changes.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

Refactor given method `${input:methodName}` to reduce its cognitive complexity to `${input:complexityThreshold}` or below, by extracting helper methods.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

refactor

Coding & Refactoring

Surgical code refactoring to improve maintainability without changing behavior. Covers extracting functions, renaming variables, breaking down god functions, improving type safety, eliminating code smells, and applying design patterns. Less drastic than repo-rebuilder; use for gradual improvements.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

remember

Coding & Refactoring

Transforms lessons learned into domain-organized memory instructions (global or workspace). Syntax: `/remember [>domain [scope]] lesson clue` where scope is `global` (default), `user`, `workspace`, or `ws`.

github/awesome-copilot·MIT·Agent Skills
low100质量分
65推荐

repo-story-time

Coding & Refactoring

Generate a comprehensive repository summary and narrative story from commit history

github/awesome-copilot·MIT·Agent Skills
low100质量分

按用途和 Coding Agent 浏览 Skill

查找适用于 Codex、Claude Code、GitHub Copilot、Cursor 和 Gemini CLI 的可追溯 Skill。