knowns 0.4.0 → 0.5.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.
Files changed (29) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/index.js +2215 -1871
  3. package/dist/mcp/server.js +1772 -1528
  4. package/dist/ui/assets/index-CE9TcfeR.css +1 -0
  5. package/dist/ui/assets/index-cRjSkI-I.js +313 -0
  6. package/dist/ui/assets/inter-v12-latin-100-46Mq0mOp.woff +0 -0
  7. package/dist/ui/assets/inter-v12-latin-100-BQDzDElq.woff2 +0 -0
  8. package/dist/ui/assets/inter-v12-latin-200-BxfrU12A.woff2 +0 -0
  9. package/dist/ui/assets/inter-v12-latin-200-DXfqWPZg.woff +0 -0
  10. package/dist/ui/assets/inter-v12-latin-300-DEbyFmpd.woff2 +0 -0
  11. package/dist/ui/assets/inter-v12-latin-300-f7r92Nkj.woff +0 -0
  12. package/dist/ui/assets/inter-v12-latin-500-BQ2gQN_M.woff +0 -0
  13. package/dist/ui/assets/inter-v12-latin-500-DfX5FI9E.woff2 +0 -0
  14. package/dist/ui/assets/inter-v12-latin-600-BvOeHRLc.woff2 +0 -0
  15. package/dist/ui/assets/inter-v12-latin-600-D01NXWOK.woff +0 -0
  16. package/dist/ui/assets/inter-v12-latin-700-B5TOIllR.woff +0 -0
  17. package/dist/ui/assets/inter-v12-latin-700-Bj1B9WKG.woff2 +0 -0
  18. package/dist/ui/assets/inter-v12-latin-800-Bdy4lAMa.woff2 +0 -0
  19. package/dist/ui/assets/inter-v12-latin-800-DFVvDWwT.woff +0 -0
  20. package/dist/ui/assets/inter-v12-latin-900-CMga-52B.woff2 +0 -0
  21. package/dist/ui/assets/inter-v12-latin-900-ORHAl5ZU.woff +0 -0
  22. package/dist/ui/assets/inter-v12-latin-regular-CahmJf_6.woff +0 -0
  23. package/dist/ui/assets/inter-v12-latin-regular-YtgfLPRn.woff2 +0 -0
  24. package/dist/ui/assets/module-RjUF93sV.js +716 -0
  25. package/dist/ui/assets/native-48B9X9Wg.js +1 -0
  26. package/dist/ui/index.html +2 -2
  27. package/package.json +11 -1
  28. package/dist/ui/assets/index-BUsOx5xS.css +0 -1
  29. package/dist/ui/assets/index-BdxLDbKo.js +0 -171
package/CHANGELOG.md CHANGED
@@ -5,6 +5,34 @@ All notable changes to Knowns will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.0] - 2025-01-04
9
+
10
+ ### Added
11
+
12
+ - **BlockNote Rich Text Editor**: Replace markdown textarea with BlockNote WYSIWYG editor
13
+ - Task description, implementation plan, and notes now use rich text
14
+ - Docs page uses BlockNote for editing
15
+ - **Mentions System**: Reference tasks and docs with `@task-X` and `@doc/path`
16
+ - Autocomplete suggestions when typing `@`
17
+ - Clickable mention badges with live data (title, status)
18
+ - Works in both BlockNoteEditor and MDRender
19
+ - **Error Boundary**: Gracefully handle BlockNote rendering errors
20
+
21
+ ### Fixed
22
+
23
+ - **Mention serialization**: Correctly save mentions as `@task-X` format instead of display text
24
+ - **Mentions in tables**: Delete/replace operations now work for mentions inside table cells
25
+ - **Mentions in code blocks**: Preserve raw `@task-X`, `@doc/path` in code blocks and inline code
26
+ - UI: BlockNoteEditor and MDRender skip mention rendering in code
27
+ - CLI: `--plain` output keeps mentions raw inside code blocks
28
+
29
+ ### Changed
30
+
31
+ - **Editor view mode**: Use MDRender for viewing, BlockNoteEditor for editing (better stability)
32
+ - **Mention badge styles**: Synchronized between MDRender and BlockNoteEditor
33
+ - Task badges: green theme
34
+ - Doc badges: blue theme
35
+
8
36
  ## [0.4.0] - 2025-12-31
9
37
 
10
38
  ### Added