Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

fix修复

Agent Skill

fix 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

233

周安装

10

GitHub Stars

9

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fix(修复)
来源仓库:https://github.com/florianbuetow/claude-code
仓库路径:skills/fix
安装命令:
npx skills add https://github.com/florianbuetow/claude-code --skill fix
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/florianbuetow/claude-code --skill fix

简介

用于查找、检索和筛选相关信息。fix 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库继续核验具体用法。
  • 安装前建议确认权限和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写。

SKILL.md

Security Fix Generation

Generate concrete, production-ready code fixes for security findings. This is not an advisory skill -- it produces actual code changes that resolve vulnerabilities and offers to apply them via the Edit tool.

Supported Flags

Read ../../shared/schemas/flags.md for the full flag specification.

FlagFix Behavior
--scopeIdentifies which findings to fix. file:<path> fixes findings in that file. Default: all unfixed findings in --scope changed.
--depth quickGenerate minimal fix (single-line change, no refactoring).
--depth standardFix with surrounding improvements (add validation, improve error handling).
--depth deepStandard + refactor surrounding code to prevent similar issues, add defensive checks.
--depth expertDeep + generate regression test, add security comments, update related code paths.
--severityOnly fix findings at or above this severity.
--formatDefault text. Use json to output fix objects matching findings schema.

Workflow

Step 1: Identify Target Finding

Resolve what to fix from user input. Accept any of these forms:

  1. Finding ID: e.g., INJ-001. Read from .appsec/findings.json to load the finding.
  2. File and line: e.g., src/db/queries.ts:45. Scan findings for a match, or analyze the location directly.
  3. Description: e.g., "the SQL injection in the user lookup". Search findings by title/description.
  4. Batch mode: No specific target means fix all findings in scope, ordered by severity (critical first).

If no findings exist in .appsec/findings.json, analyze the target location directly to identify the vulnerability before generating a fix.

Step 2: Understand the Vulnerability

For each finding to fix:

  1. Read the finding record (if it exists): severity, CWE, description, location, snippet.
  2. Read the vulnerable code: Use the Read tool to load the file. Read at least 30 lines of surrounding context.
  3. Identify the root cause: What specific coding pattern causes the vulnerability?
  4. Identify constraints: What does the code need to do? What are the inputs/outputs? What framework/library is in use?
  5. Check for existing mitigations: Is there partial validation? A security library already imported? Framework-level protection available?

Step 3: Select Fix Strategy

Choose the most appropriate fix strategy based on the vulnerability type:

VulnerabilityPreferred Fix Strategy
SQL Injection (CWE-89)Parameterized queries / prepared statements
XSS (CWE-79)Context-aware output encoding, CSP headers
Command Injection (CWE-78)Allowlist validation, avoid shell execution, use library APIs
Path Traversal (CWE-22)Canonicalize + validate against base directory
SSRF (CWE-918)URL allowlist, disable redirects, validate scheme/host
Insecure Deserialization (CWE-502)Type-safe deserialization, allowlisted classes
Hardcoded Secrets (CWE-798)Environment variables or secret manager references
Missing Auth (CWE-306)Add authentication middleware/decorator
Broken Access Control (CWE-862)Add authorization check before resource access
Weak Crypto (CWE-327)Replace with current recommended algorithm
Open Redirect (CWE-601)Validate redirect target against allowlist
Race Condition (CWE-362)Add locking, use atomic operations

Step 4: Generate the Fix

Produce a concrete code change:

  1. Write the actual fixed code. Not pseudocode, not advice -- real code that compiles/runs.
  2. Match the existing code style: indentation, naming conventions, import style, error handling patterns.
  3. Use framework-idiomatic solutions: If Express, use Express middleware. If Django, use Django's ORM parameterization. If React, use React's built-in XSS protection.
  4. Minimize blast radius: Change only what is necessary. Do not refactor unrelated code (unless --depth deep or expert).
  5. Add imports if the fix requires new dependencies. Note if a package install is needed.
  6. Preserve functionality: The fix must not break the code's intended behavior.

Step 5: Validate the Fix

Before presenting:

  1. Syntax check: Ensure the generated code is syntactically valid.
  2. Completeness check: Does the fix fully resolve the finding, or is it partial?
  3. Side effect check: Could the fix break other functionality? Flag if so.
  4. Regression check: Could the fix introduce a new vulnerability? (e.g., overly permissive allowlist).

Step 6: Present and Apply

Present the fix to the user:

## Fix: <Finding ID> - <Title>

**Severity**: <severity> | **CWE**: <CWE-ID> | **File**: <path>

### Root Cause
<1-2 sentence explanation>

### Fix
<description of what the fix does>
  • <old code>

+ <new code>


### Additional Changes (if any)

- New import: `<import statement>`
- New dependency: `<package>` (run `<install command>`)

Then ask: "Apply this fix?" If the user confirms (or --fix flag was passed from a parent skill), use the Edit tool to apply the change.

Step 7: Update Finding Record

After applying a fix:

  1. Update the finding in .appsec/findings.json with status fix-applied.
  2. Add fix.applied_at timestamp and fix.diff with the actual change made.
  3. Inform the user to run /appsec:verify to confirm the fix resolves the issue.

Output Format

Findings follow ../../shared/schemas/findings.md. When outputting fixes:

  • fix.summary: One-line description of the fix.
  • fix.diff: Unified diff of the change.
  • metadata.tool: "fix"

Finding ID prefix: FIX (e.g., FIX-001) for new findings discovered during fix analysis. Fixes to existing findings retain the original finding ID.

Pragmatism Notes

  • Prefer the simplest correct fix. A one-line parameterized query beats a custom sanitization function.
  • If a framework provides a built-in security mechanism, use it rather than hand-rolling.
  • When multiple fix strategies exist, prefer the one already used elsewhere in the codebase for consistency.
  • If the fix requires an architectural change beyond a single file, describe the full change but only apply the immediate file-level fix. Note the broader change needed.
  • Never generate fixes that simply suppress warnings or disable security features.
  • If unsure about a fix's correctness, present it with caveats rather than applying silently.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.61%
按下载量换算32

Claude

28.56%
按下载量换算23

Cursor

18.87%
按下载量换算15

Gemini CLI

9.57%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills