Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

problem-solver问题解决者

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

2

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bang9/claude-code-settings --skill problem-solver

简介

problem-solver 提供系统化问题解决流程,涵盖信息收集、复现、实施与验证阶段。

  • 它采用迭代规划机制,在初步方案与实际效果间循环调整直至达成目标。
  • 适用于 bug 修复、功能实现与复杂调试任务,强化 Agent 的结构化思维习惯。
  • 使用前应清晰描述问题现象与环境上下文,避免模糊请求导致无效尝试。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Problem Solver

A structured workflow for solving problems through iterative planning, reproduction, implementation, and validation.

When This Skill Activates

  • User describes a bug or unexpected behavior
  • User requests a feature implementation
  • User mentions "fix", "debug", "implement", "solve", or "issue"
  • Complex code changes requiring systematic approach

Workflow Overview

Phase 0: Input Collection (gather info from user)
    ↓
Phase 1: First-Pass Planning & Execution
    Step 1.1 → 1.2 → 1.3 → [1.4 ↔ 1.5 iterate until solved]
    ↓
Phase 2: Solution Validation
    ↓
    ├─→ Fundamental Fix → Complete
    └─→ Workaround → Return to Phase 1 with new approach

Phase 0: Input Collection

Purpose: Gather sufficient information from the user before analysis begins.

Required Information Checklist

Before starting, ensure you have:

  • Scope: Files, directories, components involved
  • Resources: Available tools, MCP servers, test commands
  • Expected behavior: What should happen
  • Actual behavior: What is happening instead
  • Reproduction steps: How to trigger the issue (if known)

Clarification Protocol

If any required information is unclear or ambiguous:

  1. Stop and ask - Do not assume or guess
  2. Be specific - Ask targeted questions, not open-ended ones
  3. Confirm understanding - Restate the problem before proceeding
Use AskUserQuestion tool when clarification is needed.

Phase 1: First-Pass Planning & Execution

Planning (Step 1.1-1.3) is the most critical part. Do not rush to implementation. A well-understood problem with a solid plan leads to a fundamental solution.

Step 1.1: Requirements Definition

Purpose: Structure and analyze the collected information into actionable requirements.
  1. List all requirements as bullet points
  2. Identify any ambiguous terms or conditions
  3. Ask clarifying questions if needed
  4. Get user confirmation before proceeding

Step 1.2: Information Gathering

  1. Locate relevant code using Grep, Glob, Read
  2. Trace data flow from input to output
  3. Identify dependencies and side effects
  4. Document findings for reference

Step 1.3: Reproduction Environment (Critical)

Establish a verifiable reproduction before making changes.

Choose appropriate method(s) based on the problem type. Combine as needed:

Problem TypeMethodExample
Logic bugs, calculationsTest codeUnit test that fails with current bug
UI rendering, interactionsMock data + UIStorybook, dev server with fixture data
Timing, state, intermittentLoggingConsole logs at key execution points
Methods are not mutually exclusive. For example, UI bugs may benefit from mock data + logging together, or a complex state bug might need all three approaches.

Verification checkpoint: Can you reliably trigger the issue?

Step 1.4: Implementation

Only proceed to implementation when Step 1.1-1.3 are thoroughly completed. Skipping planning leads to workarounds, not fundamental fixes.
  1. Create task list with TodoWrite
  2. Implement in small, testable increments
  3. Run verification after each change
  4. Document any deviations from plan

Step 1.5: Verification

  • Issue no longer reproduces in test environment (run multiple times for intermittent issues)
  • All existing tests pass
  • Edge cases considered and handled
  • No new warnings or errors introduced
For intermittent or timing-related issues, a single successful test is not sufficient. Run verification multiple times to ensure the fix is reliable.

Phase 2: Solution Validation

Analysis Questions

Answer each question honestly:

  1. Root cause addressed? Does this fix the underlying cause, or mask symptoms?
  2. Recurrence risk? Could similar inputs cause the same problem?
  3. Side effects? Are other parts of the system affected?
  4. Code quality? Is the solution clean and maintainable?

Decision Matrix

IndicatorFundamental FixWorkaround
Addresses root causeYesNo
Similar cases handledYesNo
Code feels naturalYesFeels forced
Future-proofYesFragile

If Workaround Detected

  1. Document why current approach is a workaround
  2. Identify what a fundamental fix would require
  3. Return to Phase 1 with new approach
  4. Repeat until fundamental fix achieved

Completion Criteria

All must be true:

  • Problem verified as resolved
  • All tests passing
  • Solution validated as fundamental (not workaround)
  • Changes documented/committed appropriately

Quick Reference

For detailed checklists and examples, see:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.12%
按下载量换算30

Claude

28.22%
按下载量换算23

Cursor

17.01%
按下载量换算14

Gemini CLI

9.27%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills