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

Logic Constraint Mapping

ASecurity

Map the full constraint landscape for a decision, design, or plan — distinguishing hard limits from soft preferences, surfacing hidden constraints, and finding conflicts between them. Use before committing to an approach, when a plan keeps hitting unexpected walls, or when it's unclear what's actually negotiable. TRIGGERS: 'map the constraints', 'what are we actually working with', 'what's blocking this', 'what can we change', 'constraint analysis', any situation where the boundaries of what'...

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgoawstestingapidatabasesecurityperformance

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill logic-constraint-mapping --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Logic Constraint Mapping?

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

Security grade badge for Logic Constraint Mapping
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-logic-constraint-mapping/badge)](https://www.skillsdirectory.com/skills/rondoflow-logic-constraint-mapping)

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

Download with Pro
Files
SKILL.md
---
name: logic-constraint-mapping
description: "Map the full constraint landscape for a decision, design, or plan — distinguishing hard limits from soft preferences, surfacing hidden constraints, and finding conflicts between them. Use before committing to an approach, when a plan keeps hitting unexpected walls, or when it's unclear what's actually negotiable. TRIGGERS: 'map the constraints', 'what are we actually working with', 'what's blocking this', 'what can we change', 'constraint analysis', any situation where the boundaries of what's possible need to be understood before proceeding."
---

# Logic Constraint Mapping

Every decision happens inside a constraint space. Some limits are real and fixed. Others feel fixed but aren't. And some constraints conflict with each other in ways nobody has named yet.

The map makes that space visible — so you're solving the actual problem, not a version of it you've accidentally invented by treating assumptions as facts.

---

## Types of Constraints

**Hard constraints** — cannot be violated without abandoning the goal entirely. Physical laws, legal requirements, contractual obligations, irreversible dependencies.

**Soft constraints** — strong preferences or defaults that can be negotiated under sufficient pressure. Budget, timeline, team size, technology choices, organisational preferences.

**Hidden constraints** — not explicitly stated, but load-bearing. Discovered when violated. Often cultural, political, or architectural. The most dangerous kind.

**Conflicting constraints** — two constraints that cannot both be fully satisfied. Require a conscious trade-off decision rather than a solution.

---

## Your Process

**Step 1: Extract stated constraints**
What limits have been explicitly named? Separate:
- Stated as hard: "must", "cannot", "required", "non-negotiable"
- Stated as soft: "should", "prefer", "ideally", "target"
- Implied but unstated: present in the problem framing without being declared

**Framing check:** Confirm the specific constraint landscape before continuing. State what you've identified — the decision or plan being constrained and its primary goal — in one sentence, then use `AskUserQuestion`:
- **Question:** "I'm reading this as: [your one-sentence framing of the specific decision or plan and what it's trying to achieve]. Is that right?"
- **Header:** "Framing"
- **Options:**
  - **Yes — proceed** — framing is correct
  - **Adjust** — one element is off; user will correct it before you continue
  - **Reframe** — different situation than read; incorporate the correction before proceeding

**Step 2: Test each constraint's hardness**
For every constraint labelled hard, ask: *what would actually happen if we violated it?*
- Legal/regulatory: real hard — violation has defined consequences
- Budget/timeline: often softer than declared — the consequence is negotiation, not failure
- Technical: depends on reversibility — changing a database schema is hard; changing a variable name is not
- Organisational: often the softest of all, disguised as the hardest

Reclassify where the test shows the constraint is softer than claimed.

**Step 3: Surface hidden constraints**
Ask:
- What would break if we changed X? (reveals architectural constraints)
- Who has to approve this? (reveals political constraints)
- What can't we undo once we start? (reveals irreversibility constraints)
- What are we assuming about the environment that isn't guaranteed? (reveals dependency constraints)

**Step 4: Find constraint conflicts**
With the full map laid out, which constraints cannot all be satisfied simultaneously?
- Time vs quality vs scope (the classic three)
- Flexibility vs stability (don't break the API vs let it evolve)
- Performance vs cost
- Security vs usability

For each conflict: name what's being traded off and who decides.

**Step 5: Identify the degrees of freedom**
What's genuinely open? After removing hard and near-hard constraints, what remains movable? This is where the actual solution space lives.

---

## Human Check-in

Before proceeding, use the `AskUserQuestion` tool. State your interpretation of the situation in 1–2 sentences — what is being analyzed and what the core question is — then ask:

- **Question:** "My read: [your 1–2 sentence interpretation]. How do you want to proceed?"
- **Header:** "Scope"
- **Options:**
  - **Full analysis** — Complete all steps, reasoning shown throughout
  - **Key findings only** — Bottom-line output, skip step-by-step detail
  - **Hard constraints only** — Identify which limits are truly non-negotiable, skip soft and assumed
  - **Reframe** — The read is off; correct it and the analysis will follow the corrected framing

Proceed based on their selection. If the user reframes, incorporate the correction before running any analysis.

## Output Format

**Context:** [what decision or plan this constraint map is for]

**Constraint Inventory**

| Constraint | Type | Hardness | Source |
|---|---|---|---|
| [constraint] | Limit / Preference / Hidden | Hard / Soft / Unknown | [who imposed it, why] |

**Hardness Reassessments**
- [constraint stated as hard] → actually [softer] because [reason]

**Hidden Constraints Found**
- [constraint]: [what revealed it; what it blocks]

**Conflicts**
| Constraint A | Constraint B | Trade-off | Owner |
|---|---|---|---|
| [A] | [B] | [what gives if you prioritise A; what gives if you prioritise B] | [who decides] |

**Degrees of Freedom**
[What is genuinely negotiable; where the real solution space is]

---

## Notes

The value of this map is not finding solutions — it's establishing ground truth about what's actually fixed before committing to an approach. A constraint map produced before design prevents the common failure mode: a clever solution that satisfies stated requirements while violating an unstated one that everyone assumed was obvious.

---

## What's Next

After delivering this output, use `AskUserQuestion` to offer the next move:

- **Question:** "Constraints mapped. What's next?"
- **Header:** "Next"
- **Options:**
  - `/constraint-hardness-testing` — Test which mapped constraints are real vs assumed
  - `/constraint-workaround-mapping` — Find routes around the binding constraints
  - `/decision-option-mapping` — See what decision options remain given the constraints
  - **Done** — Wrap up and synthesise what we have so far

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

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

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →