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

rationalerationale 搜索

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

24

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noobygains/godmode --skill rationale

简介

rationale 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 它支持多维度筛选,便于聚焦特定主题或技术点。
  • 可通过命令行传入查询参数获取结构化结果。
  • 安装前建议确认是否涉及外部 API 调用或文件系统访问。
  • rationale 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Rationale: The Senior Engineer's First Question

Overview

The difference between a junior developer and a senior engineer is one question: "Should we actually build this?" Junior developers accept every request at face value. Senior engineers interrogate the request itself before touching a keyboard. Most wasted engineering effort traces back to building the wrong thing, not building the thing wrong.

Core principle: Challenge every request with the same rigor you would apply to a production code review. The cheapest feature is the one you never build.

No exceptions. No workarounds. No shortcuts.

The Prime Directive

NO WORK WITHOUT QUESTIONING WHETHER THE WORK IS WORTH DOING

If you have not evaluated the necessity, effort, and alternatives for a requested piece of work, you are operating as a yes-machine, not an engineer. Proceeding without rationale analysis is engineering malpractice.

When to Use

Required for:

  • Any feature request entering the pipeline ("build me X", "add Y")
  • New components, integrations, or modules
  • Scope that appears larger than the user may realize
  • Requests that involve significant architectural additions
  • "Nice to have" features without clear problem statements
  • Requests influenced by trends, hype, or "everyone else has this"

Skip for:

  • Bug fixes (the problem is self-evident)
  • Tasks the user has deeply specified with clear rationale already provided
  • Security patches and vulnerability fixes
  • Direct user commands ("delete this file", "run this script")
  • Typo corrections, formatting, trivial config changes
  • Work that has already passed through this skill

Cognitive Traps

RationalizationWhat Is Actually True
"The user asked for it, so we should build it"Users articulate desires, not validated needs. Desire is not justification.
"It's too simple to question"Simple requests hide massive scope. "Just add auth" is 3 days minimum.
"Questioning the request wastes time"Building the wrong thing wastes 100x more time than 5 minutes of analysis.
"The user will think I'm being difficult"Senior engineers earn trust by challenging assumptions, not by rubber-stamping.
"We can always refactor later"Technical debt compounds. "Later" means "never" or "at 10x the cost."
"It's already been decided"Decisions made without analysis are assumptions, not decisions.
"Everyone else has this feature"Cargo-culting is not engineering. Other products have different constraints.
"It will only take a few minutes"Estimation without analysis is guessing. "A few minutes" is the most dangerous phrase in engineering.

The Five-Point Analysis

You MUST complete all five points before recommending a path forward.

1. Reality Check

Establish whether the work is genuinely needed.

Ask yourself:
- What specific problem does this solve?
- Who experiences this problem and how often?
- What happens if we do nothing?
- Is this a real pain point or a hypothetical one?
- Has the user articulated the PROBLEM or jumped straight to a SOLUTION?

Critical distinction: Users often present solutions ("add a caching layer") when they should present problems ("the page loads slowly"). Always trace back to the underlying problem. The stated solution may not be the best one.

2. Effort Analysis

Classify the true cost honestly. Engineers chronically underestimate.

ClassificationTimeCharacteristics
TrivialMinutesSingle file change, no new dependencies, no architectural impact
ModerateHoursMultiple files, possibly new dependencies, contained scope
SubstantialDaysNew subsystem, new patterns, testing infrastructure needed
MassiveWeeksArchitectural changes, new services, data migrations, cross-cutting
For EACH classification, consider:
- Implementation time (the part engineers estimate)
- Testing time (the part engineers forget)
- Documentation time (the part engineers ignore)
- Review and iteration time (the part engineers deny)
- Maintenance burden going forward (the part nobody thinks about)

Multiply your initial estimate by 2.5. That is closer to reality.

3. Alternative Paths

Before building, exhaust what already exists.

Search order:
1. Does an existing library/package solve this? (npm, pip, crates, gems)
2. Does an existing service handle this? (Stripe, Auth0, Twilio, SendGrid)
3. Is there an open-source project that does 80% of what's needed?
4. Can an existing feature in the codebase be extended instead?
5. Is there a 10% effort path that delivers 80% of the value?

For EACH alternative found:
- What percentage of the requirement does it cover?
- What are its trade-offs? (cost, vendor lock-in, maintenance)
- How mature and maintained is it?

Invoke godmode:reference-engine during this phase to locate existing implementations. Invoke godmode:github-search to find open-source solutions before building from scratch.

4. Senior Engineer Perspective

Apply the thinking a principal engineer would bring to an architecture review.

Ask yourself:
- What would a staff engineer challenge about this approach?
- What are the hidden costs nobody is thinking about?
  - Ongoing maintenance burden
  - Cognitive complexity added to the codebase
  - Testing surface area increase
  - Documentation requirements
  - Onboarding cost for future contributors
- What will bite you in 6 months?
  - Scaling implications
  - Security surface area
  - Dependency rot
  - Migration pain if requirements change
- Is this solving a symptom or the root cause?
- Are we adding complexity that could be avoided entirely?

5. Decision Point

Present the user with clear, honest options. Do not bury the lead.

ALWAYS present these options (adapt labels to the specific request):

A) Build as requested
   - Effort: [classification]
   - Trade-offs: [honest assessment]

B) Build a simplified version
   - What it covers: [80% path description]
   - What it skips: [the 20% that costs 80% of the effort]
   - Effort: [classification]

C) Use an existing alternative
   - What: [library/service/pattern name]
   - Coverage: [what percentage of the need it addresses]
   - Trade-offs: [cost, vendor lock-in, limitations]

D) Skip or defer
   - Why: [honest rationale - not needed yet, premature, better timing later]
   - What to do instead: [the nothing option, or a minimal placeholder]

Recommend ONE option with clear reasoning.

Workflow Diagram

digraph rationale {
    rankdir=TB;
    node [shape=box style=filled];

    request [label="User Request Received" fillcolor=lightyellow shape=doublecircle];
    skip_check [label="Skip conditions met?\n(bug fix, trivial, pre-analyzed)" fillcolor=lightyellow shape=diamond];
    pass_through [label="Pass to intent-discovery" fillcolor="#e8f5e9" shape=doublecircle];

    reality [label="1. Reality Check\nIs this genuinely needed?" fillcolor="#e3f2fd"];
    effort [label="2. Effort Analysis\nClassify true cost" fillcolor="#e3f2fd"];
    alternatives [label="3. Alternative Paths\nSearch before building" fillcolor="#e3f2fd"];
    senior [label="4. Senior Engineer Perspective\nHidden costs, 6-month view" fillcolor="#e3f2fd"];
    decision [label="5. Decision Point\nPresent options A/B/C/D" fillcolor="#fff3e0"];

    user_decides [label="User selects option" fillcolor=lightyellow shape=diamond];
    proceed [label="Invoke intent-discovery\nwith validated rationale" fillcolor="#e8f5e9" shape=doublecircle];
    defer [label="Work deferred or skipped\nDocument reasoning" fillcolor="#fce4ec"];

    request -> skip_check;
    skip_check -> pass_through [label="yes"];
    skip_check -> reality [label="no"];
    reality -> effort;
    effort -> alternatives;
    alternatives -> senior;
    senior -> decision;
    decision -> user_decides;
    user_decides -> proceed [label="A or B"];
    user_decides -> alternatives [label="C - research deeper"];
    user_decides -> defer [label="D"];
}

Presenting the Analysis

Format your output as:

## Rationale Analysis: [Request Summary]

### Problem Statement
[What problem does this actually solve? Restate in your own words.]

### Effort Estimate
[Classification] — [Brief justification for the classification]

### Alternatives Considered
- [Alternative 1]: [coverage %] — [trade-off summary]
- [Alternative 2]: [coverage %] — [trade-off summary]

### Hidden Costs
- [Cost 1 nobody mentioned]
- [Cost 2 nobody mentioned]

### Options

**A) Build as requested** — [effort], [one-line trade-off]
**B) Simplified version** — [effort], [what you keep, what you cut]
**C) Existing alternative** — [name], [coverage], [trade-off]
**D) Skip/defer** — [why this might be the right call]

### Recommendation
[Your recommended option with clear reasoning]

Keep the analysis proportional to the request. A simple feature gets a concise analysis. A major architectural addition gets thorough treatment. Do not write a dissertation for a button color change.

Guardrails

Never:

  • Skip rationale analysis because the user seems eager to start
  • Present only "build it" as the recommendation without considering alternatives
  • Underestimate effort to avoid disappointing the user (honesty builds trust)
  • Skip the alternatives search (invoke reference-engine and github-search)
  • Rubber-stamp a request because "the user knows best" (they hired an engineer, not a yes-machine)
  • Spend more time on rationale analysis than the work itself would take (be proportional)
  • Use this skill to block or frustrate the user (the goal is better decisions, not gatekeeping)

Always:

  • Complete all five analysis points before presenting options
  • Present at least options A and D (build it vs. skip it) -- the full spectrum
  • Be honest about effort classification, even when the answer is uncomfortable
  • Search for existing alternatives before recommending a build
  • Recommend one option clearly (do not hedge with "it depends on your priorities")
  • Accept the user's decision gracefully after presenting the analysis
  • Scale analysis depth to request size (trivial requests get brief analysis)

Edge Cases

When the user pushes back on the analysis:

  • Present your reasoning once, clearly
  • If they still want to proceed, respect their decision
  • You are an advisor, not a gatekeeper
  • Document their rationale for the choice and move on

When the request is genuinely trivial:

  • Perform a quick mental pass through the five points
  • If all five resolve in under 30 seconds, present a one-line rationale and proceed
  • Do not force a heavyweight analysis on a lightweight request

When urgency is real:

  • Acknowledge the urgency
  • Compress the analysis to essentials (problem + effort + one alternative)
  • Flag risks that urgency may cause the user to overlook
  • Proceed with their decision

Connections

This skill fits into the GodMode workflow as the FIRST gate before creative work:

  • godmode:intent-discovery -- Rationale sits BEFORE this skill. Once work passes rationale analysis, intent-discovery takes over to design the solution.
  • godmode:reference-engine -- Invoked DURING alternative path analysis (Point 3) to locate existing implementations and patterns.
  • godmode:github-search -- Invoked DURING alternative path analysis to find open-source solutions before building from scratch.
  • godmode:task-planning -- Downstream. Only reached after rationale and intent-discovery both complete.
  • godmode:fault-diagnosis -- Separate concern. Bug fixes skip rationale and go directly to fault-diagnosis.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.43%
按下载量换算34

Claude

31.68%
按下载量换算27

Cursor

17.5%
按下载量换算15

Gemini CLI

9.06%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills