← 返回
AI智能 中文

IM Framework

Reference, explain, and apply the Immanent Metaphysics (IM) framework by Forrest Landry. Uses a structured ontology of 767 entities as an index into the live...
Reference, explain, and apply the Immanent Metaphysics (IM) framework by Forrest Landry. Uses a structured ontology of 767 entities as an index into the live...
kapslap
AI智能 clawhub v1.5.0 2 版本 100000 Key: 无需
★ 0
Stars
📥 814
下载
💾 18
安装
2
版本
#latest

概述

Immanent Metaphysics Framework

Source: https://mflb.com/8192 — Forrest Landry's whitebook. This is the canonical text.

The ontology in references/graph.jsonl is an index into it. Always fetch the source URL and quote exactly.

Reference Files

All files are in references/ (relative to this skill directory):

FileContents
----------------
graph.jsonl767 entities — Concepts, Axioms, Theorems, Aphorisms, Implications + relations
whitebook-map.jsonl73-entry structural map of whitebook chapters/sections with URLs
schema.yamlType definitions and relation types
section-anchors.jsonAnchor-level URL map for fine-grained source links

Workflow

  1. Search the graph — find the relevant entity in references/graph.jsonl
  2. Get the URL — use the location field from the entity's properties
  3. Fetch the sourceweb_fetch(location_url) to get exact text
  4. Quote verbatim — cite with URL

Graph Query Examples

# Set path relative to skill dir (resolve from dirname of SKILL.md)
GRAPH="$(dirname $(realpath ~/Tillerman/Eitan/skills/im-framework/SKILL.md))/references/graph.jsonl"

# Search by concept name
grep -i '"name": "symmetry"' "$GRAPH"

# Search by keyword across names and definitions
python3 << 'EOF'
import json
GRAPH = "/Users/Jared/Tillerman/Eitan/skills/im-framework/references/graph.jsonl"
TERM = "symmetry"  # change this
for line in open(GRAPH):
    d = json.loads(line)
    if d.get('op') != 'put':
        continue
    e = d.get('entity', {})
    p = e.get('properties', {})
    name = p.get('name', p.get('word', p.get('text', '')))
    defn = p.get('definition', '')
    loc = p.get('location', '')
    if TERM.lower() in (name + defn).lower():
        print(f"{e['type']}: {name}")
        print(f"  URL: {loc}")
        print(f"  Def: {defn[:300]}")
        print()
EOF

# List all entity types and counts
python3 << 'EOF'
import json
from collections import Counter
GRAPH = "/Users/Jared/Tillerman/Eitan/skills/im-framework/references/graph.jsonl"
types = Counter()
for line in open(GRAPH):
    d = json.loads(line)
    if d.get('op') == 'put':
        types[d['entity']['type']] += 1
print(types)
EOF

# Search section anchors for a chapter
python3 << 'EOF'
import json
ANCHORS = "/Users/Jared/Tillerman/Eitan/skills/im-framework/references/section-anchors.json"
anchors = json.load(open(ANCHORS))
# anchors is a dict of {anchor_id: {title, url, ...}}
TERM = "ethics"
for k, v in anchors.items():
    if TERM.lower() in str(v).lower():
        print(k, "->", v.get('url', ''), "|", v.get('title', ''))
EOF

Quoting Rules (MANDATORY)

  • Always use exact quotes from the source at mflb.com. Never paraphrase when the original is available.
  • Every quote must include the direct URL from the entity's location field.
  • Quote format:

> "[exact text from mflb.com]"

> — An Immanent Metaphysics, [section], [URL]

  • If the exact wording isn't in the ontology: web_fetch the URL directly — get the real text.
  • Aphorisms: use the text field from graph.jsonl verbatim. Do not alter.
  • Definitions: use the definition field verbatim when citing what a term means.
  • Label synthesis clearly: if applying the framework to a new situation, say so — don't present inference as direct quote.

Ontology Contents (references/graph.jsonl)

767 entities across 5 types:

TypeCountDescription
--------------------------
Concept134Named ideas — modality, domain, definition, source URL
Axiom3Foundational axioms — statement, implications, source URL
Theorem11ICT, Symmetry Ethics, Continuity Ethics, Bell's/Godel mappings
Aphorism147From Effective Choice — exact text, themes, source URL
Implication4Cross-domain applications (physics, logic, ethics, consciousness)

Relations: implies, paired_with, contrasts_with, depends_on, has_modality, illuminates, defined_in

Chapter URLs

TopicURL
------------
Entry pointhttps://mflb.com/8192
Three Modalitieshttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch1.htm#1_modalities
Axiomshttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch1.htm#1_axioms
ICThttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch3.htm#1_ict
Symmetry / Continuityhttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch3.htm#1_symmetry
Ethicshttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch6.htm
Path of Right Actionhttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch6.htm#2_path
Basal Motivationshttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch6.htm#2_basal
Aphorisms of Effective Choicehttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch5.htm
Mindhttps://mflb.com/dvol/control/pcore/own_books/white_1/wb_web_2/zout/upmp_ch8.htm

Attribution

Always attribute to Forrest Landry's An Immanent Metaphysics. Distinguish:

  1. Direct citation — exact quote with source URL
  2. Close paraphrase — labeled as paraphrase with source URL
  3. Agent synthesis — labeled as your own application

Do not invent positions. Do not imply Forrest's endorsement of claims not grounded in the source text.

版本历史

共 2 个版本

  • v1.5.0 当前
    2026-05-03 03:51 安全 安全
  • v2.0.1
    2026-03-19 07:14 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

security-compliance

OpenClaw Power Ops

kapslap
运维OpenClaw实例:CLI命令、配置管理、通道/代理/模型配置、安全审计、故障排查及网关管理...
★ 1 📥 2,224
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 710 📥 243,620
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,058 📥 797,257