think-better

作者 HoangTheQuyen已验证

The Operating System for Clear Thinking & Better Decisions

110
Stars
19
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/HoangTheQuyen/think-better

快速入门

使用 think-better 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Think Better

Think Better

Your AI writes code fast but makes terrible decisions.
Think Better injects structured decision frameworks directly into your AI prompts.

Go 1.25 License: MIT 2 AI Skills 10+ Frameworks
15 Decomposition 12 Biases 4 Depth Levels

Website · Documentation · Quick Reference · Contributing

Works with Claude · GitHub Copilot · Antigravity


The Problem

You ask your AI "Should we migrate to microservices?" and get a generic pros/cons list. No framework. No bias detection. No structured analysis. Just vibes.

Think Better fixes this. It gives your AI access to 10 decision frameworks, 15 decomposition methods, 12 cognitive bias detectors, and 160 knowledge records — turning surface-level responses into structured, rigorous analysis.


Quick Start

# macOS / Linux
curl -sSL https://raw.githubusercontent.com/HoangTheQuyen/think-better/main/install.sh | bash

# Windows (PowerShell)
irm https://raw.githubusercontent.com/HoangTheQuyen/think-better/main/install.ps1 | iex

Then install skills for your AI:

think-better init --ai claude        # Claude Code
think-better init --ai copilot       # GitHub Copilot
think-better init --ai antigravity   # Antigravity

Other install methods: go install github.com/HoangTheQuyen/think-better/cmd/make-decision@latest or clone & make build


How It Works

Just talk to your AI naturally. Think Better auto-activates when it detects a decision or problem:

You: "Should we migrate from React to Next.js for our main app?"

AI:  → Detects: Binary Choice
     → Framework: Reversibility Filter
     → Warns: Overconfidence Bias, Status Quo Bias, Sunk Cost
     → Generates: Weighted comparison matrix + action plan
You: "Revenue dropped 20% despite market growth"

AI:  → Detects: Opportunity Gap
     → Decomposition: Profitability Tree (MECE)
     → Analysis: Root Cause (5 Whys) + Fermi Estimation
     → Warns: Anchoring Bias, Confirmation Bias

Two Skills

/decide — For Choices

"choose", "compare", "should I", "pros and cons", "nên chọn cái nào", "phân vân"

10 FrameworksReversibility Filter, Weighted Matrix, Hypothesis-Driven, Pre-Mortem, Pros-Cons-Fixes...
12 Bias WarningsOverconfidence, Anchoring, Sunk Cost, Status Quo, Confirmation...
Comparison Matrix--matrix "A vs B vs C" with weighted scoring
Decision JournalTrack → Review → Improve calibration

/solve — For Problems

"solve", "debug", "root cause", "I'm stuck", "tại sao bị vậy", "không biết làm sao"

7-Step MethodDefine → Decompose → Prioritize → Analyze → Synthesize → Communicate
15 Decomposition FrameworksIssue Tree, MECE, Hypothesis Tree, Profitability Tree, Systems Map...
12 Mental ModelsFirst Principles, Inversion, Bayesian Updating, Pareto...
10 Communication PatternsPyramid Principle, BLUF, SCR, Action Titles...

Depth Levels

Control analysis depth with slash commands:

CommandDepthRecordsBest For
/solve.quick · /decide.quickQuick0.5×Fast scan, simple problems
/solve · /decideStandard1.0×Default for most situations
/solve.deep · /decide.deepDeep1.7×Complex, high-stakes decisions
/solve.exec · /decide.execExecutive2.5×Board reports, stakeholder briefings

Examples:

/solve.quick API latency spiked after deploy
/decide.deep AWS vs Azure vs GCP for cloud migration
/solve.exec Revenue declined 20% quarter over quarter

Architecture

YOU ─── "Revenue dropped 20%" ──────────────────────────────────┐
                                                                │
  ┌─────────────────────────────────────────────────────────────▼──┐
  │  AI ASSISTANT (Claude / Copilot / Antigravity)                 │
  │                                                                │
  │  ┌─ Auto-detect ──────────┐    ┌─ Slash Command ────────────┐ │
  │  │ SKILL.md triggers      │ OR │ /solve.deep → deep mode    │ │
  │  │ "solve" → problem-pro  │    │ /decide.quick → quick mode │ │
  │  └────────────┬───────────┘    └────────────┬───────────────┘ │
  │               └───────────┬────────────────┘                  │
  │                           ▼                                    │
  │  ┌────────────────────────────────────────────────────────┐   │
  │  │  🐍 BM25 Search Engine                                 │   │
  │  │  160 records × depth multiplier (0.5× → 2.5×)         │   │
  │  └────────────────────────┬───────────────────────────────┘   │
  │                           ▼                                    │
  │  ┌────────────────────────────────────────────────────────┐   │
  │  │  📋 Advisor Engine                                      │   │
  │  │  Classify → Framework → Bias Detection → Plan          │   │
  │  └────────────────────────┬───────────────────────────────┘   │
  │                           ▼                                    │
  │  📄 Structured Output + Next-step suggestions                 │
  └───────────────────────────────────────────────────────────────┘

