jorgex-stack 1.1.1 → 1.2.0
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 +20 -3
- package/dist/cli.js +119 -85
- package/package.json +1 -1
- package/stack/skills/deploy-to-vercel/SKILL.md +14 -8
- package/stack/skills/find-skills/SKILL.md +37 -113
- package/stack/skills/mcp-builder/SKILL.md +5 -2
- package/stack/skills/mcp-builder/reference/evaluation.md +9 -16
- package/stack/skills/mcp-builder/reference/node_mcp_server.md +9 -6
- package/stack/skills/mcp-builder/scripts/requirements.txt +2 -2
- package/stack/skills/playwright-cli/references/test-generation.md +4 -5
- package/stack/skills/react-doctor/SKILL.md +12 -1
- package/upstreams.json +22 -21
- package/stack/skills/obsidian-cli/SKILL.md +0 -106
- package/stack/skills/obsidian-markdown/SKILL.md +0 -196
- package/stack/skills/obsidian-markdown/references/CALLOUTS.md +0 -58
- package/stack/skills/obsidian-markdown/references/EMBEDS.md +0 -63
- package/stack/skills/obsidian-markdown/references/PROPERTIES.md +0 -61
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
# Properties (Frontmatter) Reference
|
|
2
|
-
|
|
3
|
-
Properties use YAML frontmatter at the start of a note:
|
|
4
|
-
|
|
5
|
-
```yaml
|
|
6
|
-
---
|
|
7
|
-
title: My Note Title
|
|
8
|
-
date: 2024-01-15
|
|
9
|
-
tags:
|
|
10
|
-
- project
|
|
11
|
-
- important
|
|
12
|
-
aliases:
|
|
13
|
-
- My Note
|
|
14
|
-
- Alternative Name
|
|
15
|
-
cssclasses:
|
|
16
|
-
- custom-class
|
|
17
|
-
status: in-progress
|
|
18
|
-
rating: 4.5
|
|
19
|
-
completed: false
|
|
20
|
-
due: 2024-02-01T14:30:00
|
|
21
|
-
---
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Property Types
|
|
25
|
-
|
|
26
|
-
| Type | Example |
|
|
27
|
-
|------|---------|
|
|
28
|
-
| Text | `title: My Title` |
|
|
29
|
-
| Number | `rating: 4.5` |
|
|
30
|
-
| Checkbox | `completed: true` |
|
|
31
|
-
| Date | `date: 2024-01-15` |
|
|
32
|
-
| Date & Time | `due: 2024-01-15T14:30:00` |
|
|
33
|
-
| List | `tags: [one, two]` or YAML list |
|
|
34
|
-
| Links | `related: "[[Other Note]]"` |
|
|
35
|
-
|
|
36
|
-
## Default Properties
|
|
37
|
-
|
|
38
|
-
- `tags` - Note tags (searchable, shown in graph view)
|
|
39
|
-
- `aliases` - Alternative names for the note (used in link suggestions)
|
|
40
|
-
- `cssclasses` - CSS classes applied to the note in reading/editing view
|
|
41
|
-
|
|
42
|
-
## Tags
|
|
43
|
-
|
|
44
|
-
```markdown
|
|
45
|
-
#tag
|
|
46
|
-
#nested/tag
|
|
47
|
-
#tag-with-dashes
|
|
48
|
-
#tag_with_underscores
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
Tags can contain: letters (any language), numbers (not first character), underscores `_`, hyphens `-`, forward slashes `/` (for nesting).
|
|
52
|
-
|
|
53
|
-
In frontmatter:
|
|
54
|
-
|
|
55
|
-
```yaml
|
|
56
|
-
---
|
|
57
|
-
tags:
|
|
58
|
-
- tag1
|
|
59
|
-
- nested/tag2
|
|
60
|
-
---
|
|
61
|
-
```
|