worldview-synthesis

This skill should be used when someone wants to articulate, explore, or document their personal worldview, values, or philosophy. Triggers on "articulate my values", "figure out what I believe", "document my philosophy", "write a manifesto", "define my leadership philosophy", "explore my beliefs". Surfaces beliefs through systematic interrogation, identifies tensions, and generates narrative outputs.

242 stars

Best use case

worldview-synthesis is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. This skill should be used when someone wants to articulate, explore, or document their personal worldview, values, or philosophy. Triggers on "articulate my values", "figure out what I believe", "document my philosophy", "write a manifesto", "define my leadership philosophy", "explore my beliefs". Surfaces beliefs through systematic interrogation, identifies tensions, and generates narrative outputs.

This skill should be used when someone wants to articulate, explore, or document their personal worldview, values, or philosophy. Triggers on "articulate my values", "figure out what I believe", "document my philosophy", "write a manifesto", "define my leadership philosophy", "explore my beliefs". Surfaces beliefs through systematic interrogation, identifies tensions, and generates narrative outputs.

Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.

Practical example

Example input

Use the "worldview-synthesis" skill to help with this workflow task. Context: This skill should be used when someone wants to articulate, explore, or document their personal worldview, values, or philosophy. Triggers on "articulate my values", "figure out what I believe", "document my philosophy", "write a manifesto", "define my leadership philosophy", "explore my beliefs". Surfaces beliefs through systematic interrogation, identifies tensions, and generates narrative outputs.

Example output

A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.

When to use this skill

  • Use this skill when you want a reusable workflow rather than writing the same prompt again and again.

When not to use this skill

  • Do not use this when you only need a one-off answer and do not need a reusable workflow.
  • Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/worldview-synthesis/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/2389-research/worldview-synthesis/SKILL.md"

Manual Installation

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

How worldview-synthesis Compares

Feature / Agentworldview-synthesisStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

This skill should be used when someone wants to articulate, explore, or document their personal worldview, values, or philosophy. Triggers on "articulate my values", "figure out what I believe", "document my philosophy", "write a manifesto", "define my leadership philosophy", "explore my beliefs". Surfaces beliefs through systematic interrogation, identifies tensions, and generates narrative outputs.

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.

SKILL.md Source

# Worldview Synthesis

**Core principle:** A worldview isn't a list of opinions—it's a graph of beliefs with tensions. The goal is to surface what someone already believes, name the contradictions, and synthesize into something they can share.

## When to Use

- Someone says "I want to articulate my values"
- Someone says "help me figure out what I believe"
- Someone wants to document their philosophy
- Someone is preparing for leadership, writing a manifesto, or defining a company culture

## The Method

### Phase 1: Bootstrap Structure

Create project structure:

```
worldview/
├── data/
│   ├── schema.yaml      # Structure definitions
│   ├── ideas.yaml       # Belief nodes
│   ├── sources.yaml     # Influences (books, people, experiences)
│   └── tensions.yaml    # Productive paradoxes
├── narrative/
│   ├── mission.md       # One-liner + principles
│   ├── thesis.md        # One page
│   ├── synopsis.md      # Three sections
│   └── full-narrative.md
└── README.md
```

### Phase 2: Seed from Sources

Ask: "What books, articles, people, or experiences shaped how you see the world?"

For each source, extract 3-5 key ideas. This gives you initial nodes to build from.

### Phase 3: Interrogation Rounds

Run 4-6 rounds of questions. Each round covers 3-4 domains.

**Question Design Rules:**
- 2-4 options per question, each with label + description
- Use `multiSelect: true` when beliefs can coexist
- Leave room for custom "Other" answers
- Options should be genuinely different, not leading

**Domains to Cover:**

| Domain | Example Questions |
|--------|-------------------|
| **Mortality** | How does knowing you'll die shape how you live? |
| **Metaphysics** | What's your relationship with spirituality/religion? |
| **Relationships** | How do you think about romantic partnership? |
| **Parenting** | Philosophy on having/raising children? |
| **Body** | How do you relate to physical health and aging? |
| **Vices** | Relationship with alcohol, drugs, pleasure? |
| **Money** | Beyond spending—freedom, obligation, suspicion? |
| **Competition** | Collaboration vs ruthlessness? |
| **Trust** | Default open or earned? |
| **Learning** | Autodidact, mentorship, formal education? |
| **Nature** | Essential or nice to visit? |
| **Leadership** | Natural, reluctant, servant, example? |
| **Emotion** | Relationship with anger? |
| **Recognition** | Need fame? Already had it? |
| **Rest** | Protect sleep or run on fumes? |
| **Conflict** | Clear air fast or avoid? |
| **Work** | Philosophy on effort, failure, shipping? |
| **Ethics** | Hard lines vs softer truths? |
| **Society** | Diagnosis of what's broken? |
| **Future** | Optimism, pessimism, preparation? |

### Phase 4: Capture Tensions

When beliefs contradict, DON'T resolve—NAME:

```yaml
- id: collaboration-vs-ruthlessness
  ideas: [collaboration-over-competition, strategic-ruthlessness]
  description: "Default to positive-sum, but crush when necessary"
  resolution: |
    Different contexts call for different modes. Collaboration is default.
    Ruthlessness is available when needed. The key is knowing when to switch.
  status: embraced  # or: unresolved, resolved
```

Tensions are often the most interesting part of a worldview.

### Phase 5: Generate Narratives

From data, generate at ascending scales:

1. **Mission** (~100 words): The one-liner + 5-7 principles
2. **Thesis** (~300 words): One page that captures the core
3. **Synopsis** (~500 words): Three sections (Diagnosis, Orientation, Ethics)
4. **Full Narrative** (~2000 words): Complete essay with all major themes

### Phase 6: Iterate

A worldview is living. Add new beliefs, update old ones, regenerate narratives.

## Idea Node Schema

```yaml
- id: kebab-case-unique-id
  title: "Human Readable Title"
  domain: personal | ethics | society | technology | metaphysics
  claim: "The actual belief in one clear sentence"
  confidence: 0.0-1.0  # how sure?
  importance: 0.0-1.0  # how central to worldview?
  tags: [relevant, keywords]
  sources: [source-ids-if-any]
  supports: [ideas-this-reinforces]
  tensions: [ideas-this-contradicts]
  notes: "Context, caveats, origins"
```

## Tension Statuses

- **embraced**: Both sides are true. Live in the paradox.
- **resolved**: Found synthesis that dissolves the tension.
- **unresolved**: Genuinely don't know. Honest about uncertainty.

## Sample Interrogation Round

```
Round 3: Money, Competition, Trust

Q1: How do you think about money beyond 'spend it'?
- Tool for freedom: Money buys optionality and autonomy
- Obligation to share: If you have more, redistribute
- Wealth is suspect: Getting rich usually means exploitation
- Generational thinking: Think about what to leave behind
[multiSelect: true]

Q2: What's your orientation toward competition?
- Compete hard, play fair: Want to win but not by cheating
- Collaboration over competition: Prefer positive-sum games
- Against yourself mostly: Real competition is self-improvement
- Strategic ruthlessness: Sometimes you have to crush opponents
[multiSelect: true]

Q3: How do you approach trust with new people?
- Trust until betrayed: Default open, pull back if needed
- Trust is earned: Start cautious, let people prove themselves
- Read the situation: Neither default—assess individually
- Trust systems not people: Rely on structures over character
[multiSelect: false]
```

## Red Flags

- **"I don't have a worldview"** → Everyone does. Start with sources.
- **No tensions found** → Dig deeper. Everyone has contradictions.
- **All high confidence** → Push on uncertainty. What don't you know?
- **Only "should" beliefs** → Ask what they actually DO, not just believe.
- **Avoiding hard questions** → Death, money, conflict—go there.

## Output Quality Checklist

- [ ] Core thesis is one sentence
- [ ] Mission fits on a card
- [ ] Tensions are named, not hidden
- [ ] Hard lines are clear (non-negotiables)
- [ ] Softer truths acknowledged (where grace lives)
- [ ] Narrative voice sounds like the person
- [ ] Contradictions are embraced, not resolved away

## Example Mission Output

```markdown
# Mission Statement

**Put people first. Prepare for what's coming. Fight anyway.
Find the cracks. Leave no trace.**

---

We operate with systemic pessimism and local optimism.
We hold strong opinions weakly.
We embrace productive paradoxes.
We draw hard lines on human rights.
We extend grace for pain, never for harm.

People first. Always.
```

Related Skills

architecture-synthesis

242
from aiskillstore/marketplace

Generate a reference architecture specification from analyzed frameworks. Use when (1) designing a new agent framework based on prior art, (2) defining core primitives (Message, State, Tool types), (3) specifying interface protocols, (4) creating execution loop pseudocode, or (5) producing architecture diagrams and implementation roadmaps.

binary-re-synthesis

242
from aiskillstore/marketplace

Use when ready to document findings, generate a report, or summarize binary analysis results. Compiles analysis findings into structured reports - correlates facts from triage/static/dynamic phases, validates hypotheses, generates documentation with evidence chains. Keywords - "summarize findings", "generate report", "document analysis", "what did we find", "write up results", "export findings"

azure-quotas

242
from aiskillstore/marketplace

Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: "check quotas", "service limits", "current usage", "request quota increase", "quota exceeded", "validate capacity", "regional availability", "provisioning limits", "vCPU limit", "how many vCPUs available in my subscription".

DevOps & Infrastructure

raindrop-io

242
from aiskillstore/marketplace

Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io.

Data & Research

zlibrary-to-notebooklm

242
from aiskillstore/marketplace

自动从 Z-Library 下载书籍并上传到 Google NotebookLM。支持 PDF/EPUB 格式,自动转换,一键创建知识库。

discover-skills

242
from aiskillstore/marketplace

当你发现当前可用的技能都不够合适(或用户明确要求你寻找技能)时使用。本技能会基于任务目标和约束,给出一份精简的候选技能清单,帮助你选出最适配当前任务的技能。

web-performance-seo

242
from aiskillstore/marketplace

Fix PageSpeed Insights/Lighthouse accessibility "!" errors caused by contrast audit failures (CSS filters, OKLCH/OKLAB, low opacity, gradient text, image backgrounds). Use for accessibility-driven SEO/performance debugging and remediation.

project-to-obsidian

242
from aiskillstore/marketplace

将代码项目转换为 Obsidian 知识库。当用户提到 obsidian、项目文档、知识库、分析项目、转换项目 时激活。 【激活后必须执行】: 1. 先完整阅读本 SKILL.md 文件 2. 理解 AI 写入规则(默认到 00_Inbox/AI/、追加式、统一 Schema) 3. 执行 STEP 0: 使用 AskUserQuestion 询问用户确认 4. 用户确认后才开始 STEP 1 项目扫描 5. 严格按 STEP 0 → 1 → 2 → 3 → 4 顺序执行 【禁止行为】: - 禁止不读 SKILL.md 就开始分析项目 - 禁止跳过 STEP 0 用户确认 - 禁止直接在 30_Resources 创建(先到 00_Inbox/AI/) - 禁止自作主张决定输出位置

obsidian-helper

242
from aiskillstore/marketplace

Obsidian 智能笔记助手。当用户提到 obsidian、日记、笔记、知识库、capture、review 时激活。 【激活后必须执行】: 1. 先完整阅读本 SKILL.md 文件 2. 理解 AI 写入三条硬规矩(00_Inbox/AI/、追加式、白名单字段) 3. 按 STEP 0 → STEP 1 → ... 顺序执行 4. 不要跳过任何步骤,不要自作主张 【禁止行为】: - 禁止不读 SKILL.md 就开始工作 - 禁止跳过用户确认步骤 - 禁止在非 00_Inbox/AI/ 位置创建新笔记(除非用户明确指定)

internationalizing-websites

242
from aiskillstore/marketplace

Adds multi-language support to Next.js websites with proper SEO configuration including hreflang tags, localized sitemaps, and language-specific content. Use when adding new languages, setting up i18n, optimizing for international SEO, or when user mentions localization, translation, multi-language, or specific languages like Japanese, Korean, Chinese.

google-official-seo-guide

242
from aiskillstore/marketplace

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

github-release-assistant

242
from aiskillstore/marketplace

Generate bilingual GitHub release documentation (README.md + README.zh.md) from repo metadata and user input, and guide release prep with git add/commit/push. Use when the user asks to write or polish README files, create bilingual docs, prepare a GitHub release, or mentions release assistant/README generation.