vault backup: 2026-04-13 14:04:15

This commit is contained in:
2026-04-13 14:04:15 +08:00
parent 8abf1d814d
commit dffa6d3e65
11 changed files with 90180 additions and 34 deletions

84218
.claudian/main.js Normal file

File diff suppressed because one or more lines are too long

10
.claudian/manifest.json Normal file
View File

@@ -0,0 +1,10 @@
{
"id": "claudian",
"name": "Claudian",
"version": "2.0.2",
"minAppVersion": "1.4.5",
"description": "Embeds Claude Code as an AI collaborator in your vault. Your vault becomes Claude's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.",
"author": "Yishen Tu",
"authorUrl": "https://github.com/YishenTu",
"isDesktopOnly": true
}

5699
.claudian/styles.css Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,5 @@
[
"obsidian-git",
"copilot"
"copilot",
"obsidian42-brat"
]

View File

@@ -24,7 +24,7 @@
"githubCopilotToken": "",
"githubCopilotTokenExpiresAt": 0,
"defaultChainType": "llm_chain",
"defaultModelKey": "google/gemini-2.5-flash|openrouterai",
"defaultModelKey": "gemini-3.1-flash-lite-preview|google",
"embeddingModelKey": "openai/text-embedding-3-small|openrouterai",
"temperature": 0.1,
"maxTokens": 6000,
@@ -79,7 +79,7 @@
{
"name": "gpt-5.4",
"provider": "openai",
"enabled": true,
"enabled": false,
"isBuiltIn": true,
"core": true,
"capabilities": [
@@ -89,7 +89,7 @@
{
"name": "gpt-5-mini",
"provider": "openai",
"enabled": true,
"enabled": false,
"isBuiltIn": true,
"core": true,
"capabilities": [
@@ -99,7 +99,7 @@
{
"name": "claude-sonnet-4-6",
"provider": "anthropic",
"enabled": true,
"enabled": false,
"isBuiltIn": true,
"capabilities": [
"reasoning",
@@ -129,7 +129,7 @@
{
"name": "google/gemini-3-flash-preview",
"provider": "openrouterai",
"enabled": false,
"enabled": true,
"isBuiltIn": true,
"capabilities": [
"reasoning",

View File

@@ -0,0 +1,5 @@
{
"appliedMigrations": [
"tokens-to-secretstorage-v1"
]
}

View File

@@ -0,0 +1,17 @@
{
"pluginList": [],
"pluginSubListFrozenVersion": [],
"themesList": [],
"updateAtStartup": true,
"updateThemesAtStartup": true,
"enableAfterInstall": true,
"loggingEnabled": false,
"loggingPath": "BRAT-log",
"loggingVerboseEnabled": false,
"debuggingMode": false,
"notificationsEnabled": true,
"globalTokenName": "",
"personalAccessToken": "",
"selectLatestPluginVersionByDefault": false,
"allowIncompatiblePlugins": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
{
"id": "obsidian42-brat",
"name": "BRAT",
"version": "2.0.4",
"minAppVersion": "1.11.4",
"description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
"helpUrl": "https://tfthacker.com/BRAT",
"isDesktopOnly": false,
"fundingUrl": {
"Visit my site": "https://tfthacker.com"
}
}

View File

@@ -0,0 +1,152 @@
.brat-modal .modal-button-container {
margin-top: 5px;
}
.brat-modal .disabled-setting {
opacity: 0.5;
}
.brat-modal .disabled-setting:hover {
cursor: not-allowed;
}
/* Input validation styles */
.brat-settings .valid-input,
.brat-modal .valid-repository {
border-color: var(--color-green);
}
.brat-settings .invalid-input,
.brat-modal .invalid-repository {
border-color: var(--color-red);
}
.brat-settings .validation-error,
.brat-modal .validation-error {
border-color: var(--color-orange);
}
/* Version selector */
.brat-version-selector {
width: 100%;
max-width: 400px;
justify-content: left;
}
.brat-token-input {
min-width: 33%;
}
/* Token info container styles */
.brat-token-info {
margin-top: 8px;
font-size: 0.8em;
padding: 8px;
border-radius: 4px;
background-color: var(--background-secondary);
}
/* Token status indicators */
.brat-token-info.valid,
.brat-token-status.valid {
color: var(--color-green);
}
.brat-token-info.invalid,
.brat-token-status.invalid {
color: var(--color-red);
}
.brat-token-info.valid {
border-left: 3px solid var(--color-green);
}
.brat-token-info.invalid {
border-left: 3px solid var(--color-red);
}
/* Token details and status */
.brat-token-status {
margin-bottom: 4px;
}
.brat-token-details {
margin-top: 4px;
color: var(--text-muted);
}
/* Token warnings */
.brat-token-warning {
color: var(--color-orange);
margin-top: 4px;
}
/* Token additional info */
.brat-token-scopes,
.brat-token-rate {
color: var(--text-muted);
margin-top: 2px;
}
/* Flex break utility */
.brat-modal .break {
flex-basis: 100%;
height: 0;
}
/* Validation status */
.brat-modal .validation-status-error {
color: var(--text-error);
}
.brat-modal .validation-status {
margin-top: 0.5em;
margin-bottom: 0.5em;
font-size: 0.8em;
text-align: left;
}
.confirm-modal .ok-button {
margin-right: 10px;
margin-top: 20px;
}
/* Hide filtered plugin items */
.brat-plugin-item[hidden] {
display: none !important;
}
/* Hide filtered theme items */
.brat-theme-item[hidden] {
display: none !important;
}
/* Filter and button layout */
.brat-filter-and-button {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin: 0.75em 0;
}
.brat-filter-input {
max-width: 300px;
padding: 4px 8px;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
background-color: var(--background-secondary);
color: var(--text-normal);
}
.brat-filter-input:focus {
outline: none;
border-color: var(--interactive-accent);
}
.brat-filter-and-button .setting-item {
border: none;
padding: 0;
}
.brat-filter-and-button .setting-item-control {
justify-content: flex-end;
}

View File

@@ -4,37 +4,21 @@
"type": "split",
"children": [
{
"id": "7e294eece6a1c709",
"id": "16cbe974cc222835",
"type": "tabs",
"children": [
{
"id": "b6fe1aace7eb2e2d",
"id": "cf7e5235f498e45d",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "创建链接.md",
"file": "欢迎.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "创建链接"
}
}
]
},
{
"id": "d1b41a49cdfe576f",
"type": "tabs",
"children": [
{
"id": "b63d56c7aa4e8397",
"type": "leaf",
"state": {
"type": "graph",
"state": {},
"icon": "lucide-git-fork",
"title": "关系图谱"
"title": "欢迎"
}
}
]
@@ -196,8 +180,7 @@
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
"width": 300
},
"left-ribbon": {
"hiddenItems": {
@@ -209,19 +192,23 @@
"command-palette:打开命令面板": false,
"bases:新建数据库": false,
"obsidian-git:Open Git source control": false,
"copilot:Open Copilot Chat": false
"copilot:Open Copilot Chat": false,
"obsidian42-brat:BRAT": false
}
},
"active": "b6fe1aace7eb2e2d",
"active": "6a4086577d68c37c",
"lastOpenFiles": [
"New folder",
"copilot/copilot-custom-prompts/Clip Web Page.md",
"copilot/copilot-custom-prompts/Make longer.md",
"创建链接.md",
"欢迎.md",
"copilot/copilot-custom-prompts/Clip YouTube Transcript.md",
"copilot/copilot-custom-prompts/Rewrite as tweet thread.md",
"copilot/copilot-custom-prompts/Rewrite as tweet.md",
"copilot/copilot-custom-prompts/Remove URLs.md",
"copilot/copilot-custom-prompts/Generate glossary.md",
"copilot/copilot-custom-prompts/Generate table of contents.md",
"copilot/copilot-custom-prompts/Make longer.md",
"copilot/copilot-custom-prompts/Make shorter.md",
"copilot/copilot-custom-prompts/Emojify.md",
"copilot/copilot-custom-prompts/Explain like I am 5.md",
@@ -230,8 +217,6 @@
"copilot/copilot-custom-prompts/Translate to Chinese.md",
"copilot/copilot-custom-prompts/Fix grammar and spelling.md",
"copilot/copilot-custom-prompts",
"copilot",
"欢迎.md",
"创建链接.md"
"copilot"
]
}