You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agent/skills/mind-elixir-plaintext-format/SKILL.md
+36-26Lines changed: 36 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Guide for understanding and converting Mind Elixir plaintext format
5
5
6
6
# Mind Elixir Plaintext Format
7
7
8
-
This skill explains the Mind Elixir plaintext format specification and how to convert it to the Mind Elixir JSON data structure. The plaintext format is ideal for human editing, AI generation, and streaming scenarios.
8
+
This skill explains the Mind Elixir plaintext format specification and how to convert between it and the Mind Elixir JSON data structure. The plaintext format is ideal for human editing, AI generation, and streaming scenarios.
9
9
10
10
## 1. Format Overview
11
11
@@ -64,25 +64,23 @@ Create connections between nodes using the `>` prefix and arrow syntax:
64
64
- Node A [^id1]
65
65
- Node B [^id2]
66
66
- > [^id1] >-Forward Link-> [^id2]
67
-
- > [^id2] <-Backward Link-< [^id1]
68
67
```
69
68
70
69
**Formats:**
71
70
72
71
- Forward: `> [^sourceId] >-Label-> [^targetId]`
73
-
- Backward: `> [^sourceId] <-Label-< [^targetId]`
74
72
75
73
### 2.3 Node Styling
76
74
77
75
Apply inline styles using JSON-like syntax:
78
76
79
77
```text
80
78
- Root
81
-
- Styled Node {color: #e87a90}
82
-
- Another Node {color: #3298db, background: #ecf0f1}
79
+
- Styled Node {"color": "#e87a90"}
80
+
- Another Node {"color": "#3298db", "background": "#ecf0f1"}
83
81
```
84
82
85
-
**Format:**`{property: value, property2: value2}` at the end of the topic text.
83
+
**Format:**`{"property": "value", "property2": "value2"}` at the end of the topic text.
86
84
87
85
**Common Properties:**
88
86
@@ -120,13 +118,13 @@ Create summary nodes that visually group previous siblings:
120
118
```text
121
119
- Project Planning
122
120
- Phase 1: Research [^phase1]
123
-
- Market Analysis {color: #3298db}
124
-
- Competitor Study {color: #3298db}
121
+
- Market Analysis {"color": "#3298db"}
122
+
- Competitor Study {"color": "#3298db"}
125
123
- }:2 Research Summary
126
124
- Phase 2: Development [^phase2]
127
-
- Frontend {color: #2ecc71}
128
-
- Backend {color: #2ecc71}
129
-
- Testing {color: #f39c12}
125
+
- Frontend {"color": "#2ecc71"}
126
+
- Backend {"color": "#2ecc71"}
127
+
- Testing {"color": "#f39c12"}
130
128
- } Development Summary
131
129
- Phase 3: Launch [^phase3]
132
130
- Marketing
@@ -135,11 +133,11 @@ Create summary nodes that visually group previous siblings:
135
133
- > [^phase2] >-Leads to-> [^phase3]
136
134
```
137
135
138
-
## 3. Converting Plaintext to Mind Elixir Data
136
+
## 3. Conversion API
139
137
140
-
### 3.1 Using the Built-in Converter
138
+
### 3.1 Plaintext to Mind Elixir Data
141
139
142
-
Mind Elixir provides a built-in converter for plaintext format:
140
+
Mind Elixir provides a built-in converter for plaintext parsing:
Copy file name to clipboardExpand all lines: .agents/skills/mind-elixir-plaintext-format/SKILL.md
+36-26Lines changed: 36 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Guide for understanding and converting Mind Elixir plaintext format
5
5
6
6
# Mind Elixir Plaintext Format
7
7
8
-
This skill explains the Mind Elixir plaintext format specification and how to convert it to the Mind Elixir JSON data structure. The plaintext format is ideal for human editing, AI generation, and streaming scenarios.
8
+
This skill explains the Mind Elixir plaintext format specification and how to convert between it and the Mind Elixir JSON data structure. The plaintext format is ideal for human editing, AI generation, and streaming scenarios.
9
9
10
10
## 1. Format Overview
11
11
@@ -64,25 +64,23 @@ Create connections between nodes using the `>` prefix and arrow syntax:
64
64
- Node A [^id1]
65
65
- Node B [^id2]
66
66
- > [^id1] >-Forward Link-> [^id2]
67
-
- > [^id2] <-Backward Link-< [^id1]
68
67
```
69
68
70
69
**Formats:**
71
70
72
71
- Forward: `> [^sourceId] >-Label-> [^targetId]`
73
-
- Backward: `> [^sourceId] <-Label-< [^targetId]`
74
72
75
73
### 2.3 Node Styling
76
74
77
75
Apply inline styles using JSON-like syntax:
78
76
79
77
```text
80
78
- Root
81
-
- Styled Node {color: #e87a90}
82
-
- Another Node {color: #3298db, background: #ecf0f1}
79
+
- Styled Node {"color": "#e87a90"}
80
+
- Another Node {"color": "#3298db", "background": "#ecf0f1"}
83
81
```
84
82
85
-
**Format:**`{property: value, property2: value2}` at the end of the topic text.
83
+
**Format:**`{"property": "value", "property2": "value2"}` at the end of the topic text.
86
84
87
85
**Common Properties:**
88
86
@@ -120,13 +118,13 @@ Create summary nodes that visually group previous siblings:
120
118
```text
121
119
- Project Planning
122
120
- Phase 1: Research [^phase1]
123
-
- Market Analysis {color: #3298db}
124
-
- Competitor Study {color: #3298db}
121
+
- Market Analysis {"color": "#3298db"}
122
+
- Competitor Study {"color": "#3298db"}
125
123
- }:2 Research Summary
126
124
- Phase 2: Development [^phase2]
127
-
- Frontend {color: #2ecc71}
128
-
- Backend {color: #2ecc71}
129
-
- Testing {color: #f39c12}
125
+
- Frontend {"color": "#2ecc71"}
126
+
- Backend {"color": "#2ecc71"}
127
+
- Testing {"color": "#f39c12"}
130
128
- } Development Summary
131
129
- Phase 3: Launch [^phase3]
132
130
- Marketing
@@ -135,11 +133,11 @@ Create summary nodes that visually group previous siblings:
135
133
- > [^phase2] >-Leads to-> [^phase3]
136
134
```
137
135
138
-
## 3. Converting Plaintext to Mind Elixir Data
136
+
## 3. Conversion API
139
137
140
-
### 3.1 Using the Built-in Converter
138
+
### 3.1 Plaintext to Mind Elixir Data
141
139
142
-
Mind Elixir provides a built-in converter for plaintext format:
140
+
Mind Elixir provides a built-in converter for plaintext parsing:
0 commit comments