llm-party-cli 0.9.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -7
- package/dist/index.js +770 -330
- package/package.json +2 -3
- package/prompts/artifacts.md +49 -93
- package/prompts/base.md +80 -209
- package/prompts/obsidian.md +30 -102
package/prompts/obsidian.md
CHANGED
|
@@ -1,71 +1,51 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: obsidian-markdown
|
|
3
|
-
description: Create
|
|
3
|
+
description: Create valid Obsidian Markdown with frontmatter, wikilinks, embeds, callouts, and tags. Use when working with Obsidian notes, mind-map entries, or files that should render well inside an Obsidian vault.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Obsidian Flavored Markdown Skill
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Write normal Markdown plus the Obsidian features this project actually uses.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Core Rules
|
|
11
11
|
|
|
12
|
-
1.
|
|
13
|
-
2.
|
|
14
|
-
3.
|
|
15
|
-
4.
|
|
12
|
+
1. Use frontmatter when the note needs structured properties.
|
|
13
|
+
2. Use `[[wikilinks]]` for vault notes.
|
|
14
|
+
3. Use Markdown links only for external URLs.
|
|
15
|
+
4. Keep Obsidian notes readable as plain Markdown too.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## Frontmatter
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
```yaml
|
|
20
|
+
---
|
|
21
|
+
title: Note Title
|
|
22
|
+
tags:
|
|
23
|
+
- project
|
|
24
|
+
aliases:
|
|
25
|
+
- Alternate Title
|
|
26
|
+
---
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Wikilinks
|
|
20
30
|
|
|
21
31
|
```markdown
|
|
22
32
|
[[Note Name]]
|
|
23
33
|
[[Note Name|Display Text]]
|
|
24
34
|
[[Note Name#Heading]]
|
|
25
35
|
[[Note Name#^block-id]]
|
|
26
|
-
[[#Heading in same note]]
|
|
27
36
|
```
|
|
28
37
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
```markdown
|
|
32
|
-
This paragraph can be linked to. ^my-block-id
|
|
33
|
-
|
|
34
|
-
> A quote block
|
|
35
|
-
|
|
36
|
-
^quote-id
|
|
37
|
-
```
|
|
38
|
+
To link a block, add an ID such as `^block-id` after the paragraph or block.
|
|
38
39
|
|
|
39
40
|
## Embeds
|
|
40
41
|
|
|
41
|
-
Prefix any wikilink with `!` to embed its content inline:
|
|
42
|
-
|
|
43
42
|
```markdown
|
|
44
43
|
![[Note Name]]
|
|
45
44
|
![[Note Name#Heading]]
|
|
46
|
-
![[Note Name#^block-id]]
|
|
47
|
-
|
|
48
|
-
![[image.png]]
|
|
49
45
|
![[image.png|300]]
|
|
50
|
-
![[
|
|
51
|
-
|
|
52
|
-
![[document.pdf]]
|
|
53
|
-
![[document.pdf#page=3]]
|
|
54
|
-
![[document.pdf#height=400]]
|
|
55
|
-
|
|
56
|
-
![[audio.mp3]]
|
|
57
|
-
![[video.mp4]]
|
|
58
|
-
|
|
59
|
-

|
|
60
|
-

|
|
61
|
-
|
|
62
|
-
```query
|
|
63
|
-
tag:#project status:done
|
|
64
|
-
```
|
|
46
|
+
![[document.pdf#page=2]]
|
|
65
47
|
```
|
|
66
48
|
|
|
67
|
-
Block embed rule: add a block ID like `^block-id` after a paragraph, list, or quote, then embed it with `![[Note#^block-id]]`.
|
|
68
|
-
|
|
69
49
|
## Callouts
|
|
70
50
|
|
|
71
51
|
```markdown
|
|
@@ -73,73 +53,21 @@ Block embed rule: add a block ID like `^block-id` after a paragraph, list, or qu
|
|
|
73
53
|
> Basic callout.
|
|
74
54
|
|
|
75
55
|
> [!warning] Custom Title
|
|
76
|
-
>
|
|
77
|
-
|
|
78
|
-
> [!faq]- Closed by default
|
|
79
|
-
> Hidden until expanded.
|
|
80
|
-
|
|
81
|
-
> [!faq]+ Open by default
|
|
82
|
-
> Visible but collapsible.
|
|
83
|
-
|
|
84
|
-
> [!question] Outer callout
|
|
85
|
-
> > [!note] Inner callout
|
|
86
|
-
> > Nested content
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Callout types CSV: `note,abstract,info,todo,tip,success,question,warning,failure,danger,bug,example,quote`
|
|
90
|
-
|
|
91
|
-
## Properties (Frontmatter)
|
|
92
|
-
|
|
93
|
-
```yaml
|
|
94
|
-
---
|
|
95
|
-
title: My Note Title
|
|
96
|
-
date: 2024-01-15
|
|
97
|
-
tags:
|
|
98
|
-
- project
|
|
99
|
-
- important
|
|
100
|
-
aliases:
|
|
101
|
-
- My Note
|
|
102
|
-
cssclasses:
|
|
103
|
-
- custom-class
|
|
104
|
-
status: in-progress
|
|
105
|
-
rating: 4.5
|
|
106
|
-
completed: false
|
|
107
|
-
due: 2024-02-01T14:30:00
|
|
108
|
-
related: "[[Other Note]]"
|
|
109
|
-
---
|
|
56
|
+
> Important detail.
|
|
110
57
|
```
|
|
111
58
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
Default properties: `tags`, `aliases`, `cssclasses`
|
|
115
|
-
|
|
116
|
-
## Tags
|
|
117
|
-
|
|
118
|
-
```markdown
|
|
119
|
-
#tag Inline tag
|
|
120
|
-
#nested/tag Nested tag with hierarchy
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
Tags can be inline or frontmatter-based. Use letters, numbers after the first character, underscores, hyphens, and forward slashes.
|
|
124
|
-
|
|
125
|
-
## Comments
|
|
126
|
-
|
|
127
|
-
```markdown
|
|
128
|
-
This is visible %%but this is hidden%% text.
|
|
129
|
-
|
|
130
|
-
%%
|
|
131
|
-
This entire block is hidden in reading view.
|
|
132
|
-
%%
|
|
133
|
-
```
|
|
59
|
+
Common callouts: `note`, `info`, `tip`, `success`, `question`, `warning`, `danger`, `bug`.
|
|
134
60
|
|
|
135
|
-
##
|
|
61
|
+
## Tags and Formatting
|
|
136
62
|
|
|
137
63
|
```markdown
|
|
138
|
-
|
|
64
|
+
#tag
|
|
65
|
+
#nested/tag
|
|
66
|
+
==highlighted text==
|
|
139
67
|
```
|
|
140
68
|
|
|
141
69
|
## Also Supported
|
|
142
70
|
|
|
143
|
-
- Standard Markdown
|
|
144
|
-
- LaTeX math
|
|
145
|
-
- Mermaid diagrams
|
|
71
|
+
- Standard Markdown
|
|
72
|
+
- LaTeX math
|
|
73
|
+
- Mermaid diagrams
|