Step-by-Step Workspace

Add "save step-by-step" to any prompt to generate a full markdown workspace:

solving-plans/project/               decision-plans/project/
├── 00-OVERVIEW.md                   ├── 00-OVERVIEW.md
├── 01-PROBLEM-DEFINITION.md         ├── 01-DECISION-TYPE.md
├── 02-DECOMPOSITION.md              ├── 02-FRAMEWORK.md
├── 03-PRIORITIZATION.md             ├── 03-CRITERIA.md
├── 04-ANALYSIS-PLAN.md              ├── 04-ANALYSIS.md
├── 05-FINDINGS.md                   ├── 05-OPTIONS.md
├── 06-SYNTHESIS.md                  ├── 06-DECISION.md
├── 07-RECOMMENDATION.md             ├── BIAS-WARNINGS.md
├── BIAS-WARNINGS.md                 └── DECISION-LOG.md
└── DECISION-LOG.md

CLI Commands

think-better init             # Install skills for your AI
think-better list             # Show installed skills
think-better check            # Verify prerequisites (Python 3)
think-better uninstall        # Remove skills
think-better version          # Show version

Project Structure

think-better/
├── cmd/make-decision/           # CLI entry point (Go)
├── internal/                    # Core logic
│   ├── skills/                  # Skill registry + embedded data
│   ├── targets/                 # AI platform definitions
│   ├── installer/               # Install/uninstall logic
│   └── cli/                     # Command handlers
├── .agents/
│   ├── skills/
│   │   ├── make-decision/       # Decision skill (SKILL.md, scripts, CSVs)
│   │   └── problem-solving-pro/ # Problem-solving skill
│   └── workflows/               # Slash command definitions
└── specs/                       # Specifications

Stats: 13 Go files · 7 Python scripts · 16 CSVs (160 records) · 8 workflows


Requirements

MethodRequirements
Binary downloadNone — just run
go installGo 1.25+
Build from sourceGo 1.25+
Running skillsPython 3

Contributing

See CONTRIBUTING.md for guidelines.



🇻🇳 Tiếng Việt

Ngừng Đoán Mò. Bắt Đầu Tư Duy Có Cấu Trúc.

AI viết code nhanh nhưng ra quyết định tệ.
Think Better tiêm framework tư duy vào prompt — biến AI thành Staff Engineer.

Cài Đặt

# macOS / Linux
curl -sSL https://raw.githubusercontent.com/HoangTheQuyen/think-better/main/install.sh | bash

# Windows
irm https://raw.githubusercontent.com/HoangTheQuyen/think-better/main/install.ps1 | iex

# Cài skill
think-better init --ai claude

Cách Dùng

Nói chuyện với AI bình thường — Think Better tự kích hoạt:

Bạn NóiAI Làm
"Nên chọn công ty lớn hay startup?"make-decision → Weighted Matrix, cảnh báo Status Quo Bias
"So sánh React vs Vue vs Angular"Bảng so sánh với tiêu chí có trọng số
"Tại sao doanh thu giảm?"problem-solving-pro → Issue Tree, Root Cause Analysis
"Bị kẹt, không biết làm sao"7 bước: Định nghĩa → Phân tách → Ưu tiên → Phân tích

2 Skill

/decide — Chọn lựa

  • 10 framework · 12 bias · So sánh đa tiêu chí · Nhật ký quyết định

/solve — Giải quyết vấn đề

  • 7 bước McKinsey · 15 framework phân tách · 12 mô hình tư duy

Slash Commands

LệnhKhi Nào
/solve.quick · /decide.quickScan nhanh
/solve · /decidePhân tích chuẩn
/solve.deep · /decide.deepPhức tạp, high-stakes
/solve.exec · /decide.execBáo cáo cho leadership
/solve.quick API chậm sau deploy
/decide.deep Nên dùng AWS hay Azure hay GCP?

Lưu Ý

  • Knowledge base tiếng Anh — AI tự dịch keyword trước khi search
  • Cần Python 3 cho script phân tích
  • Hỗ trợ Claude, Copilot, Antigravity

MIT License · Built by HoangTheQuyen

⭐ Star if Think Better helped you think better.

常见问题

What is think-better?

think-better is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by HoangTheQuyen. The Operating System for Clear Thinking & Better Decisions. It has 110 GitHub stars.

Is think-better safe to use?

Yes. think-better passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install think-better?

Clone the repository with "git clone https://github.com/HoangTheQuyen/think-better" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is think-better written in?

think-better is primarily written in Python. It is open-source under HoangTheQuyen on GitHub, so you can review or fork the full source.

Are there alternatives to think-better?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh think-better against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情