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.
@@ -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
+