# Critical Thinking with LLMs: A Practical Workflow

> Source: <https://promptcube3.com/en/threads/2882/>
> Published: 2026-07-24 19:49:47+00:00

# Critical Thinking with LLMs: A Practical Workflow

To actually improve critical thinking, you have to shift from "Answer Mode" to "Challenge Mode." Instead of asking for a summary, you should be using the AI to find holes in your own reasoning or to simulate a counter-argument.

## Implementing a Socratic AI Workflow

If you want to use an LLM agent to sharpen your analysis of a dense text or a complex problem, stop using generic prompts. You need a structured prompt engineering approach that forbids the AI from agreeing with you.

Here is a specific prompt template I use to turn a standard LLM into a critical thinking coach. Instead of asking "What does this paper say?", I feed it the text and then run this:

```
Act as a skeptical academic peer reviewer. I will provide a claim or a summary of a text. Your goal is not to agree or summarize, but to:
1. Identify the weakest logical link in the argument.
2. Point out any unstated assumptions the author is making.
3. Provide a counter-example that would invalidate the main conclusion.
4. Ask me one probing question that forces me to justify the evidence provided.

Constraint: Do not use phrases like "The author suggests" or "In summary." Go straight to the critique.
```

## Real-World Application: Testing a Hypothesis

Let's say you're analyzing a research paper on "The impact of remote work on productivity." A standard summary tells you "Productivity stayed the same or increased." A critical thinking workflow looks like this:

1. **Input the Paper:** Upload the PDF or paste the text.

2. **Execute the Socratic Prompt:** The AI identifies that the "productivity" metric is based on self-reporting (a massive bias).

3. **Deep Dive:** You then ask the AI to find other papers that specifically study the "self-reporting bias in remote work studies."

This transforms the AI from a shortcut into a lens. You aren't just consuming information; you're analyzing the validity of the source.

## Technical Setup for an AI-Driven Analysis Pipeline

For those who want to automate this across multiple documents without losing the critical edge, I recommend a local deployment using a tool like Ollama or a structured workflow in a notebook. If you're building a custom LLM agent for this, you should tune the temperature setting.

**Temperature Setting:** Set`temperature`

to`0.3`

or`0.4`

.**Reasoning:** High temperature (0.7+) leads to "hallucinated agreement" where the AI tries to be too helpful. A lower temperature forces the model to be more precise and less prone to flowery, affirmative language.

Example config for a local API call:

```
{
  "model": "llama3",
  "prompt": "Analyze the logical fallacies in the following text: [Text]",
  "options": {
    "temperature": 0.3,
    "num_predict": 500,
    "top_p": 0.9
  }
}
```

## Is it Worth It?

The risk of "cognitive atrophy" is real. If you use AI to skip the hard part of thinking, you'll get slower and less perceptive. But if you treat the AI as a tool for stress-testing your ideas, it's an incredible force multiplier.

The difference is in the prompt. A "summary" prompt is a tool for efficiency; a "critique" prompt is a tool for intelligence. If you're looking for a complete guide on how to structure these interactions, check out the resources at promptcube3.com.

[Next Midjourney Acquires Co-Star: AI Art Meets Astrology →](/en/threads/2878/)
