obsidian-dev-skills 1.0.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/LICENSE +21 -0
- package/README.md +80 -0
- package/obsidian-ops/SKILL.md +35 -0
- package/obsidian-ops/references/build-workflow.md +75 -0
- package/obsidian-ops/references/performance.md +14 -0
- package/obsidian-ops/references/quick-reference.md +169 -0
- package/obsidian-ops/references/quick-sync-guide.md +166 -0
- package/obsidian-ops/references/release-readiness.md +210 -0
- package/obsidian-ops/references/security-privacy.md +61 -0
- package/obsidian-ops/references/summarize-commands.md +153 -0
- package/obsidian-ops/references/sync-procedure.md +381 -0
- package/obsidian-ops/references/testing.md +17 -0
- package/obsidian-ops/references/troubleshooting.md +114 -0
- package/obsidian-ops/references/versioning-releases.md +16 -0
- package/obsidian-ref/SKILL.md +35 -0
- package/obsidian-ref/references/environment.md +52 -0
- package/obsidian-ref/references/file-conventions.md +65 -0
- package/obsidian-ref/references/manifest.md +39 -0
- package/obsidian-ref/references/mobile.md +14 -0
- package/obsidian-ref/references/obsidian-file-formats.md +759 -0
- package/obsidian-ref/references/ref-instructions.md +548 -0
- package/obsidian-ref/references/references.md +22 -0
- package/obsidian-ref/references/ux-copy.md +15 -0
- package/package.json +29 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Source: Based on Obsidian community guidelines
|
|
3
|
+
Last synced: See sync-status.json for authoritative sync dates
|
|
4
|
+
Update frequency: Check Obsidian releases repo for validation requirements
|
|
5
|
+
-->
|
|
6
|
+
|
|
7
|
+
# Manifest rules (`manifest.json`)
|
|
8
|
+
|
|
9
|
+
### Required Fields
|
|
10
|
+
|
|
11
|
+
All themes must include these fields in `manifest.json`:
|
|
12
|
+
|
|
13
|
+
- **`name`** (string, required) - Theme name
|
|
14
|
+
- **`version`** (string, required) - Semantic Versioning format `x.y.z` (e.g., `"1.0.0"`)
|
|
15
|
+
- **`minAppVersion`** (string, required) - Minimum Obsidian version required
|
|
16
|
+
- **`author`** (string, required) - Author name (required for themes)
|
|
17
|
+
|
|
18
|
+
### Optional Fields
|
|
19
|
+
|
|
20
|
+
- **`authorUrl`** (string, optional) - URL to author's website or profile
|
|
21
|
+
- **`fundingUrl`** (string, optional) - URL for funding/support
|
|
22
|
+
|
|
23
|
+
### Important Notes
|
|
24
|
+
|
|
25
|
+
- Themes do **not** use `id` or `isDesktopOnly` fields.
|
|
26
|
+
- Canonical requirements: https://github.com/obsidianmd/obsidian-releases/blob/master/.github/workflows/validate-theme-entry.yml
|
|
27
|
+
|
|
28
|
+
## Validation Checklist
|
|
29
|
+
|
|
30
|
+
When reviewing or creating a `manifest.json` file, ensure:
|
|
31
|
+
|
|
32
|
+
- [ ] All required fields are present (`name`, `version`, `minAppVersion`, `author`)
|
|
33
|
+
- [ ] `version` follows semantic versioning (x.y.z)
|
|
34
|
+
- [ ] `minAppVersion` is set appropriately
|
|
35
|
+
- [ ] JSON syntax is valid (proper quotes, commas, brackets)
|
|
36
|
+
- [ ] All string values are properly quoted
|
|
37
|
+
- [ ] No plugin-specific fields (`id`, `isDesktopOnly`) are present
|
|
38
|
+
|
|
39
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Source: Based on Obsidian community best practices
|
|
3
|
+
Last synced: See sync-status.json for authoritative sync dates
|
|
4
|
+
Update frequency: Check Obsidian community discussions for updates
|
|
5
|
+
-->
|
|
6
|
+
|
|
7
|
+
# Mobile
|
|
8
|
+
|
|
9
|
+
- Test themes on iOS and Android devices.
|
|
10
|
+
- Ensure CSS works correctly on mobile viewports.
|
|
11
|
+
- Consider touch-friendly UI elements and spacing.
|
|
12
|
+
- Test theme appearance in both light and dark modes on mobile.
|
|
13
|
+
|
|
14
|
+
|