problem-solving

problem-solving is a skill for Claude Code, Codex from jamestorrevillas/dev-skills. It costs 68 tokens per session (677 once invoked), scanned A, original, MIT.

A structured method for solving complex or unclear problems by defining the real issue, setting limits, splitting the work, comparing options, and reviewing the result.

In plain words
What is it for?
Use it to clarify vague tasks, break large challenges into smaller parts, apply first-principles thinking, choose between approaches, and check whether the outcome solved the original problem.
Why use it?
It helps prevent spending time on a solution to the wrong problem or committing to the first idea without checking its assumptions.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jamestorrevillas/dev-skills/problem-solving
Any agent
npx skills add jamestorrevillas/dev-skills --skill problem-solving
Clone the repo
git clone --depth 1 https://github.com/jamestorrevillas/dev-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for problem-solving

README.md
[![agentmods](https://agentmods.dev/badge/skills/jamestorrevillas/dev-skills/problem-solving.svg)](https://agentmods.dev/skills/jamestorrevillas/dev-skills/problem-solving)
Your own site
<a href="https://agentmods.dev/skills/jamestorrevillas/dev-skills/problem-solving"><img src="https://agentmods.dev/badge/skills/jamestorrevillas/dev-skills/problem-solving.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 677 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00068 $0.00677
Opus 5 $0.00034 $0.00338
Sonnet 5 $0.00014 $0.00135
Haiku 4.5 $0.00007 $0.00068

Measured 3d ago against content hash 339810001341, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

problem-solving scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/problem-solving/SKILL.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Problem Solving

Core Mindset

Don't solve the problem you think you have. Solve the problem you actually have.

Most wasted effort in software comes from solving the wrong problem confidently. The first step is always to verify the problem definition.


The Problem-Solving Framework

1. DEFINE    — What is the actual problem? (not the symptom)
2. CONSTRAIN — What are the boundaries? (must-haves, non-negotiables)
3. DECOMPOSE — Break into smaller sub-problems
4. EXPLORE   — Generate multiple approaches before committing
5. DECIDE    — Choose based on explicit criteria
6. EXECUTE   — Implement the chosen approach
7. REVIEW    — Did it solve the right problem?

First Principles Thinking

Instead of reasoning by analogy ("how do others do this?"), break the problem down to fundamental truths:

1. What do we know for certain is true about this problem?
2. What assumptions am I making that might be wrong?
3. If I had to rebuild this from scratch knowing only those truths, 
   what would I build?

Use when: existing solutions feel wrong, you're stuck in conventional thinking, or you need a breakthrough.


Decomposition Techniques

Top-Down

Start with the goal, break into sub-goals:

Goal: Build a user auth system
└── Registration flow
    ├── Form validation
    ├── Password hashing
    └── Email verification
└── Login flow
    ├── Credential verification
    ├── Session/token creation
    └── Remember me
└── Security hardening
    ├── Rate limiting
    ├── Brute force protection
    └── Audit logging

MECE (Mutually Exclusive, Collectively Exhaustive)

Ensure sub-problems don't overlap and together cover the whole problem.


When You're Stuck

  1. Restate the problem in different words
  2. Ask "what would need to be true" for each possible solution to work
  3. Invert — what would make this definitely fail? Design away from that.
  4. Simplify — solve a simpler version first, then generalize
  5. Time-box exploration — 30 min max before asking for help

Read the full file on GitHub · 98 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 98 lines · 0 tokens per session scan A 339810001341

Subscribe to this mod's changes

problem-solving is a skill published in the GitHub repository jamestorrevillas/dev-skills (3 stars, last pushed 5mo ago), licensed MIT. It adds 68 tokens to every session and 677 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

jira-cli

Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.

Code-and-Sorts/awesome-copilot-agents · 60 tokens

azure-prices

Look up and compare Azure service pricing using the Azure Retail Prices API. Use this skill whenever the user asks about Azure costs, pricing, rates, or wants to compare prices across regions or services — even if they don't say "pricing" explicitly. Trigger for questions like "how much does a D2 v2 VM cost?"…

Code-and-Sorts/awesome-copilot-agents · 90 tokens

calculator

Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors.

Code-and-Sorts/awesome-copilot-agents · 50 tokens

academic-paper-drafting

End-to-end academic paper drafting for CHI, HBR, journals, and conferences with venue-specific templates, drafting workflows, and revision strategies.

fabioc-aloha/Alex_Skill_Mall · 34 tokens

research-first-development

Build knowledge bases that build software — research before code, teach before execute.

fabioc-aloha/Alex_Skill_Mall · 18 tokens

agent-governance

Patterns for adding safety, trust, and policy enforcement to AI agent systems -- control which tools agents can call, what content they process, and maintain accountability through audit trails.

fabioc-aloha/Alex_Skill_Mall · 39 tokens