Refactor analysis policies and update chain roles and templates
- Removed the audit section from analysis policies for simplification. - Updated chain roles to version 0.3.1, refining descriptions and edge types for clarity and consistency. - Enhanced chain templates by removing redundant node types and improving allowed node type definitions. - Revised graph schema documentation to clarify edge type definitions and improve overall structure.
This commit is contained in:
parent
b4d2424778
commit
327ff4c9c7
|
|
@ -13,10 +13,3 @@ profiles:
|
||||||
weak_chain_roles: info
|
weak_chain_roles: info
|
||||||
unmapped_edge_types: warn
|
unmapped_edge_types: warn
|
||||||
missing_slot_*: warn
|
missing_slot_*: warn
|
||||||
|
|
||||||
audit:
|
|
||||||
severities:
|
|
||||||
missing_link_constraints: warn
|
|
||||||
weak_chain_roles: info
|
|
||||||
unmapped_edge_types: error
|
|
||||||
missing_slot_*: warn
|
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,14 @@
|
||||||
version: 0.2.0
|
version: 0.3.1
|
||||||
context: >
|
|
||||||
Abstraction Layer für Chain-Analyse (Obsidian Plugin):
|
|
||||||
Kanonische Edge-Typen werden stabilen Rollen zugeordnet.
|
|
||||||
Rollen bleiben wenige und stabil; Edge-Typen (Canonicals) können wachsen.
|
|
||||||
Hinweis: Aliases werden im Mindnet-System / Edge Vocabulary auf Canonicals normalisiert.
|
|
||||||
|
|
||||||
roles:
|
|
||||||
|
|
||||||
causal:
|
|
||||||
description: "Direkte Ursache/Wirkung oder Lösung/Problem-Beziehung."
|
|
||||||
edge_types:
|
|
||||||
- caused_by
|
|
||||||
- resulted_in
|
|
||||||
- solvesversion: 0.3.0
|
|
||||||
context: >
|
context: >
|
||||||
Abstraction Layer für Chain-Analyse (Obsidian Plugin).
|
Abstraction Layer für Chain-Analyse (Obsidian Plugin).
|
||||||
Edge-Typen sind (nach Mindnet-Normalisierung) kanonisch.
|
Edge-Typen sind (nach Mindnet-Normalisierung) kanonisch.
|
||||||
Rollen dienen Template-Matching, Traversal/Scoring und Debug-Explainability.
|
Jede kanonische Edge wird genau einer Rolle zugeordnet (keine Doppelzuordnung),
|
||||||
Hinweis: Neue Rollen (temporal/epistemic/normative) beeinflussen Matching erst,
|
damit Role-Lookups deterministisch bleiben.
|
||||||
wenn Templates diese Rollen in allowed_edge_roles zulassen.
|
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
|
|
||||||
causal:
|
causal:
|
||||||
description: "Direkte Ursache/Wirkung bzw. Problem↔Lösung."
|
description: "Direkte Ursache/Wirkung oder Problem↔Lösung."
|
||||||
edge_types:
|
edge_types:
|
||||||
- caused_by
|
- caused_by
|
||||||
- resulted_in
|
- resulted_in
|
||||||
|
|
@ -49,20 +34,18 @@ roles:
|
||||||
- has_risk
|
- has_risk
|
||||||
|
|
||||||
provenance:
|
provenance:
|
||||||
description: "Herkunft/Abstammung/Quelle (lineage)."
|
description: "Herkunft/Abstammung/Grundlage (lineage)."
|
||||||
edge_types:
|
edge_types:
|
||||||
- derived_from
|
- derived_from
|
||||||
- source_of
|
- source_of
|
||||||
|
- based_on
|
||||||
|
- foundation_for
|
||||||
|
|
||||||
epistemic:
|
epistemic:
|
||||||
description: "Begründung/Evidenz/Argumentation (Warum glaube/behaupte ich das?)."
|
description: "Begründung/Evidenz/Argumentation (Warum glaube/behaupte ich das?)."
|
||||||
edge_types:
|
edge_types:
|
||||||
# bereits im Vocabulary vorhanden
|
|
||||||
- references
|
- references
|
||||||
- referenced_by
|
- referenced_by
|
||||||
- based_on
|
|
||||||
- foundation_for
|
|
||||||
# neu empfohlen (kanonisch)
|
|
||||||
- supports
|
- supports
|
||||||
- supported_by
|
- supported_by
|
||||||
- contradicts
|
- contradicts
|
||||||
|
|
@ -71,17 +54,15 @@ roles:
|
||||||
normative:
|
normative:
|
||||||
description: "Werte/Prinzipien/Normen: Ausrichtung, Konflikt, Einhaltung, Verletzung."
|
description: "Werte/Prinzipien/Normen: Ausrichtung, Konflikt, Einhaltung, Verletzung."
|
||||||
edge_types:
|
edge_types:
|
||||||
# neu empfohlen (kanonisch)
|
|
||||||
- upholds
|
- upholds
|
||||||
- upheld_by
|
- upheld_by
|
||||||
- violates
|
- violates
|
||||||
- violated_by
|
- violated_by
|
||||||
# symmetrisch
|
|
||||||
- aligned_with
|
- aligned_with
|
||||||
- conflicts_with
|
- conflicts_with
|
||||||
|
|
||||||
structural:
|
structural:
|
||||||
description: "Struktur/Komposition/Tools/Assoziation/Kompetenz (nicht per se kausal)."
|
description: "Struktur/Komposition/Werkzeuge/Assoziation/Kompetenz (nicht per se kausal)."
|
||||||
edge_types:
|
edge_types:
|
||||||
- part_of
|
- part_of
|
||||||
- consists_of
|
- consists_of
|
||||||
|
|
@ -92,62 +73,12 @@ roles:
|
||||||
- implemented_in
|
- implemented_in
|
||||||
- implements
|
- implements
|
||||||
- experienced_in
|
- experienced_in
|
||||||
- expert_for
|
|
||||||
- mastered_by
|
- mastered_by
|
||||||
|
|
||||||
temporal:
|
|
||||||
description: "Zeitliche Ordnung/Sequenz (keine Kausalität)."
|
|
||||||
edge_types:
|
|
||||||
- followed_by
|
|
||||||
- preceeded_by
|
|
||||||
|
|
||||||
- solved_by
|
|
||||||
|
|
||||||
enables_constraints:
|
|
||||||
description: "Ermöglicht, begrenzt oder ist Voraussetzung / Blockade."
|
|
||||||
edge_types:
|
|
||||||
- depends_on
|
|
||||||
- required_by
|
|
||||||
- blocks
|
|
||||||
- blocked_by
|
|
||||||
|
|
||||||
influences:
|
|
||||||
description: "Beeinflusst/steuert ohne harte Kausalität (inkl. Risiko-Signal)."
|
|
||||||
edge_types:
|
|
||||||
- impacts
|
|
||||||
- impacted_by
|
|
||||||
- guides
|
|
||||||
- guided_by
|
|
||||||
- risk_of
|
|
||||||
- has_risk
|
|
||||||
|
|
||||||
provenance:
|
|
||||||
description: "Herkunft/Quelle/Evidenz/Referenzen (für Rückwärtsverstehen & Begründungsketten)."
|
|
||||||
edge_types:
|
|
||||||
- derived_from
|
|
||||||
- source_of
|
|
||||||
- based_on
|
|
||||||
- foundation_for
|
|
||||||
- references
|
|
||||||
- referenced_by
|
|
||||||
|
|
||||||
structural:
|
|
||||||
description: "Struktur/Komposition/Tools/Assoziation/Kompetenz (nicht direkt kausal, aber navigationsrelevant)."
|
|
||||||
edge_types:
|
|
||||||
- part_of
|
|
||||||
- consists_of
|
|
||||||
- uses
|
|
||||||
- used_by
|
|
||||||
- related_to
|
|
||||||
- similar_to
|
|
||||||
- implemented_in
|
|
||||||
- implements
|
|
||||||
- experienced_in
|
|
||||||
- expert_for
|
- expert_for
|
||||||
- mastered_by
|
- has_expert
|
||||||
|
|
||||||
temporal:
|
temporal:
|
||||||
description: "Sequenz / zeitliche Ordnung (keine Kausalität)."
|
description: "Sequenz / zeitliche Ordnung (keine Kausalität)."
|
||||||
edge_types:
|
edge_types:
|
||||||
- followed_by
|
- followed_by
|
||||||
- preceeded_by
|
- preceded_by
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ templates:
|
||||||
- id: driver
|
- id: driver
|
||||||
allowed_node_types: [value, principle, motivation, need, goal]
|
allowed_node_types: [value, principle, motivation, need, goal]
|
||||||
- id: constraint
|
- id: constraint
|
||||||
allowed_node_types: [risk, issue, obstacle, state, boundary]
|
allowed_node_types: [risk, obstacle, state, boundary]
|
||||||
- id: decision
|
- id: decision
|
||||||
allowed_node_types: [decision, task]
|
allowed_node_types: [decision, task]
|
||||||
- id: outcome
|
- id: outcome
|
||||||
|
|
@ -116,7 +116,7 @@ templates:
|
||||||
description: "Begrenzung/Problem → Anpassung/Regulation → Stabilisierung (Prinzip/Wert/Habit/Projekt)."
|
description: "Begrenzung/Problem → Anpassung/Regulation → Stabilisierung (Prinzip/Wert/Habit/Projekt)."
|
||||||
slots:
|
slots:
|
||||||
- id: constraint
|
- id: constraint
|
||||||
allowed_node_types: [risk, issue, obstacle, state, boundary]
|
allowed_node_types: [risk, obstacle, state, boundary]
|
||||||
- id: adaptation
|
- id: adaptation
|
||||||
allowed_node_types: [skill, trait, habit, boundary, insight, principle]
|
allowed_node_types: [skill, trait, habit, boundary, insight, principle]
|
||||||
- id: stabilization
|
- id: stabilization
|
||||||
|
|
@ -158,7 +158,7 @@ templates:
|
||||||
- id: state
|
- id: state
|
||||||
allowed_node_types: [state]
|
allowed_node_types: [state]
|
||||||
- id: trigger
|
- id: trigger
|
||||||
allowed_node_types: [experience, event, issue, obstacle, risk]
|
allowed_node_types: [experience, event, obstacle, risk]
|
||||||
- id: response
|
- id: response
|
||||||
allowed_node_types: [habit, decision, task]
|
allowed_node_types: [habit, decision, task]
|
||||||
- id: next_state_or_outcome
|
- id: next_state_or_outcome
|
||||||
|
|
|
||||||
|
|
@ -4,179 +4,291 @@ title: Graph Topology & Preferences (Atomic)
|
||||||
type: reference
|
type: reference
|
||||||
status: system
|
status: system
|
||||||
system_role: config
|
system_role: config
|
||||||
context: "Explizites Regelwerk für bidirektionale Notiz-Verbindungen. Enthält migrierte edge_defaults aus types.yaml. WP-24c Edition."
|
context: "Explizites Regelwerk für bidirektionale Notiz-Verbindungen. Definiert pro Source-Type typische und verbotene Edge-Typen (Canonical). Referenzen: types.yaml (gültige Note-Types) + edge_vocabulary.md (gültige Canonical Edge-Types & Inversen)."
|
||||||
---
|
---
|
||||||
|
|
||||||
# Graph Schema (Topologie & Symmetrie)
|
# Graph Schema (Topologie & Präferenzen)
|
||||||
|
|
||||||
**Logik:** Jede Sektion definiert exakt einen Quell-Notiztyp. Typical-Kanten werden in Obsidian priorisiert und im Backend als Standard-Beziehungen behandelt.
|
**Logik:** Jede Sektion definiert exakt einen **Quell-Notiztyp** (Source).
|
||||||
|
Für jeden Source werden pro **Target-Notiztyp** die bevorzugten (**Typical**) und unerwünschten (**Prohibited**) **Canonical Edge-Types** festgelegt.
|
||||||
|
|
||||||
|
**Ziele:**
|
||||||
|
- konsistente Kantenwahl beim Schreiben (nicht „Nähe“, sondern „Beziehungstyp“)
|
||||||
|
- bessere Analyse-/Traversal-Signale (Roles/Policies bauen darauf auf)
|
||||||
|
- eindeutige Canonicals (Aliases werden im Mindnet-System normalisiert)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Identität & Kompetenz
|
## 1) Identität & Kompetenz
|
||||||
|
|
||||||
## Source: `person`
|
## Source: `person`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
|
| `profile` | `consists_of` | `caused_by`, `solves` |
|
||||||
|
| `trait` | `consists_of` | `resulted_in` |
|
||||||
| `skill` | `experienced_in`, `expert_for` | `caused_by`, `solves` |
|
| `skill` | `experienced_in`, `expert_for` | `caused_by`, `solves` |
|
||||||
| `role` | `part_of` | `blocks` |
|
| `experience` | `related_to`, `references` | `caused_by` |
|
||||||
| `trait` | `part_of` | `resulted_in` |
|
| `any` | `related_to`, `references` | - |
|
||||||
| `any` | `related_to` | - |
|
|
||||||
|
|
||||||
## Source: `skill`
|
## Source: `profile`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `person` | `mastered_by` | `consists_of` |
|
| `person` | `part_of` | `caused_by` |
|
||||||
| `task` | `used_by` | `foundation_for` |
|
| `value` | `guided_by`, `based_on` | `solves` |
|
||||||
| `any` | `references`, `related_to` | - |
|
| `principle` | `guided_by`, `based_on` | `solves` |
|
||||||
|
| `belief` | `guided_by`, `based_on` | `solves` |
|
||||||
## Source: `role`
|
| `any` | `related_to`, `references` | - |
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `person` | `consists_of` | `caused_by` |
|
|
||||||
| `project` | `guides` | `solves` |
|
|
||||||
|
|
||||||
## Source: `trait`
|
## Source: `trait`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `any` | `related_to` | - |
|
| `person` | `part_of` | `resulted_in` |
|
||||||
|
| `experience` | `impacted_by`, `references` | `solves` |
|
||||||
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
||||||
|
## Source: `skill`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `person` | `mastered_by`, `has_expert` | `consists_of` |
|
||||||
|
| `task` | `used_by` | `foundation_for` |
|
||||||
|
| `project` | `used_by` | `caused_by` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 2. Planung & Umsetzung (Action Stream)
|
## 2) Projekte, Aufgaben, Ziele
|
||||||
|
|
||||||
## Source: `project`
|
## Source: `project`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `task` | `consists_of` | `experienced_in` |
|
| `task` | `consists_of`, `depends_on` | `experienced_in` |
|
||||||
| `milestone` | `consists_of`, `followed_by` | `derived_from` |
|
| `goal` | `guided_by`, `depends_on` | `similar_to` |
|
||||||
| `goal` | `depends_on` | `similar_to` |
|
| `risk` | `has_risk`, `impacted_by` | `part_of` |
|
||||||
| `risk` | `impacted_by` | `part_of` |
|
| `decision` | `derived_from`, `based_on` | `mastered_by` |
|
||||||
| `any` | `references`, `depends_on` | - |
|
| `concept` | `based_on`, `references` | `followed_by` |
|
||||||
|
| `any` | `references`, `depends_on`, `related_to` | - |
|
||||||
|
|
||||||
## Source: `task`
|
## Source: `task`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `project` | `part_of` | `expert_for` |
|
| `project` | `part_of` | `expert_for` |
|
||||||
| `task` | `followed_by`, `depends_on`, `preceeded_by` | `consists_of` |
|
| `task` | `followed_by`, `preceded_by`, `depends_on` | `consists_of` |
|
||||||
| `milestone` | `followed_by`, `required_by` | `caused_by` |
|
| `goal` | `required_by`, `foundation_for` | `similar_to` |
|
||||||
| `skill` | `uses` | `mastered_by` |
|
| `skill` | `uses` | `mastered_by` |
|
||||||
| `any` | `depends_on`, `part_of` | - |
|
| `obstacle` | `blocked_by` | `consists_of` |
|
||||||
|
| `any` | `depends_on`, `part_of`, `references` | - |
|
||||||
## Source: `milestone`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `project` | `part_of` | `solves` |
|
|
||||||
| `task` | `preceeded_by`, `depends_on` | `expert_for` |
|
|
||||||
|
|
||||||
## Source: `goal`
|
## Source: `goal`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `any` | `depends_on`, `related_to` | - |
|
| `project` | `guides` | `solves` |
|
||||||
|
| `task` | `depends_on` | `similar_to` |
|
||||||
|
| `value` | `aligned_with`, `guided_by` | `violates` |
|
||||||
|
| `principle` | `aligned_with`, `guided_by` | `violates` |
|
||||||
|
| `any` | `depends_on`, `related_to`, `references` | - |
|
||||||
|
|
||||||
## Source: `habit`
|
## Source: `habit`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `any` | `related_to`, `caused_by` | - |
|
| `task` | `foundation_for`, `depends_on` | `followed_by` |
|
||||||
|
| `goal` | `foundation_for` | `similar_to` |
|
||||||
|
| `value` | `guided_by`, `upholds` | `violates` |
|
||||||
|
| `principle` | `guided_by`, `upholds` | `violates` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 3. Erfahrung & Erkenntnis (History Stream)
|
## 3) Ereignisse, Erlebnisse, Journal
|
||||||
|
|
||||||
|
## Source: `event`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `experience` | `resulted_in` | `solves` |
|
||||||
|
| `person` | `impacts`, `related_to` | `consists_of` |
|
||||||
|
| `state` | `resulted_in` | `solves` |
|
||||||
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
||||||
## Source: `experience`
|
## Source: `experience`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `insight` | `resulted_in` | `depends_on` |
|
| `event` | `caused_by` | `consists_of` |
|
||||||
| `event` | `derived_from` | `solves` |
|
| `insight` | `resulted_in` | `solves` |
|
||||||
| `value` | `based_on` | `consists_of` |
|
| `trait` | `impacts` | `consists_of` |
|
||||||
| `person` | `caused_by` | `followed_by` |
|
| `belief` | `impacts` | `consists_of` |
|
||||||
| `any` | `derived_from`, `references` | - |
|
| `state` | `resulted_in`, `impacts` | `solves` |
|
||||||
|
| `person` | `related_to`, `references` | `consists_of` |
|
||||||
## Source: `insight`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `experience` | `caused_by` | `uses` |
|
|
||||||
| `principle` | `resulted_in` | `consists_of` |
|
|
||||||
| `concept` | `based_on` | `followed_by` |
|
|
||||||
| `any` | `references`, `based_on` | - |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 4. Logik & Impact
|
|
||||||
|
|
||||||
## Source: `decision`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `issue` | `solves` | `part_of` |
|
|
||||||
| `obstacle` | `solves` | `part_of` |
|
|
||||||
| `risk` | `impacts`, `solves` | `experienced_in` |
|
|
||||||
| `project` | `resulted_in`, `foundation_for` | `mastered_by` |
|
|
||||||
| `any` | `caused_by`, `references` | - |
|
|
||||||
|
|
||||||
## Source: `issue`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `decision` | `solved_by`, `caused_by` | `consists_of` |
|
|
||||||
| `project` | `blocks` | `based_on` |
|
|
||||||
| `task` | `blocks` | `based_on` |
|
|
||||||
|
|
||||||
## Source: `obstacle`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `decision` | `solved_by`, `caused_by` | `consists_of` |
|
|
||||||
| `project` | `blocks` | `based_on` |
|
|
||||||
| `task` | `blocks` | `based_on` |
|
|
||||||
| `any` | `blocks`, `related_to` | - |
|
|
||||||
|
|
||||||
## Source: `risk`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `related_to`, `blocks` | - |
|
|
||||||
|
|
||||||
## Source: `motivation`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `guides`, `references` | - |
|
|
||||||
|
|
||||||
## Source: `bias`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `impacts`, `related_to` | - |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 5. Wissen & Basis
|
|
||||||
|
|
||||||
## Source: `concept`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `references`, `related_to` | - |
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
## Source: `journal`
|
## Source: `journal`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
|
| `experience` | `source_of`, `references` | `solves` |
|
||||||
|
| `event` | `references` | `caused_by` |
|
||||||
|
| `state` | `references` | `caused_by` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 4) Logik, Entscheidungen, Hindernisse, Risiken, Zustände
|
||||||
|
|
||||||
|
## Source: `decision`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `obstacle` | `solves` | `part_of` |
|
||||||
|
| `risk` | `impacts`, `solves` | `experienced_in` |
|
||||||
|
| `project` | `resulted_in`, `foundation_for` | `mastered_by` |
|
||||||
|
| `habit` | `resulted_in`, `guides` | `mastered_by` |
|
||||||
|
| `insight` | `caused_by`, `based_on` | `consists_of` |
|
||||||
|
| `value` | `upholds`, `violates`, `aligned_with`, `conflicts_with` | `part_of` |
|
||||||
|
| `principle` | `upholds`, `violates`, `aligned_with`, `conflicts_with` | `part_of` |
|
||||||
|
| `any` | `caused_by`, `based_on`, `references` | - |
|
||||||
|
|
||||||
|
## Source: `obstacle`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `task` | `blocks` | `consists_of` |
|
||||||
|
| `project` | `blocks` | `consists_of` |
|
||||||
|
| `decision` | `solved_by` | `consists_of` |
|
||||||
|
| `risk` | `impacts` | `part_of` |
|
||||||
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
||||||
|
## Source: `risk`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `project` | `risk_of` | `consists_of` |
|
||||||
|
| `decision` | `impacts` | `consists_of` |
|
||||||
|
| `goal` | `risk_of`, `impacts` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `state`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `experience` | `caused_by`, `impacted_by` | `solves` |
|
||||||
|
| `decision` | `impacts` | `consists_of` |
|
||||||
|
| `habit` | `impacts` | `consists_of` |
|
||||||
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 5) Werte, Prinzipien, Überzeugungen, Grenzen, Bedürfnisse, Motivation, Bias
|
||||||
|
|
||||||
|
## Source: `value`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `principle` | `foundation_for` | `violates` |
|
||||||
|
| `decision` | `guides`, `supports`, `contradicts` | `part_of` |
|
||||||
|
| `habit` | `guides` | `violates` |
|
||||||
|
| `profile` | `guides` | `violates` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `principle`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `value` | `based_on` | `violates` |
|
||||||
|
| `decision` | `guides`, `supports`, `contradicts` | `part_of` |
|
||||||
|
| `boundary` | `foundation_for`, `guides` | `violates` |
|
||||||
|
| `habit` | `guides` | `violates` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `belief`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `insight` | `supports`, `contradicts` | `consists_of` |
|
||||||
|
| `decision` | `guides`, `supports`, `contradicts` | `consists_of` |
|
||||||
|
| `value` | `aligned_with`, `conflicts_with` | `consists_of` |
|
||||||
|
| `principle` | `aligned_with`, `conflicts_with` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `boundary`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `principle` | `based_on` | `violates` |
|
||||||
|
| `decision` | `blocks`, `guides` | `consists_of` |
|
||||||
|
| `task` | `blocks` | `consists_of` |
|
||||||
|
| `project` | `blocks` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `need`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `motivation` | `resulted_in` | `consists_of` |
|
||||||
|
| `decision` | `impacts` | `consists_of` |
|
||||||
|
| `habit` | `impacts` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `motivation`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `need` | `caused_by` | `consists_of` |
|
||||||
|
| `decision` | `guides`, `impacts` | `consists_of` |
|
||||||
|
| `habit` | `guides`, `impacts` | `consists_of` |
|
||||||
|
| `goal` | `guides` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `bias`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `decision` | `impacts` | `consists_of` |
|
||||||
|
| `belief` | `contradicts`, `supports` | `consists_of` |
|
||||||
|
| `any` | `impacts`, `related_to`, `references` | - |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 6) Wissen, Ideen, Quellen, Glossar
|
||||||
|
|
||||||
|
## Source: `concept`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `source` | `derived_from`, `references` | `followed_by` |
|
||||||
|
| `idea` | `foundation_for`, `supports` | `followed_by` |
|
||||||
|
| `glossary` | `part_of` | `caused_by` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `idea`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `concept` | `based_on`, `references` | `followed_by` |
|
||||||
|
| `project` | `foundation_for`, `resulted_in` | `mastered_by` |
|
||||||
|
| `decision` | `foundation_for`, `supports` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
## Source: `source`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `concept` | `source_of`, `references` | `caused_by` |
|
||||||
|
| `idea` | `source_of`, `references` | `caused_by` |
|
||||||
|
| `insight` | `source_of`, `references` | `caused_by` |
|
||||||
| `any` | `references`, `related_to` | - |
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
## Source: `glossary`
|
## Source: `glossary`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `any` | `related_to` | - |
|
| `concept` | `consists_of` | `caused_by` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
## Source: `event`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `related_to` | - |
|
|
||||||
|
|
||||||
## Source: `idea`
|
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
|
||||||
| :--- | :--- | :--- |
|
|
||||||
| `any` | `resulted_in`, `references` | - |
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 6. Globaler Fallback
|
## 7) Insight (als Brücke zwischen Erfahrung und Entscheidung)
|
||||||
|
|
||||||
|
## Source: `insight`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `experience` | `caused_by`, `references` | `consists_of` |
|
||||||
|
| `belief` | `resulted_in`, `supports`, `contradicts` | `consists_of` |
|
||||||
|
| `decision` | `foundation_for`, `guides` | `consists_of` |
|
||||||
|
| `habit` | `guides`, `foundation_for` | `consists_of` |
|
||||||
|
| `any` | `references`, `related_to` | - |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 8) Default / Global Fallback
|
||||||
|
|
||||||
|
## Source: `default`
|
||||||
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
||||||
## Source: `any`
|
## Source: `any`
|
||||||
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
| Target-Note-type | Typical Edge-Types | Prohibited Edge-Types |
|
||||||
| :--- | :--- | :--- |
|
| :--- | :--- | :--- |
|
||||||
| `any` | `related_to`, `references` | - |
|
| `any` | `related_to`, `references` | - |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user