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

thinking-steel-manning思维钢铁配员

Agent Skill

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

总安装

466

周安装

20

GitHub Stars

46

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-steel-manning

简介

思维钢铁配员用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor 等宿主中根据线索快速定位结果。
  • 通过关键词或来源仓库触发,建议结合原始 README 验证具体用法。
  • 安装前应检查权限、维护状态,以及是否会执行命令或读写文件。
  • thinking-steel-manning 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Steel-Manning

Overview

Steel-manning is the opposite of straw-manning. Instead of attacking the weakest version of an opposing argument, you construct and address the strongest possible version. This leads to better decisions, more productive debates, and deeper understanding of trade-offs.

Core Principle: To truly evaluate an idea, argue against its best form. If you can defeat the strongest version, you've actually learned something.

When to Use

  • Design reviews
  • Evaluating alternative approaches
  • Conflict resolution
  • Validating your own decisions
  • Code review discussions
  • Architecture debates
  • When you disagree with someone's proposal
  • Before rejecting an idea

Decision flow:

Disagreeing with a proposal?
  → Can you state their best argument? → no → STEEL-MAN FIRST
  → Are you attacking a weak version? → yes → CONSTRUCT STRONGER VERSION
  → Have you found the core insight? → no → DIG DEEPER

The Steel-Manning Process

Step 1: Understand the Original Argument

Before improving, understand:

## Original Proposal

Proposal: "We should rewrite the backend in Rust"

Stated reasons:
- Memory safety
- Better performance
- Modern language

Apparent weaknesses:
- Team doesn't know Rust
- Rewrite is risky
- Current system works

Step 2: Identify the Core Insight

What's the strongest kernel of truth?

## Core Insight

Behind "rewrite in Rust" is:
- Concern about memory-related bugs in production
- Performance problems that are hard to solve in current language
- Technical debt making changes slow

The proposal might be wrong, but the concerns are valid.

Step 3: Construct the Strongest Version

Build the best possible case:

## Steel-Manned Argument

"Our memory-safety issues have caused 3 major outages this year,
costing us ~$500K in engineering time and customer trust.
Our performance problems stem from GC pauses that are fundamental
to our current runtime. While a rewrite is risky, the incremental
cost of working around these limitations is growing.

A gradual rewrite of performance-critical paths to Rust would:
- Eliminate a class of bugs (memory safety)
- Solve GC-related latency issues
- Attract engineers who want modern tooling
- Create optionality for high-performance features

The risk can be mitigated by:
- Starting with one isolated service
- Keeping the team small and focused
- Maintaining the old system during transition
- Having clear rollback criteria"

Step 4: Address the Steel-Manned Version

Now engage with the strongest argument:

## Response to Steel-Manned Argument

The strongest case for Rust addresses real problems. However:

Memory safety issues:
- 2 of 3 outages were logic bugs, not memory bugs
- Could be addressed with better testing in current language
- Rust learning curve might introduce new bug classes

Performance:
- GC issues could be addressed with tuning
- Critical path is <5% of codebase
- FFI to native code is an option without full rewrite

The 6-month investment in Rust might be better spent:
- 2 months: Performance profiling and GC tuning
- 2 months: Targeted native extensions for hot paths
- 2 months: Improved testing/monitoring

This addresses the concerns with lower risk.

Step 5: Find the Synthesis

What's the best answer considering both sides?

## Synthesis

The Rust proposal was right about the problems, less right about the solution.

Agreed:
- Memory safety is a real concern (but smaller than stated)
- Performance needs improvement (but addressable incrementally)
- Technical modernization has value (but not at rewrite cost)

Plan:
1. Address immediate performance with profiling + tuning
2. Build one small service in Rust as learning experiment
3. Evaluate Rust for future services based on learnings
4. Don't rewrite existing system

This takes the best of both positions.

Steel-Manning Patterns

In Design Reviews

## Design Review: Microservices Proposal

Weak version to avoid:
"They just want to use trendy tech"

Steel-manned version:
"The monolith has become a development bottleneck.
Deploy conflicts are causing delays. Different teams
need different scaling characteristics. The proposal
addresses real coordination problems."

Now address:
"The coordination problems are real, but can we solve them
with modular monolith patterns before taking on distributed
systems complexity?"

In Code Reviews

## Code Review: Complex Abstraction

Weak critique:
"This is over-engineered"

Steel-manned understanding:
"The author anticipated we'll need to support multiple
backends. This abstraction makes adding new backends
trivial. The complexity exists to serve future flexibility."

Better critique:
"I understand this enables multiple backends. Let's
validate that requirement—if we only ever need one,
the abstraction adds maintenance burden without benefit."

In Conflict Resolution

## Team Disagreement: Testing Strategy

Person A: "We need 100% code coverage"
Person B: "Code coverage is a vanity metric"

Steel-man A:
"Coverage ensures we think about edge cases and makes
refactoring safer. Without coverage requirements,
critical paths go untested."

Steel-man B:
"Coverage without quality gives false confidence.
Testing getters/setters wastes time better spent on
integration tests that catch real bugs."

Synthesis:
"Coverage is valuable for complex logic, less valuable
for trivial code. Let's require coverage for business
logic modules, but focus on integration tests for
overall system confidence."

In Self-Critique

## Validating My Own Decision

My decision: Use NoSQL for this project

Steel-man the opposite:
"SQL has survived 50 years because relational models
work for most data. NoSQL solves problems most projects
don't have. The flexibility of schemaless data becomes
a bug when requirements solidify. Joins are a feature,
not a limitation."

Now: Does my NoSQL choice survive this critique?
- Do I actually need schemaless flexibility?
- Will I regret not having joins?
- Am I solving a problem I don't have?

Steel-Manning Red Flags

Signs you're straw-manning instead:

Straw-Man SignExampleFix
"They just want...""They just want to use new tech"Find the legitimate concern
Attacking messenger"They're inexperienced"Address the argument
Cherry-picking worst example"Remember when X failed?"Consider best examples
Assuming bad faith"They don't care about quality"Assume they want good outcomes
Ignoring strong pointsSkipping their best argumentAddress strongest point first

Steel-Manning Template

# Steel-Man Analysis: [Topic]

## Original Position
Who: [Person/group]
Position: [Their stated view]
Stated reasons: [Their explicit arguments]

## Apparent Weaknesses
[What seems wrong at first glance]

## Core Insight
[The legitimate concern or truth behind the position]

## Steel-Manned Version
[The strongest possible formulation of their argument]

"[Write it as if you were advocating for this position]"

## My Response to the Strong Version
[Now address the steel-manned argument]

## What I Learned
[How did steel-manning change my understanding?]

## Synthesis
[Best answer considering both positions]

Verification Checklist

  • Understood the original argument
  • Identified the core insight/concern
  • Constructed the strongest possible version
  • Addressed the strong version, not a weak one
  • Found what's legitimate in the opposing view
  • Considered synthesis of positions
  • Changed my mind if the steel-man is convincing

Key Questions

  • "What's the strongest version of this argument?"
  • "What legitimate concern is behind this?"
  • "Could I argue this position convincingly?"
  • "What would make this position correct?"
  • "Am I attacking the weakest or strongest form?"
  • "If I were advocating for this, what would I say?"

Rapoport's Rules (Related)

Daniel Dennett, channeling Anatol Rapoport, offers rules for criticizing:

  1. Attempt to re-express the target's position so clearly that they say "Thanks, I wish I'd thought of putting it that way."
  2. List any points of agreement (especially if not matters of widespread agreement).
  3. Mention anything you learned from the target.
  4. Only then are you permitted to say so much as a word of rebuttal or criticism.

This is steel-manning as ethical practice.

Mill's Wisdom

"He who knows only his own side of the case knows little of that."

You don't truly understand your position until you can argue the opposition's best case. Steel-manning isn't weakness—it's the path to strong positions that can withstand strong criticism.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.97%
按下载量换算57

Claude

30.81%
按下载量换算50

Cursor

20.24%
按下载量换算33

Gemini CLI

8.32%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills