llm-party-cli 0.7.1 → 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.
@@ -1,71 +1,51 @@
1
1
  ---
2
2
  name: obsidian-markdown
3
- description: Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
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
- Create and edit valid Obsidian Flavored Markdown. Obsidian extends standard Markdown with wikilinks, embeds, callouts, properties, comments, tags, and highlight syntax. Obsidian also supports standard Markdown, LaTeX math, and Mermaid diagrams.
8
+ Write normal Markdown plus the Obsidian features this project actually uses.
9
9
 
10
- ## Workflow: Creating an Obsidian Note
10
+ ## Core Rules
11
11
 
12
- 1. **Add frontmatter** with properties like `title`, `tags`, `aliases`, and `cssclasses` at the top of the file.
13
- 2. **Write content** using standard Markdown plus the Obsidian-specific syntax below.
14
- 3. **Use wikilinks** for vault notes and Markdown links for external URLs.
15
- 4. **Use embeds and callouts** where needed, then verify the note renders correctly in reading view.
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
- > When choosing between wikilinks and Markdown links: use `[[wikilinks]]` for notes within the vault (Obsidian tracks renames automatically) and `[text](url)` for external URLs only.
17
+ ## Frontmatter
18
18
 
19
- ## Internal Links (Wikilinks)
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
- Define a block ID by appending `^block-id` to a paragraph, or put it on a new line after a list or quote:
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
- ![[image.png|640x480]]
51
-
52
- ![[document.pdf]]
53
- ![[document.pdf#page=3]]
54
- ![[document.pdf#height=400]]
55
-
56
- ![[audio.mp3]]
57
- ![[video.mp4]]
58
-
59
- ![Alt text](https://example.com/image.png)
60
- ![Alt text|300](https://example.com/image.png)
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
- > Callout with a custom title.
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
- Property types CSV: `text,number,checkbox,date,datetime,list,link`
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
- ## Obsidian-Specific Formatting
61
+ ## Tags and Formatting
136
62
 
137
63
  ```markdown
138
- ==Highlighted text== Highlight syntax
64
+ #tag
65
+ #nested/tag
66
+ ==highlighted text==
139
67
  ```
140
68
 
141
69
  ## Also Supported
142
70
 
143
- - Standard Markdown for headings, lists, tables, quotes, code blocks, and links.
144
- - LaTeX math in inline `$...$` or block `$$...$$` form.
145
- - Mermaid diagrams in fenced `mermaid` code blocks.
71
+ - Standard Markdown
72
+ - LaTeX math
73
+ - Mermaid diagrams