Compare commits
55 Commits
v0.2026040
...
v0.2026040
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24e5b537d6 | ||
|
|
f8f6e3d003 | ||
|
|
ba9b5c7c31 | ||
|
|
1930e7132b | ||
|
|
8a51ff5f3c | ||
|
|
56cb878d0b | ||
|
|
52a673e16e | ||
|
|
fe44153ac6 | ||
|
|
088e0bca8e | ||
|
|
45249bade4 | ||
|
|
917773bc4c | ||
|
|
d39d691ccd | ||
|
|
98effa9637 | ||
|
|
e966f3a14b | ||
|
|
4ac2d994c1 | ||
|
|
043766f86e | ||
|
|
09e8d03851 | ||
|
|
9fa1c52a96 | ||
|
|
d32b11f02e | ||
|
|
6b2d34fec4 | ||
|
|
6693615791 | ||
|
|
e47c653b8b | ||
|
|
60ecc4dd0e | ||
|
|
5323ec6ede | ||
|
|
a007b37089 | ||
|
|
3c4f6ccabd | ||
|
|
313b11fb0e | ||
|
|
df1cff97b9 | ||
|
|
2b419b48a0 | ||
|
|
f8d080e678 | ||
|
|
9f905169cb | ||
|
|
ef0288268c | ||
|
|
1d3927ca2b | ||
|
|
2feff35764 | ||
|
|
6f66cf0d9c | ||
|
|
aaa46f8d20 | ||
|
|
f384b6fad3 | ||
|
|
de122ad045 | ||
|
|
c0a64e181b | ||
|
|
fe85d1f679 | ||
|
|
9db5f5cbed | ||
|
|
13c0802395 | ||
|
|
4c44f8e966 | ||
|
|
2b135d208e | ||
|
|
076860632c | ||
|
|
520ec504fe | ||
|
|
cdb3eeea4c | ||
|
|
f68436c2e0 | ||
|
|
7c03c50e25 | ||
|
|
24911b6bb7 | ||
|
|
51914db534 | ||
|
|
e4ffeeccc0 | ||
|
|
8ec33b99b5 | ||
|
|
638678184e | ||
|
|
62af7a3d6e |
@@ -7,8 +7,12 @@ Priority order: **To Rework** first, then **Open** (sorted by Todoist priority p
|
||||
## Steps
|
||||
|
||||
1. Fetch tasks from To Rework (`6g6QqvR9rRpvJWvv`), then Open (`6g3XjWR832hVHhCM`)
|
||||
2. Sort each section by priority (p1 highest)
|
||||
3. Take the first available task
|
||||
2. **Sort by priority — this is mandatory.** Todoist returns tasks in arbitrary order. You must sort them yourself:
|
||||
- Todoist priority field: `4` = p1 (urgent), `3` = p2, `2` = p3, `1` = p4
|
||||
- Sort descending by `priority` field (4 first, 1 last)
|
||||
- To Rework tasks always come before Open tasks regardless of priority
|
||||
- **Never pick a p3/p4 task if a p1/p2 task exists in the same section**
|
||||
3. Take the first task from the sorted list
|
||||
4. Move it to In Progress (`6g3XjWjfmJFcGgHM`) via Todoist API:
|
||||
|
||||
```bash
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
HOTSPOT_THRESHOLD=9.56
|
||||
AVERAGE_THRESHOLD=9.33
|
||||
HOTSPOT_THRESHOLD=9.41
|
||||
AVERAGE_THRESHOLD=9.30
|
||||
|
||||
@@ -18,44 +18,56 @@ pnpm test --run --silent
|
||||
echo "✅ Pre-commit passed"
|
||||
|
||||
# ── CodeScene Code Health gate ────────────────────────────────────────────
|
||||
# Blocks commit if Hotspot < 9.5 OR Average < 9.0.
|
||||
# Blocks commit if scores drop below thresholds in .codescene-thresholds.
|
||||
# Thresholds are a ratchet — only go up, auto-updated after each successful push.
|
||||
# Note: remote scores lag behind local changes (update after push + re-analysis).
|
||||
# This catches regressions from previous pushes and notifies Claude Code immediately.
|
||||
# If `pre_commit_code_health_safeguard` fails: extract hooks, split components,
|
||||
# reduce complexity. Never use eslint-disable, #[allow(...)], or `as any`.
|
||||
# If check fails: extract hooks, split components, reduce complexity.
|
||||
# Never use eslint-disable, #[allow(...)], or `as any`.
|
||||
echo "🏥 CodeScene code health check..."
|
||||
THRESHOLDS_FILE=".codescene-thresholds"
|
||||
if [ -z "$CODESCENE_PAT" ] || [ -z "$CODESCENE_PROJECT_ID" ]; then
|
||||
echo " ⚠️ CODESCENE_PAT or CODESCENE_PROJECT_ID not set — skipping (CI will enforce)"
|
||||
elif [ ! -f "$THRESHOLDS_FILE" ]; then
|
||||
echo " ⚠️ $THRESHOLDS_FILE not found — skipping (CI will enforce)"
|
||||
else
|
||||
API_RESPONSE=$(curl -sf \
|
||||
-H "Authorization: Bearer $CODESCENE_PAT" \
|
||||
-H "Accept: application/json" \
|
||||
"https://api.codescene.io/v2/projects/$CODESCENE_PROJECT_ID" 2>/dev/null || echo "{}")
|
||||
HOTSPOT_SCORE=$(echo "$API_RESPONSE" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['analysis']['hotspot_code_health']['now'])" 2>/dev/null || echo "")
|
||||
AVERAGE_SCORE=$(echo "$API_RESPONSE" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['analysis']['code_health']['now'])" 2>/dev/null || echo "")
|
||||
if [ -z "$HOTSPOT_SCORE" ] || [ -z "$AVERAGE_SCORE" ]; then
|
||||
echo " ⚠️ Could not fetch CodeScene scores — skipping (CI will enforce)"
|
||||
# Read ratchet thresholds
|
||||
HOTSPOT_THRESHOLD=$(grep '^HOTSPOT_THRESHOLD=' "$THRESHOLDS_FILE" | cut -d= -f2)
|
||||
AVERAGE_THRESHOLD=$(grep '^AVERAGE_THRESHOLD=' "$THRESHOLDS_FILE" | cut -d= -f2)
|
||||
if [ -z "$HOTSPOT_THRESHOLD" ] || [ -z "$AVERAGE_THRESHOLD" ]; then
|
||||
echo " ⚠️ Could not parse thresholds from $THRESHOLDS_FILE — skipping"
|
||||
else
|
||||
echo " Hotspot Code Health: $HOTSPOT_SCORE (threshold: 9.5)"
|
||||
echo " Average Code Health: $AVERAGE_SCORE (threshold: 9.33)"
|
||||
python3 -c "
|
||||
API_RESPONSE=$(curl -sf \
|
||||
-H "Authorization: Bearer $CODESCENE_PAT" \
|
||||
-H "Accept: application/json" \
|
||||
"https://api.codescene.io/v2/projects/$CODESCENE_PROJECT_ID" 2>/dev/null || echo "{}")
|
||||
HOTSPOT_SCORE=$(echo "$API_RESPONSE" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['analysis']['hotspot_code_health']['now'])" 2>/dev/null || echo "")
|
||||
AVERAGE_SCORE=$(echo "$API_RESPONSE" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['analysis']['code_health']['now'])" 2>/dev/null || echo "")
|
||||
if [ -z "$HOTSPOT_SCORE" ] || [ -z "$AVERAGE_SCORE" ]; then
|
||||
echo " ⚠️ Could not fetch CodeScene scores — skipping (CI will enforce)"
|
||||
else
|
||||
echo " Hotspot Code Health: $HOTSPOT_SCORE (threshold: $HOTSPOT_THRESHOLD)"
|
||||
echo " Average Code Health: $AVERAGE_SCORE (threshold: $AVERAGE_THRESHOLD)"
|
||||
python3 -c "
|
||||
import sys
|
||||
hotspot = float('$HOTSPOT_SCORE')
|
||||
average = float('$AVERAGE_SCORE')
|
||||
h_thresh = float('$HOTSPOT_THRESHOLD')
|
||||
a_thresh = float('$AVERAGE_THRESHOLD')
|
||||
failed = False
|
||||
if hotspot < 9.5:
|
||||
print(f'FAIL: Hotspot Code Health {hotspot:.2f} < 9.5 — extract hooks, split components, reduce complexity')
|
||||
if hotspot < h_thresh:
|
||||
print(f'FAIL: Hotspot Code Health {hotspot:.2f} < {h_thresh} — extract hooks, split components, reduce complexity')
|
||||
failed = True
|
||||
else:
|
||||
print(f'OK: Hotspot {hotspot:.2f} >= 9.5')
|
||||
if average < 9.33:
|
||||
print(f'FAIL: Average Code Health {average:.2f} < 9.33 — recent changes introduced regressions in non-hotspot files')
|
||||
print(f'OK: Hotspot {hotspot:.2f} >= {h_thresh}')
|
||||
if average < a_thresh:
|
||||
print(f'FAIL: Average Code Health {average:.2f} < {a_thresh} — recent changes introduced regressions in non-hotspot files')
|
||||
print(' Review files changed in this task. Never use eslint-disable, #[allow(...)], or as any to bypass.')
|
||||
failed = True
|
||||
else:
|
||||
print(f'OK: Average {average:.2f} >= 9.33')
|
||||
print(f'OK: Average {average:.2f} >= {a_thresh}')
|
||||
if failed:
|
||||
sys.exit(1)
|
||||
" || exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
21
CLAUDE.md
21
CLAUDE.md
@@ -107,6 +107,27 @@ Default to `demo-vault-v2/`. If you must use `~/Laputa/` for testing: **never co
|
||||
2. Design in light mode. Create `design/<slug>.pen` for the task
|
||||
3. On completion: merge frames into `ui-design.pen`, delete `design/<slug>.pen`
|
||||
|
||||
### UI components — mandatory rules
|
||||
|
||||
**Always use shadcn/ui components.** Never use raw HTML form elements (`<input>`, `<select>`, `<button>`, native `<input type="date">`, etc.) for user-facing UI. Every interactive element must use the shadcn/ui equivalent:
|
||||
|
||||
| Need | Use |
|
||||
|---|---|
|
||||
| Text input | `Input` from shadcn/ui |
|
||||
| Dropdown/select | `Select` from shadcn/ui |
|
||||
| Date picker | `Calendar` + `Popover` from shadcn/ui (NOT native `<input type="date">`) |
|
||||
| Button | `Button` from shadcn/ui |
|
||||
| Autocomplete/combobox | Reuse existing combobox components from the app (check `src/components/`) |
|
||||
| Wikilink picker | Reuse the wikilink autocomplete component already used in the editor and Properties panel |
|
||||
| Emoji picker | Reuse the emoji picker component already used for note/type icons |
|
||||
| Color picker | Reuse the color swatch picker used for type customization |
|
||||
| Toggle/switch | `Switch` or `ToggleGroup` from shadcn/ui |
|
||||
| Dialog/modal | `Dialog` from shadcn/ui |
|
||||
|
||||
**When in doubt:** search `src/components/` for an existing component that does what you need before building a new one. The app already has many reusable pieces — use them.
|
||||
|
||||
**Visual language:** all new UI must feel native to Laputa. Take inspiration from `ui-design.pen` and existing components. If something looks like a browser default, it's wrong.
|
||||
|
||||
---
|
||||
|
||||
## 4. Reference
|
||||
|
||||
10
adr.md
Normal file
10
adr.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
type: Type
|
||||
"sidebar label": ADRs
|
||||
icon: article
|
||||
color: red
|
||||
title: Adr
|
||||
---
|
||||
|
||||
# ADR
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Custom views as .yml files with client-side filter engine
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
16
demo-vault-v2/.gitignore
vendored
Normal file
16
demo-vault-v2/.gitignore
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# Laputa app files (machine-specific, never commit)
|
||||
.laputa/settings.json
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Editors
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
5
demo-vault-v2/career-tracks-depend-on-company-shape.md
Normal file
5
demo-vault-v2/career-tracks-depend-on-company-shape.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 343
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/final-title.md
Normal file
5
demo-vault-v2/final-title.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 342
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
title: Renamed Title XYZ
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Renamed Title XYZ
|
||||
5
demo-vault-v2/responsive-rename-test.md
Normal file
5
demo-vault-v2/responsive-rename-test.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 345
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
title: Test Note ABC
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Test Note ABC
|
||||
@@ -12,8 +12,7 @@ secondary-foreground: "#111111"
|
||||
muted: "#F5F5F5"
|
||||
muted-foreground: "#666666"
|
||||
accent: "#F0F0F0"
|
||||
accent-foreground: "#111111"
|
||||
destructive: "#CC0000"
|
||||
accent-foreground: destructive: "#CC0000"
|
||||
border: "#E0E0E0"
|
||||
input: "#E0E0E0"
|
||||
ring: "#000000"
|
||||
@@ -47,8 +46,8 @@ font-size-base: 13px
|
||||
editor-font-size: 15
|
||||
editor-line-height: 1.6
|
||||
editor-max-width: 680
|
||||
title: Minimal
|
||||
---
|
||||
|
||||
# Minimal
|
||||
|
||||
High contrast, minimal chrome. Monospace typography throughout.
|
||||
|
||||
8
demo-vault-v2/untitled-area-10.md
Normal file
8
demo-vault-v2/untitled-area-10.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 10
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 10
|
||||
|
||||
8
demo-vault-v2/untitled-area-11.md
Normal file
8
demo-vault-v2/untitled-area-11.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 11
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 11
|
||||
|
||||
10
demo-vault-v2/untitled-area-12.md
Normal file
10
demo-vault-v2/untitled-area-12.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Untitled area 12
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
# Untitled area 12
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
8
demo-vault-v2/untitled-area-13.md
Normal file
8
demo-vault-v2/untitled-area-13.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 13
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 13
|
||||
|
||||
8
demo-vault-v2/untitled-area-14.md
Normal file
8
demo-vault-v2/untitled-area-14.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 14
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 14
|
||||
|
||||
8
demo-vault-v2/untitled-area-15.md
Normal file
8
demo-vault-v2/untitled-area-15.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 15
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 15
|
||||
|
||||
8
demo-vault-v2/untitled-area-16.md
Normal file
8
demo-vault-v2/untitled-area-16.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 16
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 16
|
||||
|
||||
8
demo-vault-v2/untitled-area-17.md
Normal file
8
demo-vault-v2/untitled-area-17.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 17
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 17
|
||||
|
||||
8
demo-vault-v2/untitled-area-18.md
Normal file
8
demo-vault-v2/untitled-area-18.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 18
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 18
|
||||
|
||||
6
demo-vault-v2/untitled-area-2.md
Normal file
6
demo-vault-v2/untitled-area-2.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled area 2
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
# Untitled area 2
|
||||
8
demo-vault-v2/untitled-area-3.md
Normal file
8
demo-vault-v2/untitled-area-3.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 3
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 3
|
||||
|
||||
8
demo-vault-v2/untitled-area-4.md
Normal file
8
demo-vault-v2/untitled-area-4.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 4
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 4
|
||||
|
||||
8
demo-vault-v2/untitled-area-5.md
Normal file
8
demo-vault-v2/untitled-area-5.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 5
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 5
|
||||
|
||||
8
demo-vault-v2/untitled-area-6.md
Normal file
8
demo-vault-v2/untitled-area-6.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 6
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 6
|
||||
|
||||
8
demo-vault-v2/untitled-area-7.md
Normal file
8
demo-vault-v2/untitled-area-7.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 7
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 7
|
||||
|
||||
8
demo-vault-v2/untitled-area-8.md
Normal file
8
demo-vault-v2/untitled-area-8.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 8
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 8
|
||||
|
||||
8
demo-vault-v2/untitled-area-9.md
Normal file
8
demo-vault-v2/untitled-area-9.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area 9
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area 9
|
||||
|
||||
8
demo-vault-v2/untitled-area.md
Normal file
8
demo-vault-v2/untitled-area.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled area
|
||||
type: Area
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled area
|
||||
|
||||
@@ -3,20 +3,12 @@ title: Untitled experiment 3
|
||||
type: Experiment
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled experiment 2
|
||||
|
||||
## Hypothesis
|
||||
|
||||
|
||||
|
||||
## Method
|
||||
|
||||
|
||||
|
||||
## Results
|
||||
|
||||
|
||||
|
||||
## Conclusion
|
||||
|
||||
|
||||
8
demo-vault-v2/untitled-note-10.md
Normal file
8
demo-vault-v2/untitled-note-10.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 10
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 10
|
||||
|
||||
11
demo-vault-v2/untitled-note-100-md-renamed.md
Normal file
11
demo-vault-v2/untitled-note-100-md-renamed.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: Untitled note 100
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
# untitled-note-100.md Renamed
|
||||
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
10
demo-vault-v2/untitled-note-101.md
Normal file
10
demo-vault-v2/untitled-note-101.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Untitled note 101
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 101
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
8
demo-vault-v2/untitled-note-102.md
Normal file
8
demo-vault-v2/untitled-note-102.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 102
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 102
|
||||
|
||||
8
demo-vault-v2/untitled-note-103.md
Normal file
8
demo-vault-v2/untitled-note-103.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 103
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 103
|
||||
|
||||
6
demo-vault-v2/untitled-note-104.md
Normal file
6
demo-vault-v2/untitled-note-104.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 104
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 104My Custom H1 Heading
|
||||
11
demo-vault-v2/untitled-note-105-md-renamed.md
Normal file
11
demo-vault-v2/untitled-note-105-md-renamed.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: Untitled note 105
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
# untitled-note-105.md Renamed
|
||||
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
10
demo-vault-v2/untitled-note-106.md
Normal file
10
demo-vault-v2/untitled-note-106.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Untitled note 106
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 106
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
8
demo-vault-v2/untitled-note-107.md
Normal file
8
demo-vault-v2/untitled-note-107.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 107
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 107
|
||||
|
||||
8
demo-vault-v2/untitled-note-108.md
Normal file
8
demo-vault-v2/untitled-note-108.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 108
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 108
|
||||
|
||||
6
demo-vault-v2/untitled-note-109.md
Normal file
6
demo-vault-v2/untitled-note-109.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 109
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 109My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-11.md
Normal file
8
demo-vault-v2/untitled-note-11.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 11
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 11
|
||||
|
||||
11
demo-vault-v2/untitled-note-110-md-renamed.md
Normal file
11
demo-vault-v2/untitled-note-110-md-renamed.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: Untitled note 110
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
# untitled-note-110.md Renamed
|
||||
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-111.md
Normal file
8
demo-vault-v2/untitled-note-111.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 111
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
8
demo-vault-v2/untitled-note-112.md
Normal file
8
demo-vault-v2/untitled-note-112.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 112
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 112
|
||||
|
||||
8
demo-vault-v2/untitled-note-113.md
Normal file
8
demo-vault-v2/untitled-note-113.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 113
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 113
|
||||
|
||||
6
demo-vault-v2/untitled-note-114.md
Normal file
6
demo-vault-v2/untitled-note-114.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 114
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
11
demo-vault-v2/untitled-note-115-md-renamed.md
Normal file
11
demo-vault-v2/untitled-note-115-md-renamed.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: Untitled note 115
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
# untitled-note-115.md Renamed
|
||||
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-116.md
Normal file
8
demo-vault-v2/untitled-note-116.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 116
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-117.md
Normal file
5
demo-vault-v2/untitled-note-117.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 117
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-118.md
Normal file
5
demo-vault-v2/untitled-note-118.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 118
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-119.md
Normal file
5
demo-vault-v2/untitled-note-119.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 119
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
8
demo-vault-v2/untitled-note-12.md
Normal file
8
demo-vault-v2/untitled-note-12.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 12
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 12
|
||||
|
||||
6
demo-vault-v2/untitled-note-120.md
Normal file
6
demo-vault-v2/untitled-note-120.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 120
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-121-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-121-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 121
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-122.md
Normal file
8
demo-vault-v2/untitled-note-122.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 122
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-123.md
Normal file
5
demo-vault-v2/untitled-note-123.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 123
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-124.md
Normal file
5
demo-vault-v2/untitled-note-124.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 124
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-125.md
Normal file
5
demo-vault-v2/untitled-note-125.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 125
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-126.md
Normal file
6
demo-vault-v2/untitled-note-126.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 126
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-127-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-127-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 127
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-128.md
Normal file
8
demo-vault-v2/untitled-note-128.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 128
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-129.md
Normal file
5
demo-vault-v2/untitled-note-129.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 129
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-13.md
Normal file
6
demo-vault-v2/untitled-note-13.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 13
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 13My Custom H1 Heading
|
||||
5
demo-vault-v2/untitled-note-130.md
Normal file
5
demo-vault-v2/untitled-note-130.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 130
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-131.md
Normal file
6
demo-vault-v2/untitled-note-131.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 131
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-132-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-132-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 132
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-133.md
Normal file
8
demo-vault-v2/untitled-note-133.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 133
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-134.md
Normal file
5
demo-vault-v2/untitled-note-134.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 134
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-135.md
Normal file
5
demo-vault-v2/untitled-note-135.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 135
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-136.md
Normal file
6
demo-vault-v2/untitled-note-136.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 136
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-137-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-137-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 137
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-138.md
Normal file
8
demo-vault-v2/untitled-note-138.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 138
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-139.md
Normal file
5
demo-vault-v2/untitled-note-139.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 139
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-14.md
Normal file
6
demo-vault-v2/untitled-note-14.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 14
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
# Untitled note 14My Custom H1 Heading
|
||||
5
demo-vault-v2/untitled-note-140.md
Normal file
5
demo-vault-v2/untitled-note-140.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 140
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-141.md
Normal file
6
demo-vault-v2/untitled-note-141.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 141
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-142-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-142-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 142
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-143.md
Normal file
8
demo-vault-v2/untitled-note-143.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 143
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-144.md
Normal file
5
demo-vault-v2/untitled-note-144.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 144
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-145.md
Normal file
5
demo-vault-v2/untitled-note-145.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 145
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-146.md
Normal file
5
demo-vault-v2/untitled-note-146.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 146
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-147.md
Normal file
6
demo-vault-v2/untitled-note-147.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 147
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-148-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-148-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 148
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-149.md
Normal file
8
demo-vault-v2/untitled-note-149.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 149
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
11
demo-vault-v2/untitled-note-15-md-renamed.md
Normal file
11
demo-vault-v2/untitled-note-15-md-renamed.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: Untitled note 15
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
# untitled-note-15.md Renamed
|
||||
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
5
demo-vault-v2/untitled-note-150.md
Normal file
5
demo-vault-v2/untitled-note-150.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 150
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-151.md
Normal file
5
demo-vault-v2/untitled-note-151.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 151
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-152.md
Normal file
6
demo-vault-v2/untitled-note-152.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 152
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-153-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-153-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 153
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-154.md
Normal file
8
demo-vault-v2/untitled-note-154.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 154
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
5
demo-vault-v2/untitled-note-155.md
Normal file
5
demo-vault-v2/untitled-note-155.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 155
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
5
demo-vault-v2/untitled-note-156.md
Normal file
5
demo-vault-v2/untitled-note-156.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 156
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
6
demo-vault-v2/untitled-note-157.md
Normal file
6
demo-vault-v2/untitled-note-157.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Untitled note 157
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
My Custom H1 Heading
|
||||
8
demo-vault-v2/untitled-note-158-md-renamed.md
Normal file
8
demo-vault-v2/untitled-note-158-md-renamed.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 158
|
||||
type: Project
|
||||
status: Active
|
||||
---
|
||||
|
||||
|
||||
Appended by raw editor test
|
||||
8
demo-vault-v2/untitled-note-159.md
Normal file
8
demo-vault-v2/untitled-note-159.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 159
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
[[2024-03|March 2024]]
|
||||
|
||||
[[2024-03|March 2024]]
|
||||
8
demo-vault-v2/untitled-note-16.md
Normal file
8
demo-vault-v2/untitled-note-16.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Untitled note 16
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
|
||||
# Untitled note 16
|
||||
|
||||
5
demo-vault-v2/untitled-note-160.md
Normal file
5
demo-vault-v2/untitled-note-160.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Untitled note 160
|
||||
type: Note
|
||||
status: Active
|
||||
---
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user