fix-something — for Claude Code fix-something, community, for Claude Code, ide skills, CLI management, codebase issue fixing, FIXME management, git revert, pytest integration, bash scripting, Claude Code

v1.0.0

关于此技能

The fix-something AI agent skill helps developers manage and fix codebase issues using a CLI, improving overall code quality and reducing errors. It benefits developers by automating the process of identifying and addressing problems.

功能特性

Reverting changes using git revert
Updating FIXMEs with attempt counts
Extending optional context for failed fixes
Committing changes and proceeding to the final step
Running pytest to ensure passing tests
Utilizing a bash script for random FIXME selection

# 核心主题

imbue-ai imbue-ai
[13]
[3]
更新于: 3/31/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 2/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Review Score
2/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

The fix-something AI agent skill helps developers manage and fix codebase issues using a CLI, improving overall code quality and reducing errors. It benefits developers by automating the process of identifying and addressing problems.

核心价值

The fix-something AI agent skill helps developers manage and fix codebase issues using a CLI, improving overall code quality and reducing errors. It benefits developers by automating the process of identifying and addressing problems.

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · fix-something

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

fix-something 是什么?

The fix-something AI agent skill helps developers manage and fix codebase issues using a CLI, improving overall code quality and reducing errors. It benefits developers by automating the process of identifying and addressing problems.

如何安装 fix-something?

运行命令:npx killer-skills add imbue-ai/mngr/fix-something。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

fix-something 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add imbue-ai/mngr/fix-something。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    fix-something 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

fix-something

Streamline codebase management with the fix-something AI agent skill, designed for developers to efficiently fix issues and improve code quality. Get...

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Your task is to make ONE improvement to the codebase by fixing a random thing about the codebase (eg, normally a FIXME).

In order to make this process easier for you, our FIXMEs are specially formatted:

python
1# FIXME(priority)[attempts=N]: (description) 2# (optional additional context)

where description is a short description of what needs to be fixed, and N is the number of prior attempts made to fix it (if any). If there have been no prior attempts, the [attempts=N] part may be omitted. The priority is simply an integer, with 0 being the highest priority. priority may or may not be present. If not present, assume priority=3

Before doing any of the below, the first step is to check that the tests are passing by running "uv run pytest"

If the tests are not ALL passing (including all linters, ratchets, type checks, etc), then this is the thing for you to fix. In particular, you must follow this process:

  1. revert the changes from the previous commit by calling "git revert --no-commit HEAD" (so that the changed are in your current working tree, but not yet committed)
  2. update the FIXME that was attempted in the previous commit to increment the attempts count by 1 (if there were no prior attempts, add "[attempts=1]", if there were some prior attempts, increment the number by 1). Note that it should then look something like this: # FIXME[attempts=1]: (original description) or # FIXME0[attempts=2]: (original description), ie, the [attempts=N] part goes before the ":"
  3. extend the optional additional context of the FIXME with a brief note about why you were unable to fix it
  4. commit all of this.
  5. proceed directly to "# The Final Step" below.

If the tests start out passing, then you must select and fix a random FIXME by following this process:

  1. Simply run this bash command, and it will give you a random FIXME line: "./scripts/random_fixme.sh $1". If no lines are returned, then there are no more remaining FIXMEs, so use your "think-of-something-to-fix" skill to come up with something else to fix instead.
  2. Find that FIXME and be sure to read the surrounding context (the optional additional context lines below the FIXME line may be important). This is the task you will be working on.
  3. Go gather all the context for the library that contains that FIXME (per instructions in CLAUDE.md).
  4. Think carefully about how best to fix that FIXME
  5. Implement the fix
  6. Get all the tests passing (use "uv run pytest" to run them, and be sure to fix any issues, no matter how small)

Once the tests are passing, be sure that you have removed ONLY that FIXME, then commit your changes.

If you were unable to fix the issue and get all the tests passing, do the following instead:

  1. Revert any changes you made while attempting to fix the issue
  2. Update the FIXME to increment the attempts count by 1 (if there were no prior attempts, add "[attempts=1]", if there were some prior attempts, increment the number by 1). Note that it should then look something like this: # FIXME[attempts=1]: (original description) or # FIXME0[attempts=2]: (original description), ie, the [attempts=N] part goes before the ":"
  3. Extend the optional additional context with a brief note about why you were unable to fix it this time.
  4. Commit this updated FIXME (be sure that nothing else is being changed!)

The Final Step

Finally, as the very last thing you do (after committing, regardless of whether you succeeded or not), run this command: "touch $2" (to indicate that you have completed your fix task).

相关技能

寻找 fix-something 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具