Skip to content

Releases: alexaytov/vscode-ai-notetaking

v0.0.10: order-aware plan validation

10 May 13:14

Choose a tag to compare

Fixed

  • Order-aware plan validation. Previously, a plan with two ops where op 2 referenced a path that op 1 had moved (e.g., merge a parent folder, then merge its former child) would pass validation and fail mid-apply with ENOENT. The validator now simulates each op against a mutating state copy, so order-dependent failures are caught up front and the whole plan is rejected with a clear "does not exist" message.

Install

```sh
curl -L -o ai-notes-0.0.10.vsix https://github.com/alexaytov/vscode-ai-notetaking/releases/download/0.0.10/ai-notes-0.0.10.vsix
code --install-extension ai-notes-0.0.10.vsix
```

v0.0.9: Restructure Vault validation fix

10 May 13:00

Choose a tag to compare

Fixed

  • Reject rename when target folder already exists. Previously, if the AI proposed renaming foo bar to foo-bar and foo-bar already existed with content, the OS rejected the operation with ENOTEMPTY mid-flight. The validator now catches this before any I/O and tells the user to re-run (the AI will then propose a merge instead).
  • Clearer error when no operations were applied. First-op failures now say "No operations applied before error: …" instead of the misleading "0 renames, 0 merges, 0 moves before error: …".

Changed

  • AI prompt now includes an explicit rule: "Use a 'merge' operation, NOT 'rename', when the target folder already exists."

Install

```sh
curl -L -o ai-notes-0.0.9.vsix https://github.com/alexaytov/vscode-ai-notetaking/releases/download/0.0.9/ai-notes-0.0.9.vsix
code --install-extension ai-notes-0.0.9.vsix
```

v0.0.8: Restructure Vault

10 May 12:34

Choose a tag to compare

Highlights

New: AI Notes: Restructure Vault command — propose and apply refinements to your entire vault's folder structure in one pass. Conservative AI-refined-from-existing strategy, dry-run summary with a single confirmation, and automatic rewriting of internal [[wiki-links]], markdown links, and image paths so nothing breaks when files move.

Added

  • AI Notes: Restructure Vault command (vault-wide reorganization).
  • New linkRewriter module — pure-function link rewriting that skips fenced code blocks and inline code.
  • Compact / Detailed runtime context strategy chosen via QuickPick.
  • Dedicated AI Notes: Restructure Output channel for transcripts of each restructure run.

Fixed

  • Cross-platform path handling in buildPathMap (Windows backslash / POSIX slash mixing).

Install

```sh
curl -L -o ai-notes-0.0.8.vsix https://github.com/alexaytov/vscode-ai-notetaking/releases/download/0.0.8/ai-notes-0.0.8.vsix
code --install-extension ai-notes-0.0.8.vsix
```

0.0.4

02 Jun 12:51

Choose a tag to compare

Fix PDF padding and remove yaml frontmatter from pdf.

Full Changelog: 0.0.3...0.0.4

0.0.3

01 Jun 10:24

Choose a tag to compare

  • Export markdown note to PDF with embedded images - allows you to quickly create fully portable and sharable notes from your markdown notes.
  • Reveal in finder - allows you to quickly access the note as well as OneDrive share actions from the file explorer if you are using One Drive for a backup solution

Full Changelog: 0.0.2...0.0.3

0.0.2

31 May 16:56

Choose a tag to compare

Make one call to generate all of the tags, content, and directory instead of 3 calls.
Make the ai AI-generated name and directory depend on the content and not only on the tags.

0.0.1

29 May 06:07

Choose a tag to compare

Initial release for the extension