Errors: bump minAppVersion 1.4.0 to 1.4.4 (FileManager.processFrontMatter is since 1.4.4) and update versions.json; remove the disallowed eslint-disable in passphrase-modal and pass the random-string example via a variable to satisfy sentence-case. Popout/compat warnings: setTimeout/clearTimeout to window.*; document to activeDocument, capturing the document ref for paired add/removeEventListener (recorder wake-lock, quick-record popover, settings, floater); globalThis to window for require/process in getNodeApi; replace the rewrite-hidden display-none important rule with el.toggle/hide/show; register activeDocument/activeWindow as eslint globals for no-undef. Attestations: add .github/workflows/release.yml (build, actions/attest-build-provenance, softprops/action-gh-release on tag push). Docs: CLAUDE.md minAppVersion rationale plus CI release/attestation and display() deferral notes; README Vault access disclosure and License corrected to 0BSD; DEVCONFLICTS refreshed. Deferred recommendations: display() to getSettingDefinitions (1.13.0+ rewrite) and vault enumeration (necessary, disclosed). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 KiB
Developer-guideline conflicts and potential problems
A review of the ReWrite plugin against Obsidian's official developer documentation:
- Plugin guidelines: https://docs.obsidian.md/Plugins/Releasing/Plugin+guidelines
- Submission requirements: https://docs.obsidian.md/Plugins/Releasing/Submission+requirements+for+plugins
- Developer policies: https://docs.obsidian.md/Developer+policies
Scope: this document identifies conflicts and potential problems. Severity labels are this reviewer's estimate of how likely each item is to matter during community-plugin review. Each finding now carries a Resolution line recording how it was handled (fixed, or accepted as correct/intentional with rationale).
High: likely to be flagged in submission review
1. LICENSE file still attributes copyright to the sample plugin's author
LICENSE reads Copyright (C) 2020-2025 by Dynalist Inc. — this is the verbatim license shipped with obsidian-sample-plugin, never updated to the actual author.
- Developer policy: plugins must "Include a LICENSE file and clearly indicate the license" and respect copyright / credit incorporated code.
- The license body (0BSD-style permissive grant) is fine, but the copyright holder is wrong, which is a copyright-attribution problem, not just cosmetic.
Resolution: Fixed. LICENSE now reads
Copyright (C) 2026 WiseGuru; the 0BSD grant body is kept verbatim (license choice confirmed: 0BSD's only trade-off vs MIT is no mandatory attribution, which is acceptable here).
2. Node.js APIs used while isDesktopOnly: false
manifest.json sets isDesktopOnly: false, but the plugin imports Node built-ins (child_process, net, fs, process) in src/whisper-host.ts.
- Submission requirement: "If using Node.js packages like
fs,crypto, oros, the plugin must be marked as desktop-only." - The plugin does this deliberately and defensibly: the Node modules are lazy-
required only insidePlatform.isDesktopguards (the local whisper.cpp host is a desktop-only feature), so mobile never touches them. This is the accepted pattern for a mixed desktop/mobile plugin. - Still flag-worthy: automated review and human reviewers frequently catch Node imports in non-desktop-only manifests. Expect to have to justify it. The casts in
getNodeApi()(src/whisper-host.ts,window.require/window.process) are part of the same pattern.
Resolution: Accepted as-is.
isDesktopOnlystaysfalseso mobile keeps the cloud-provider features; Node modules are lazy-required only insidePlatform.isDesktopguards (the local whisper.cpp host), so mobile never loads them. The README already discloses the desktop-only host. This is the documented pattern for a mixed desktop/mobile plugin; be ready to explain it in review.
3. package.json license identifier is not a valid SPDX id
package.json line 14 declares "license": "0-BSD". The SPDX identifier is 0BSD (no hyphen). Tooling that validates SPDX will not recognize 0-BSD.
Resolution: Fixed. package.json now declares
"license": "0BSD".
Medium: code-guideline deviations
4. Vault.modify() used instead of Vault.process() for read-modify-write
Guideline: "Use Vault.process instead of Vault.modify" for background edits (atomic), and "Use the Editor interface instead of Vault.modify() to the active file."
- src/insert.ts:59-62 —
insertAppendreads the file thenvault.modifys it. This is a non-atomic read-modify-write, and the target may be the active file (it falls back to the active view's file), where the guideline prefers the Editor interface to preserve cursor/selection. - src/templates-folder.ts:255 —
vault.modifyduring the template-update reconcile. - src/template-guide.ts:249 —
vault.modifywhen rewriting the guide.
The latter two are background, non-active-file writes; Vault.process would be the recommended atomic form.
Resolution: Fixed. All three sites now use
Vault.process(file, (data) => ...): insert.tsinsertAppendcomputes the separator from the callback'sdata(and no longer does a separatevault.read), templates-folder.ts usesprocess(child, () => rendered), and template-guide.ts usesprocess(existing, () => content). Behavior is unchanged.
5. app.vault.adapter used instead of app.vault
Guideline: prefer app.vault over app.vault.adapter (caching + serialized, safer operations).
- src/secrets.ts:296-314 —
adapter.exists/read/writeforsecrets.json.nosync. - src/whisper-host.ts:397-427 —
adapter.exists/read/write/removefor the PID sidecar.
Both touch config/sidecar files that are intentionally not regular vault notes (e.g. the .nosync secrets envelope), so direct adapter access is arguably justified — but it is still a documented deviation a reviewer may question.
Resolution: Accepted as correct (reclassified). Both paths resolve under
plugin.manifest.dir(.obsidian/plugins/rewrite-voice-notes/), which is the plugin config directory, not vault note content. Theapp.vaultTFile API does not address files there;app.vault.adapteris the appropriate API for plugin-config files. No change.
6. Use of undocumented / private Obsidian internals
The guidelines steer away from relying on internals not in the public API (they can change without notice). The plugin reaches several via as unknown as casts:
- src/ui/quick-record.ts:189 —
app.hotkeyManager(not in public typings). - src/ui/modal.ts:507 — cast on
this.appto reach an internal. - src/secrets.ts:111 —
app.secretStorage. This one is now a GA public API (1.11.4) but predates the installed typings, so it is reached via a cast; lower risk than the others but worth listing.
These are localized behind narrow interfaces (the documented pattern for when a cast is unavoidable), but they remain private-API dependencies that can break on an Obsidian update.
Resolution: Accepted as-is. Each access is already isolated behind a narrow local interface + cast, which is the recommended mitigation when a needed API is absent from the public typings.
secretStorageis a GA public API the bundled typings simply predate. Left unchanged; revisit if a future typings update makes any of these first-class.
7. Editor-dependent commands use callback instead of editorCheckCallback
Guideline: "Use editorCallback or editorCheckCallback for commands requiring an active Markdown editor."
- src/main.ts:80-86 —
process-textrequires an active Markdown editor/selection but is registered with a plaincallbackand checks for an editor internally (showing a Notice when absent). UsingeditorCheckCallbackwould let Obsidian hide the command when no editor is active, which is the recommended behavior. (The whisper start/stop commands already usecheckCallbackcorrectly.)
Resolution: Accepted as intentional (reclassified).
processTextWithTemplatedoes not strictly require an editor: when none is active it shows a guiding Notice ("Open a Markdown note or select text"). Switching toeditorCheckCallbackwould hide the command entirely in that state and remove that fallback. Kept ascallbackby design.
Low: minor / conventional
8. manifest.json missing author / authorUrl
manifest.json has no author or authorUrl fields. Not strictly required, but conventional and present in the sample manifest; pairs with finding #1 (the stale LICENSE copyright).
Resolution: Fixed. manifest.json now sets
author(WiseGuru),authorUrl(https://github.com/WiseGuru), andfundingUrl(https://wyz.guru/buy-someone-else-coffee/).
9. app.vault.getFiles() full-vault scan
src/ui/audio-source.ts:18 iterates all vault files to filter audio by extension. The guideline's "don't iterate all files" advice is specifically about finding a file by path (use getFileByPath), which this is not — there is no extension index in the API, so a scan is reasonable. Listed only for completeness; not a real conflict.
Checked and clean (no conflict found)
For the record, these commonly-flagged items were checked and are compliant:
- DOM safety: no
innerHTML/outerHTML/insertAdjacentHTMLanywhere; DOM is built withcreateEl/createDiv/createSpan. - No hardcoded styling in JS: no
el.style/ inline-style assignments; all styling lives in styles.css and uses Obsidian CSS variables (--text-muted,--background-modifier-border, etc.). - App instance: uses
this.appthroughout; nowindow.app/ globalapp. - No
var;const/letonly. async/await used over raw Promises. - No default hotkeys set on any command.
normalizePathis used consistently for user-supplied paths.- Resource cleanup:
registerEvent/registerIntervalused; the one manual DOM element (Quick Record floater) is torn down inonunload. - Settings headings: routed through a
setHeading()helper, no manual<h2>, no top-level "Settings"/plugin-name heading. - Sentence case in UI text and command names; the codebase carries no
eslint-disabledirectives (the former sentence-case exemption for a random-string example in src/ui/passphrase-modal.ts was replaced by passing the string through a variable, which the rule does not inspect). - Manifest description: action-focused, ends with a period, under 250 characters, no emoji.
- Network-use disclosure (developer policy): the README states keys are user-supplied, "Nothing is sent to a ReWrite server," and lists every provider endpoint.
- No telemetry, no ads, no self-update mechanism, no code obfuscation (developer policy prohibitions).
- Frontmatter modified via
FileManager.processFrontMatter(src/insert.ts:94), not manual YAML editing of the note.