@our2ndbrain/cli 1.1.3 → 2026.4.5

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 (52) hide show
  1. package/CHANGELOG.md +30 -2
  2. package/README.md +54 -582
  3. package/README_en.md +108 -0
  4. package/bin/2ndbrain.js +30 -1
  5. package/package.json +14 -11
  6. package/src/commands/check.js +199 -0
  7. package/src/commands/completion.js +35 -1
  8. package/src/commands/init.js +7 -4
  9. package/src/commands/member.js +3 -1
  10. package/src/commands/update.js +38 -12
  11. package/src/commands/watch.js +212 -0
  12. package/src/index.js +4 -0
  13. package/src/lib/config.js +46 -2
  14. package/src/lib/files.js +58 -19
  15. package/{.obsidian → template/.obsidian}/plugins/obsidian-git/obsidian_askpass.sh +0 -0
  16. package/{00_Dashboard → template/00_Dashboard}/01_All_Tasks.md +17 -15
  17. package/template/10_Inbox/.gitkeep +0 -0
  18. package/template/20_Areas/.gitkeep +0 -0
  19. package/template/30_Projects/.gitkeep +0 -0
  20. package/template/40_Resources/.gitkeep +0 -0
  21. package/template/90_Archives/.gitkeep +0 -0
  22. package/{99_System → template/99_System}/Scripts/init_member.sh +0 -0
  23. package/template/99_System/Templates/tpl_daily_note.md +30 -0
  24. package/{99_System → template/99_System}/Templates/tpl_member_tasks.md +11 -5
  25. package/template/99_System/Templates/tpl_member_todo.md +5 -0
  26. package/99_System/Templates/tpl_daily_note.md +0 -13
  27. package/AGENTS.md +0 -193
  28. package/CLAUDE.md +0 -153
  29. /package/{.obsidian → template/.obsidian}/.2ndbrain-manifest.json +0 -0
  30. /package/{.obsidian → template/.obsidian}/app.json +0 -0
  31. /package/{.obsidian → template/.obsidian}/appearance.json +0 -0
  32. /package/{.obsidian → template/.obsidian}/community-plugins.json +0 -0
  33. /package/{.obsidian → template/.obsidian}/core-plugins.json +0 -0
  34. /package/{.obsidian → template/.obsidian}/graph.json +0 -0
  35. /package/{.obsidian → template/.obsidian}/plugins/calendar/data.json +0 -0
  36. /package/{.obsidian → template/.obsidian}/plugins/calendar/main.js +0 -0
  37. /package/{.obsidian → template/.obsidian}/plugins/calendar/manifest.json +0 -0
  38. /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/data.json +0 -0
  39. /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/main.js +0 -0
  40. /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/manifest.json +0 -0
  41. /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/styles.css +0 -0
  42. /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/data.json +0 -0
  43. /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/main.js +0 -0
  44. /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/manifest.json +0 -0
  45. /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/styles.css +0 -0
  46. /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/main.js +0 -0
  47. /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/manifest.json +0 -0
  48. /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/styles.css +0 -0
  49. /package/{.obsidian → template/.obsidian}/types.json +0 -0
  50. /package/{00_Dashboard → template/00_Dashboard}/09_All_Done.md +0 -0
  51. /package/{10_Inbox → template/10_Inbox}/Agents/Journal.md +0 -0
  52. /package/{99_System → template/99_System}/Templates/tpl_member_done.md +0 -0
package/CHANGELOG.md CHANGED
@@ -3,7 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+ and this project uses date-based release versions: `YYYY.M.D`, `YYYY.M.D-beta.N`,
7
+ and `YYYY.M.D-N`.
8
+
9
+ ## [2026.4.5] - 2026-04-05
10
+
11
+ ### Added
12
+ - automate protected-branch release flow (#16)
13
+
14
+ ### Changed
15
+ - split repo docs from shipped template docs (#20)
16
+ - remove obsolete GitHub auto-merge setup script (#19)
17
+ - consolidate shipped vault assets under template directory (#18)
18
+
19
+ ### Fixed
20
+ - publish release tarball from a local path (#15)
21
+
22
+ ## [2026.4.4] - 2026-04-04
23
+
24
+ ### Added
25
+ - add dependency doctor and install guidance to setup script
26
+ - split daily tasks into overdue and due-today views
27
+ - add 2ndbrain Agent Skill + CLI extensions (check, watch)
28
+ - refactor to "notes stay notes, tasks stay tasks, diary is the dashboard"
29
+
30
+ ### Changed
31
+ - add todo refactor design spec
32
+
33
+ ### Fixed
34
+ - pin daily note task query to note date
35
+ - correct file diff summary and add regression tests
7
36
 
8
37
  ## [1.1.3] - 2026-01-18
9
38
 
@@ -64,4 +93,3 @@ A personal knowledge management system CLI tool combining PARA, C-O-R-D, and App
64
93
  ### Removed
65
94
  - Bundled dataview plugin (now community plugin)
66
95
  - README_zh.md (consolidated into README.md)
67
-