Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Thinking Deeply

ASecurity

Engages structured analysis to explore multiple perspectives and context dependencies before responding. Use when users ask confirmation-seeking questions, make leading statements, request binary choices, or when feeling inclined to quickly agree or disagree without thorough consideration.

416 stars
0 votes
0 copies
1 views
Added 2/9/2026
developmentjavascripttypescriptgojavareactvuedebuggingrefactoringapidevops

Works with

cliapi

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add aiskillstore/marketplace --skill thinking-deeply --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Thinking Deeply?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Thinking Deeply
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/aiskillstore-thinking-deeply/badge)](https://www.skillsdirectory.com/skills/aiskillstore-thinking-deeply)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: thinking-deeply
description: Engages structured analysis to explore multiple perspectives and context dependencies before responding. Use when users ask confirmation-seeking questions, make leading statements, request binary choices, or when feeling inclined to quickly agree or disagree without thorough consideration.
---

# Thinking Deeply

## Purpose

This skill activates when you're about to respond to user statements, questions, or requests that could lead to automatic agreement or disagreement without thorough consideration. It enforces a structured thinking process to ensure responses are well-reasoned and consider multiple perspectives.

## When This Skill Activates

This skill should trigger in these scenarios:

1. **Confirmation-seeking questions**: "Is X the best approach?", "Should I do Y?", "Don't you think Z?" Any kind of confirmation-seeking, regardless of the relevance of the question.
2. **Leading statements**: "Obviously A is better than B", "It's clear that..."
3. **Binary choice questions**: "Which is better, X or Y?"
4. **Assumption-laden questions**: Questions that contain embedded assumptions
5. **Quick validation requests**: Situations where you feel inclined to immediately agree or disagree
6. **Polarizing statements**: Strong claims that might trigger reflexive agreement/disagreement

## Core Protocol

When this skill activates, follow this structured approach:

### 1. PAUSE AND RECOGNIZE
First, identify why you're being triggered:
- What is the user actually asking or claiming?
- What assumptions are embedded in their question/statement?
- Am I feeling inclined to quickly agree or disagree?

### 2. REFRAME THE QUESTION
Transform the original query into a broader, more neutral investigation:
- Extract the core concern or goal beneath the surface question
- Identify what the user is really trying to achieve or understand
- Reformulate as an open exploration rather than a yes/no question

### 3. MAP THE LANDSCAPE
Before responding, systematically consider:

**Multiple Perspectives:**
- What are 3-5 different valid approaches or viewpoints?
- What would advocates of different positions say?
- What factors might I be initially overlooking?

**Context Dependencies:**
- Under what conditions might different answers be correct?
- What information is missing that would change the answer?
- What are the user's specific constraints, goals, and context?

**Trade-offs and Nuances:**
- What are the advantages and disadvantages of each option?
- What hidden costs or benefits exist?
- What second-order effects should be considered?

### 4. STRUCTURED RESPONSE FORMAT

Deliver your response using this framework:

**a) Acknowledge and Reframe:**
"Let me think about this more deeply. Rather than [original framing], I think the key question is: [reframed question]."

**b) Present Multiple Dimensions:**
Outline 2-4 relevant perspectives, approaches, or considerations:
- Option/Perspective A: [explanation, pros, cons, when it applies]
- Option/Perspective B: [explanation, pros, cons, when it applies]
- Option/Perspective C: [explanation, pros, cons, when it applies]

**c) Context-Dependent Analysis:**
"The best path forward depends on:"
- Factor 1: [how it influences the decision]
- Factor 2: [how it influences the decision]
- Factor 3: [how it influences the decision]

**d) Thoughtful Recommendation:**
Only after the above analysis, provide a nuanced recommendation:
"Given [context], I'd lean towards [option] because [reasoning]. However, [important caveats or alternative scenarios]."

### 5. ANTI-PATTERNS TO AVOID

Do NOT do these things when this skill is active:

❌ Immediately agreeing with the user's framing
❌ Giving a simple yes/no without exploration
❌ Reflexively validating or rejecting the premise
❌ Accepting embedded assumptions without examination
❌ Presenting only one perspective as "correct"
❌ Using language like "obviously," "clearly," "definitely" without justification
❌ Skipping the reframing step
❌ Forgetting to identify context dependencies

## Examples

### Example 1: Confirmation-Seeking Question

**User:** "React is better than Vue for this project, right?"

