@our2ndbrain/cli 1.1.3
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/.obsidian/.2ndbrain-manifest.json +8 -0
- package/.obsidian/app.json +6 -0
- package/.obsidian/appearance.json +1 -0
- package/.obsidian/community-plugins.json +4 -0
- package/.obsidian/core-plugins.json +33 -0
- package/.obsidian/graph.json +22 -0
- package/.obsidian/plugins/calendar/data.json +10 -0
- package/.obsidian/plugins/calendar/main.js +4459 -0
- package/.obsidian/plugins/calendar/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/data.json +32 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/main.js +575 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/manifest.json +11 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/styles.css +1 -0
- package/.obsidian/plugins/obsidian-git/data.json +62 -0
- package/.obsidian/plugins/obsidian-git/main.js +426 -0
- package/.obsidian/plugins/obsidian-git/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-git/obsidian_askpass.sh +23 -0
- package/.obsidian/plugins/obsidian-git/styles.css +629 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/.obsidian/types.json +28 -0
- package/00_Dashboard/01_All_Tasks.md +118 -0
- package/00_Dashboard/09_All_Done.md +42 -0
- package/10_Inbox/Agents/Journal.md +1 -0
- package/99_System/Scripts/init_member.sh +108 -0
- package/99_System/Templates/tpl_daily_note.md +13 -0
- package/99_System/Templates/tpl_member_done.md +32 -0
- package/99_System/Templates/tpl_member_tasks.md +97 -0
- package/AGENTS.md +193 -0
- package/CHANGELOG.md +67 -0
- package/CLAUDE.md +153 -0
- package/LICENSE +201 -0
- package/README.md +636 -0
- package/bin/2ndbrain.js +117 -0
- package/package.json +56 -0
- package/src/commands/completion.js +198 -0
- package/src/commands/init.js +308 -0
- package/src/commands/member.js +123 -0
- package/src/commands/remove.js +88 -0
- package/src/commands/update.js +507 -0
- package/src/index.js +17 -0
- package/src/lib/config.js +112 -0
- package/src/lib/diff.js +222 -0
- package/src/lib/files.js +340 -0
- package/src/lib/obsidian.js +366 -0
- package/src/lib/prompt.js +182 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attachmentFolderPath": "./assets/${noteFileName}",
|
|
3
|
+
"attachmentRenameMode": "All",
|
|
4
|
+
"collectAttachmentUsedByMultipleNotesMode": "Skip",
|
|
5
|
+
"collectedAttachmentFileName": "",
|
|
6
|
+
"convertImagesToJpegMode": "None",
|
|
7
|
+
"customTokensStr": "",
|
|
8
|
+
"defaultImageSize": "",
|
|
9
|
+
"defaultImageSizeDimension": "width",
|
|
10
|
+
"duplicateNameSeparator": " ",
|
|
11
|
+
"emptyAttachmentFolderBehavior": "DeleteWithEmptyParents",
|
|
12
|
+
"excludePaths": [],
|
|
13
|
+
"excludePathsFromAttachmentCollecting": [],
|
|
14
|
+
"generatedAttachmentFileName": "file-${date:YYYYMMDDHHmmssSSS}",
|
|
15
|
+
"includePaths": [],
|
|
16
|
+
"jpegQuality": 0.8,
|
|
17
|
+
"markdownUrlFormat": "assets/${noteFileName}/${generatedAttachmentFileName}",
|
|
18
|
+
"moveAttachmentToProperFolderUsedByMultipleNotesMode": "CopyAll",
|
|
19
|
+
"renamedAttachmentFileName": "",
|
|
20
|
+
"shouldDeleteOrphanAttachments": false,
|
|
21
|
+
"shouldHandleRenames": true,
|
|
22
|
+
"shouldRenameAttachmentFiles": true,
|
|
23
|
+
"shouldRenameAttachmentFolder": true,
|
|
24
|
+
"shouldRenameCollectedAttachments": false,
|
|
25
|
+
"specialCharacters": "#^[]|*\\<>:?/",
|
|
26
|
+
"specialCharactersReplacement": "-",
|
|
27
|
+
"timeoutInSeconds": 5,
|
|
28
|
+
"treatAsAttachmentExtensions": [
|
|
29
|
+
".excalidraw.md"
|
|
30
|
+
],
|
|
31
|
+
"version": "9.26.0"
|
|
32
|
+
}
|