principles

Ray Dalio-inspired personal knowledge system. Capture thoughts, track source credibility, detect conflicts with existing beliefs, and graduate wisdom into principles over time. Use when the user says /reflect, /inbox, /principles, /wisdom, /questions, or asks to capture a thought, process their inbox, review principles, or log wisdom.

3,891 stars

Best use case

principles is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Ray Dalio-inspired personal knowledge system. Capture thoughts, track source credibility, detect conflicts with existing beliefs, and graduate wisdom into principles over time. Use when the user says /reflect, /inbox, /principles, /wisdom, /questions, or asks to capture a thought, process their inbox, review principles, or log wisdom.

Teams using principles should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/principles/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/andyhcwang/principles/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/principles/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How principles Compares

Feature / AgentprinciplesStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Ray Dalio-inspired personal knowledge system. Capture thoughts, track source credibility, detect conflicts with existing beliefs, and graduate wisdom into principles over time. Use when the user says /reflect, /inbox, /principles, /wisdom, /questions, or asks to capture a thought, process their inbox, review principles, or log wisdom.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Principles — Personal Knowledge System

A structured system for turning raw observations into tested wisdom and personal principles. Inspired by Ray Dalio's "Principles" methodology.

## Overview

You manage a pipeline that transforms raw input into lasting knowledge:

```
Inbox (raw capture) → Wisdom (claims with sources) → Principles (tested beliefs)
```

Everything lives in `personal/` under the user's workspace. Create the directory structure on first use if it doesn't exist.

## Directory Structure

```
personal/
├── _system.md          # These instructions (copy from SKILL.md on init)
├── inbox.md            # Raw thought capture
├── journal.md          # Daily reflections
├── wisdom/
│   └── collected.md    # Claims organized by domain
├── principles/
│   ├── _index.md       # Master list of all principles
│   ├── life.md         # Personal philosophy
│   ├── business.md     # Business principles
│   └── leadership.md   # Leadership principles
└── open-questions.md   # Genuine dilemmas
```

## Commands

### `/reflect` or `/reflect process`
Process the inbox. Parse each thought, check for conflicts, route to the right file.

### `/reflect inbox` or `/inbox`
Add a raw thought to `inbox.md`. User just dumps text — you clean it up later during processing.

### `/reflect wisdom`
Show collected wisdom, optionally filtered by domain.

### `/reflect principles`
Show current principles across all domains.

### `/reflect questions`
Show open questions and their status.

### `/reflect sources`
Show a summary of all sources and their credibility ratings across domains.

### `/reflect journal`
Add a journal entry for today with timestamp.

## Processing Inbox (`/reflect`)

This is the core workflow. When triggered:

1. **Read** `inbox.md`
2. **Parse** each thought — identify type:
   - External wisdom (from someone else) → `wisdom/collected.md`
   - Personal belief or stance → check against `principles/*.md`
   - Factual learning → `wisdom/collected.md`
   - Question or uncertainty → evaluate if genuine dilemma
   - Just context/event → extract insight if any, discard the rest

3. **Check for conflicts** against existing wisdom claims:
   - Same claim, new source → add as corroborating evidence
   - Conflicting claim in same domain → **STOP**. Present conflict. Ask user to resolve.

4. **Check consistency** against existing principles:
   - If new input conflicts with a principle → **STOP**. Present conflict. Ask user to resolve.

5. **If ANY conflict found** → STOP and ask user:
   - Show the conflict clearly
   - Offer options: update existing, keep existing, split claims, convert to open question
   - Do NOT silently file conflicting information

6. **Route content** based on user decisions
7. **Clean up** `inbox.md` after processing
8. **Update** `principles/_index.md` if new principles were added

## Content Formats

### Wisdom Claims (`wisdom/collected.md`)

Claims are organized by **domain**, not by source. Multiple sources can corroborate the same claim.