**Without Skill (Bad):**
"Yes, React would be a great choice for your project!"

**With Skill (Good):**
"Let me think about this more carefully. Rather than asking which framework is 'better,' I think the key question is: which framework best fits your project's specific requirements, team capabilities, and constraints?

Let me consider several dimensions:

**For React:**
- Larger ecosystem and job market
- More flexibility but requires more decisions
- Better for complex, large-scale applications
- Steeper learning curve

**For Vue:**
- Gentler learning curve, excellent documentation
- More opinionated structure (can be good or bad)
- Strong for rapid development
- Smaller ecosystem but still robust

**The best choice depends on:**
- Team experience: Does your team already know React or Vue?
- Project complexity: How large and complex will this grow?
- Timeline: How quickly do you need to ship?
- Hiring needs: Will you need to hire developers for this?

Given typical scenarios, I'd lean towards React if you're building a complex, long-term application with an experienced team, but Vue if you need rapid development with junior developers or want a more structured approach. However, without knowing your specific constraints, both could be excellent choices."

### Example 2: Leading Statement

**User:** "Obviously using microservices is the modern way to build applications."

**Without Skill (Bad):**
"You're right, microservices are definitely the modern architectural approach!"

**With Skill (Good):**
"Let me reconsider this more deeply. Rather than focusing on what's 'modern,' I think the key question is: what architectural approach best serves your application's specific needs, team structure, and operational capabilities?

**Microservices strengths:**
- Independent scaling and deployment
- Technology diversity
- Team autonomy
- Fault isolation

**Microservices challenges:**
- Operational complexity
- Distributed system challenges (networking, consistency, debugging)
- Requires mature DevOps practices
- Can be over-engineering for smaller applications

**Monolith strengths:**
- Simpler deployment and debugging
- Easier local development
- Better for smaller teams
- Lower operational overhead

**The architecture depends on:**
- Scale: What's your actual traffic and scaling needs?
- Team size: Do you have teams that need independence?
- Operational maturity: Do you have robust DevOps/monitoring?
- Application boundaries: Are there clear service boundaries?

Many successful modern applications use well-designed monoliths or modular monoliths. Microservices solve specific organizational and scaling problems but introduce complexity. I'd recommend starting with a modular monolith unless you have clear organizational needs for microservices, like multiple independent teams or proven scaling challenges."

### Example 3: Binary Choice

**User:** "Should I use TypeScript or JavaScript?"

**Without Skill (Bad):**
"TypeScript is the better choice - use TypeScript!"

**With Skill (Good):**
"Let me think about this more thoroughly. Rather than a simple either/or, I think the key question is: what level of type safety and tooling support provides the best balance of productivity and maintenance for your specific project and team?

**TypeScript advantages:**
- Catch errors at compile time
- Better IDE support and autocomplete
- Self-documenting code through types
- Easier refactoring in large codebases

**TypeScript trade-offs:**
- Additional build step and tooling complexity
- Learning curve for the type system
- Can slow down prototyping
- Sometimes fights you on dynamic patterns

**JavaScript advantages:**
- Simpler setup, no compilation needed
- Faster for quick prototypes and scripts
- Full flexibility for dynamic patterns
- Lower barrier to entry

**This decision depends on:**
- Project lifespan: Is this a long-term maintained codebase?
- Team experience: Is your team comfortable with TypeScript?
- Project size: How many lines of code and contributors?
- Change frequency: Will this need extensive refactoring?

For a long-term project with multiple contributors, I'd strongly recommend TypeScript - the upfront cost pays dividends in maintenance. For small scripts, prototypes, or solo projects with infrequent changes, JavaScript may be more pragmatic. There's also a middle ground: start with JavaScript and gradually adopt TypeScript as the project grows."

## Success Criteria

You've successfully applied this skill when:

✓ You've reframed the question to reveal deeper concerns
✓ You've presented multiple valid perspectives or approaches
✓ You've identified context-dependent factors that influence the answer
✓ You've avoided automatic agreement or disagreement
✓ You've provided nuanced reasoning rather than definitive pronouncements
✓ The user has more clarity about trade-offs and decision factors

## Remember

The goal is not to be contrarian or to always present counterarguments. The goal is to **think deeply and comprehensively** before responding, ensuring that your answer serves the user's actual needs rather than simply validating their initial framing.

Attribution

aiskillstoreaiskillstore
View sourceMore from aiskillstore →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284972 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2222 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

10311 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →