@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.
- package/CHANGELOG.md +30 -2
- package/README.md +54 -582
- package/README_en.md +108 -0
- package/bin/2ndbrain.js +30 -1
- package/package.json +14 -11
- package/src/commands/check.js +199 -0
- package/src/commands/completion.js +35 -1
- package/src/commands/init.js +7 -4
- package/src/commands/member.js +3 -1
- package/src/commands/update.js +38 -12
- package/src/commands/watch.js +212 -0
- package/src/index.js +4 -0
- package/src/lib/config.js +46 -2
- package/src/lib/files.js +58 -19
- package/{.obsidian → template/.obsidian}/plugins/obsidian-git/obsidian_askpass.sh +0 -0
- package/{00_Dashboard → template/00_Dashboard}/01_All_Tasks.md +17 -15
- package/template/10_Inbox/.gitkeep +0 -0
- package/template/20_Areas/.gitkeep +0 -0
- package/template/30_Projects/.gitkeep +0 -0
- package/template/40_Resources/.gitkeep +0 -0
- package/template/90_Archives/.gitkeep +0 -0
- package/{99_System → template/99_System}/Scripts/init_member.sh +0 -0
- package/template/99_System/Templates/tpl_daily_note.md +30 -0
- package/{99_System → template/99_System}/Templates/tpl_member_tasks.md +11 -5
- package/template/99_System/Templates/tpl_member_todo.md +5 -0
- package/99_System/Templates/tpl_daily_note.md +0 -13
- package/AGENTS.md +0 -193
- package/CLAUDE.md +0 -153
- /package/{.obsidian → template/.obsidian}/.2ndbrain-manifest.json +0 -0
- /package/{.obsidian → template/.obsidian}/app.json +0 -0
- /package/{.obsidian → template/.obsidian}/appearance.json +0 -0
- /package/{.obsidian → template/.obsidian}/community-plugins.json +0 -0
- /package/{.obsidian → template/.obsidian}/core-plugins.json +0 -0
- /package/{.obsidian → template/.obsidian}/graph.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/calendar/data.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/calendar/main.js +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/calendar/manifest.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/data.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/main.js +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/manifest.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-custom-attachment-location/styles.css +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/data.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/main.js +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/manifest.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-git/styles.css +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/main.js +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/manifest.json +0 -0
- /package/{.obsidian → template/.obsidian}/plugins/obsidian-tasks-plugin/styles.css +0 -0
- /package/{.obsidian → template/.obsidian}/types.json +0 -0
- /package/{00_Dashboard → template/00_Dashboard}/09_All_Done.md +0 -0
- /package/{10_Inbox → template/10_Inbox}/Agents/Journal.md +0 -0
- /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
|
|
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
|
-
|