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

Learn Personal Decision Patterns

ASecurity

Self-learn your decision patterns to safely build its own decision-making over time.

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

Works with

cli

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill learn-personal-decision-patterns --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Learn Personal Decision Patterns?

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

Security grade badge for Learn Personal Decision Patterns
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-learn-personal-decision-patterns/badge)](https://www.skillsdirectory.com/skills/rondoflow-learn-personal-decision-patterns)

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

Download with Pro
Files
SKILL.md
---
name: learn-personal-decision-patterns
description: "Self-learn your decision patterns to safely build its own decision-making over time."
category: "Community"
author: community
version: "1.0.1"
icon: puzzle
---

## Architecture

Decision state lives in `~/decide/`. If that folder is missing or empty, run `setup.md`.

```text
~/decide/
├── memory.md        # Durable decision rules, approval boundaries, and confirmed defaults
├── decisions.md     # Major decisions with question, components, chosen option, and outcome
└── domains/         # Domain-specific decision components, overrides, and exceptions
```

## When to Use

Use when the agent faces a consequential choice that can change architecture, workflow, cost, publish behavior, vendor selection, or long-term project direction.

This skill is for branching decisions, not for generic preferences or execution lessons. It should stay compatible with `self-improving`: `self-improving` learns how to work better, while `decide` learns how to choose safely when the choice has lasting consequences.

## Quick Reference

| Topic | File |
|-------|------|
| Setup guide | `setup.md` |
| Memory template | `memory-template.md` |
| Migration guide | `migration.md` |
| Decision components | `components.md` |
| Confidence calibration | `confidence.md` |
| Exceptions and always-ask cases | `exceptions.md` |

Use those files as a decision safety stack: first know the structure, then calibrate confidence, then verify exceptions before reusing any past choice.

## Decision Workflow

1. Frame the decision as a real question, not as a vague feeling.
2. Gather the components that materially affect the answer.
3. Read `~/decide/memory.md`, then the smallest relevant file in `~/decide/domains/`, then check `~/decide/decisions.md` for a materially similar record.
4. Reuse a past choice only if the question, the key components, and the exception boundaries still line up.
5. If anything important is missing or changed, ask first and log the answer once the human decides.

## Core Rules

### 1. Default Conservative on Consequential Choices
- Frameworks, architectures, migrations, vendors, publish paths, spending, and irreversible branches should default to asking the human.
- Safer failure means asking one question too many, not silently picking the wrong branch.
- A recommendation is good; an unvalidated autonomous choice is not.

### 2. A Decision Requires Components, Not Vibes
- Every major decision should be framed as a question plus the components that materially affect the answer.
- Components can include product surface, client type, reversibility, budget, timeline, team size, project constraints, and long-term maintenance cost.
- If the needed components are missing, the decision is not ready for autonomy.

### 3. Reuse Only When the Context Materially Matches
- A stored rule is reusable only when the question and the key components match closely enough to make the same choice still rational.
- Matching one signal is not enough. "Same framework choice" is weak if client, surface, constraints, or risk changed.
- If there is any serious mismatch, ask first.
- Exceptions beat defaults. A confirmed default is still invalid when a domain override or high-stakes exception changes the branch.

### 4. Promote Patterns Only After Human Confirmation
- Repeatedly seeing the same decision in the same context makes a candidate rule, not an autonomous permission.
- After enough similar decisions, ask: "When this is true plus this plus this, should I default to X?"
- Only promote the pattern after explicit confirmation.

### 5. Log the Full Decision, Not Just the Outcome
- Store the question, components, chosen option, rationale, confidence, and outcome.
- A naked note like "use React Native" is too weak; it must say when and why.
- Good logs prevent false autonomy later.

### 6. Keep Workspace Routing Non-Destructive
- Use setup to add small AGENTS and SOUL snippets that force decision retrieval before major choices.
- Show the exact snippet and wait for explicit approval before writing any workspace file.
- The routing must make it hard to skip the decision log when a consequential branch appears.

### 7. Never Let Decision Memory Shadow Other Skills
- Use `self-improving` for execution quality, corrections, and reusable work habits.
- Use `escalate` for ask-vs-act boundaries across actions broadly.
- Use `decide` only for major branching choices where the structure of the context determines the answer.

## Common Traps

These failures usually come from pattern-matching too early or from collapsing a major decision into a shallow preference.

| Trap | Why It Fails | Better Move |
|------|--------------|-------------|
| Reusing a rule because the question sounds similar | Important components may have changed | Compare question plus key components before reusing |
| Treating one-off emergency choices as defaults | Stress decisions rarely generalize well | Log them, but keep them unconfirmed unless repeated |
| Autodeciding after reading only memory.md | Exceptions and domain overrides get missed | List domains, read the smallest relevant override, then check decisions |
| Turning execution preferences into decision rules | Blurs compatibility with `self-improving` | Keep major branching choices in `decide`, workflow lessons elsewhere |
| Applying a framework or vendor rule across clients blindly | Client and surface often change the optimal answer | Ask again when client, platform, scope, or constraints differ |

## Data Storage

Local state lives in `~/decide/`:

- durable decision rules, approval boundaries, and confirmed defaults in `~/decide/memory.md`
- major decision records in `~/decide/decisions.md`
- domain-specific component models, overrides, and exceptions in `~/decide/domains/`

The packaged guides `components.md`, `confidence.md`, and `exceptions.md` stay in the skill itself and act as references, not as the user's live memory.

## Security & Privacy

- This skill stores local decision notes in `~/decide/`.
- It may read workspace steering files such as the AGENTS file and SOUL file so that decision retrieval happens before major choices.
- It may suggest small non-destructive edits to those files during setup, but it must show the snippet and wait for explicit approval before any write.
- It should prefer asking to guessing whenever a decision can affect money, production, publishing, deletion, contracts, or long-term architecture.
- It never modifies its own `SKILL.md`.

## Related Skills
Install with `clawhub install <slug>` if user confirms:

- `escalate` - Control broad ask-vs-act boundaries around risky actions
- `self-improving` - Learn execution lessons without conflating them with decision rules
- `memory` - Keep broader long-term context and user continuity
- `proactivity` - Push the next step while respecting confirmed decision defaults

## Feedback

- If useful: `clawhub star decide`
- Stay updated: `clawhub sync`

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

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

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

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".

1066601 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', ...

686011 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.

651 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 →