```markdown
## [Domain/Aspect]

### [Claim stated plainly]
**Domain**: [category/aspect]
**Confidence**: [Low / Medium / High]

**Sources**:
1. [Person/Book] - [proven/plausible/untested] in this domain - [brief context]

**Your experience**: [Untested / Confirmed / Contradicted]

**Added**: YYYY-MM-DD | **Last updated**: YYYY-MM-DD
```

**Source credibility is assessed PER DOMAIN:**
- A source can be `[proven]` in one domain and `[plausible]` in another
- Example: Alex Hormozi on business = `[proven]`. Alex Hormozi on health = `[plausible]`.
- Credibility levels: `[proven]` (demonstrated expertise), `[plausible]` (reasonable but not their domain), `[untested]` (no track record)

**Domain format:** `category/aspect` (e.g., `health/sleep`, `business/pricing`, `productivity/focus`)

### Principles (`principles/*.md`)

```markdown
## [Principle stated as a clear belief]

**Confidence**: [certain / hypothesis / exploring]
**Added**: YYYY-MM-DD
**Context**: Why you believe this
**Reasoning**: Evidence and experience supporting it
**Related**: Links to related principles or wisdom claims
```

### Open Questions (`open-questions.md`)

Only genuine dilemmas — not todo items or simple unknowns.

```markdown
## [Question]
**Status**: [exploring / gathering-evidence / leaning-toward-X]

**Goal**: What are you actually trying to achieve?
**Problem**: What's blocking it?
**Options**:
1. [Option A] - pros/cons
2. [Option B] - pros/cons

**What would resolve this**: Specific criteria or evidence needed
```

### Journal (`journal.md`)

Append-only daily entries:

```markdown
## YYYY-MM-DD

[Observations, reflections, what happened today]
```

## Graduation: Wisdom → Principles

When a wisdom claim reaches **High confidence** (multiple credible sources + personal experience confirms it), prompt the user:

> "This claim has strong evidence and you've confirmed it personally. Want to graduate it to a principle in [domain]?"

If yes, create the principle entry and cross-reference it.

## Assumption Surfacing

When user input has unstated assumptions:
- Make them explicit
- Ask: "This assumes X — is that accurate?"
- Don't proceed until confirmed

## Language & Tone

- Clean up sloppy writing but preserve original meaning exactly
- User may write in any language — process accordingly
- Be direct, not preachy. This is a tool, not a lecture.

## First-Time Setup

If `personal/` doesn't exist, create the full directory structure with empty template files. Tell the user:

> "Set up your principles system. Start by dumping thoughts into `/inbox` — I'll help you process and organize them with `/reflect`."

Related Skills

first-principles-decomposer

3891
from openclaw/skills

Break any problem down to fundamental truths, then rebuild solutions from atoms up. Use when user says "firstp", "first principles", "from scratch", "what are we assuming", "break this down", "atomic", "fundamental truth", "physics thinking", "Elon method", "bedrock", "ground up", "core problem", "strip away", or challenges assumptions about how things are done.

Firstprinciples thinking

3891
from openclaw/skills

Think from first principles instead of analogy. Break problems into fundamental truths, challenge assumptions, and rebuild better solutions from scratch.

---

3891
from openclaw/skills

name: article-factory-wechat

Content & Documentation

humanizer

3891
from openclaw/skills

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.

Content & Documentation

find-skills

3891
from openclaw/skills

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

General Utilities

tavily-search

3891
from openclaw/skills

Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.

Data & Research

baidu-search

3891
from openclaw/skills

Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.

Data & Research

agent-autonomy-kit

3891
from openclaw/skills

Stop waiting for prompts. Keep working.

Workflow & Productivity

Meeting Prep

3891
from openclaw/skills

Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.

Workflow & Productivity

self-improvement

3891
from openclaw/skills

Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.

Agent Intelligence & Learning

botlearn-healthcheck

3891
from openclaw/skills

botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.

DevOps & Infrastructure

linkedin-cli

3891
from openclaw/skills

A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.

Content & Documentation