wikilink.mjs
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd
feat(calendar): enforce agent context tiers in retrieval AP…
Human
minor
⚠ breaking
1 day ago
| 1 | /** |
| 2 | * Obsidian-style `[[wikilink]]` parsing shared by local `lib/backlinks.mjs` and hosted MCP `backlinks`. |
| 3 | */ |
| 4 | |
| 5 | const WIKILINK = /\[\[([^\]|#]+)(?:#[^\]|]+)?(?:\|[^\]]+)?\]\]/g; |
| 6 | |
| 7 | /** |
| 8 | * Normalize wikilink inner text to comparable basename (no `.md`), lowercase. |
| 9 | * @param {string} raw |
| 10 | */ |
| 11 | export function wikilinkTargetKey(raw) { |
| 12 | const s = String(raw).trim(); |
| 13 | const last = s.split(/[/\\]/).pop() || s; |
| 14 | return last.replace(/\.md$/i, '').toLowerCase(); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Target key for the note at `vaultRelativePath` (basename stem), same as local backlinks target. |
| 19 | * @param {string} vaultRelativePath |
| 20 | */ |
| 21 | export function vaultBasenameTargetKey(vaultRelativePath) { |
| 22 | const target = String(vaultRelativePath).replace(/\\/g, '/'); |
| 23 | return wikilinkTargetKey(target.split('/').pop() || target); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * If `body` contains a wikilink whose target normalizes to `targetKey`, return trimmed context around |
| 28 | * the first match; otherwise `null`. |
| 29 | * @param {string} body |
| 30 | * @param {string} targetKey |
| 31 | * @returns {string|null} |
| 32 | */ |
| 33 | export function findFirstWikilinkToTargetInBody(body, targetKey) { |
| 34 | const text = body != null ? String(body) : ''; |
| 35 | WIKILINK.lastIndex = 0; |
| 36 | let m; |
| 37 | while ((m = WIKILINK.exec(text)) !== null) { |
| 38 | if (wikilinkTargetKey(m[1]) !== targetKey) continue; |
| 39 | const start = Math.max(0, m.index - 60); |
| 40 | const end = Math.min(text.length, m.index + m[0].length + 60); |
| 41 | return text.slice(start, end).replace(/\s+/g, ' ').trim(); |
| 42 | } |
| 43 | return null; |
| 44 | } |
File History
2 commits
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd
feat(calendar): enforce agent context tiers in retrieval AP…
Human
minor
⚠
1 day ago
sha256:9103f98c89257ed2b01c237cea895dabb3e85ea337dccb1161c175e4422355b6
docs: accept Calendar Events v0 spec with Phase 0 security …
Human
1 day ago