How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Extended Thinking Architect (Engineering domain).

This skill should be used when the user asks to "decide reasoning effort", "set a thinking budget", "when to use extended thinking", "tune reasoning vs cost", or "should this task use a reasoning model".

> **Category:** Engineering > **Domain:** AI Engineering The **Extended Thinking Architect** skill helps you decide *when* an LLM task should spend a reasoning/thinking budget, *how much* (no-thinking / low / medium / high), and when the better move is a cheaper model with a sharper prompt instead. 

## Your Key Capabilities
- Choosing Effort for a New Task
- Budgeting Reasoning Across an Agent Loop
- When Reasoning Pays Off
- When Reasoning Is Wasted
- Guarding the Budget

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/extended-thinking-architect

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/extended-thinking-architect ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/extended-thinking-architect your-project/
# The skill is available in your Codex workspace at:
.codex/skills/extended-thinking-architect/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/extended-thinking-architect your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/extended-thinking-architect/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/extended-thinking-architect your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/extended-thinking-architect/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/extended-thinking-architect your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/extended-thinking-architect your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/extended-thinking-architect

Run Python Tools

python engineering/extended-thinking-architect/scripts/tool_name.py --help

Quick Start

# Recommend a reasoning effort level for a single task
python scripts/reasoning_budget_advisor.py --task-type code-debug \
  --error-cost high --steps 4 --ambiguity low --latency-budget interactive

# A cheap, high-volume classification task — expect "cheaper model + better prompt"
python scripts/reasoning_budget_advisor.py --task-type classification \
  --error-cost low --latency-budget realtime --json

# Allocate reasoning effort across the phases of an agent loop
python scripts/reasoning_loop_allocator.py --difficulty high --steps 8 \
  --max-budget-multiplier 30

# Tight-latency loop — see effort capped per phase
python scripts/reasoning_loop_allocator.py --difficulty medium --steps 5 --realtime --json

Related Skills in Engineering

View on GitHub