Merge remote changes with local updates - resolve plugin conflicts
This commit is contained in:
+1
-441
@@ -1,441 +1 @@
|
||||
{
|
||||
"userName": "windy",
|
||||
"enableBlocklist": true,
|
||||
"blockedCommands": {
|
||||
"unix": [
|
||||
"rm -rf",
|
||||
"chmod 777",
|
||||
"chmod -R 777"
|
||||
],
|
||||
"windows": [
|
||||
"del /s /q",
|
||||
"rd /s /q",
|
||||
"rmdir /s /q",
|
||||
"format",
|
||||
"diskpart",
|
||||
"Remove-Item -Recurse -Force",
|
||||
"Remove-Item -Force -Recurse",
|
||||
"Remove-Item -r -fo",
|
||||
"Remove-Item -fo -r",
|
||||
"Remove-Item -Recurse",
|
||||
"Remove-Item -r",
|
||||
"ri -Recurse",
|
||||
"ri -r",
|
||||
"ri -Force",
|
||||
"ri -fo",
|
||||
"rm -r -fo",
|
||||
"rm -Recurse",
|
||||
"rm -Force",
|
||||
"del -Recurse",
|
||||
"del -Force",
|
||||
"erase -Recurse",
|
||||
"erase -Force",
|
||||
"rd -Recurse",
|
||||
"rmdir -Recurse",
|
||||
"Format-Volume",
|
||||
"Clear-Disk",
|
||||
"Initialize-Disk",
|
||||
"Remove-Partition"
|
||||
]
|
||||
},
|
||||
"model": "haiku",
|
||||
"enableAutoTitleGeneration": true,
|
||||
"titleGenerationModel": "",
|
||||
"thinkingBudget": "off",
|
||||
"permissionMode": "normal",
|
||||
"lastNonPlanPermissionMode": "normal",
|
||||
"permissions": [
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p \"03_Resources/Articles\" \"03_Resources/Books\" \"03_Resources/Concepts\" \"03_Resources/People\" \"03_Resources/Tools\" \"03_Resources/Quotes\" \"03_Resources/Examples\" \"03_Resources/Learning\"",
|
||||
"approvedAt": 1767579982085,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p \"06_Metadata/Reference\" \"06_Metadata/Templates\" \"06_Metadata/Agents\" \"06_Metadata/Workflows\" \"06_Metadata/Archive\"",
|
||||
"approvedAt": 1767580054324,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "if [ -f .gitignore ]; then echo \"EXISTS\"; else echo \"NOT_FOUND\"; fi",
|
||||
"approvedAt": 1767587601599,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p 03_Resources/Prompt-Library",
|
||||
"approvedAt": 1767592134447,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "03_Resources/Prompt-Library/Gemini 图片生成提示词模板.md",
|
||||
"approvedAt": 1767592217296,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "03_Resources/Prompt-Library/README.md",
|
||||
"approvedAt": 1767592256349,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mv \"01_Projects/AI-Development/Prompt-Library/baibot-system-prompts.md\" \"03_Resources/Prompt-Library/\" && mv \"01_Projects/AI-Development/Prompt-Library/cycling-training-prompt.md\" \"03_Resources/Prompt-Library/\" && mv \"01_Projects/AI-Development/Prompt-Library/dev-engineering-rules.md\" \"03_Resources/Prompt-Library/\" && mv \"01_Projects/AI-Development/Prompt-Library/movie-review-prompt.md\" \"03_Resources/Prompt-Library/\"",
|
||||
"approvedAt": 1767592881054,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "rmdir \"01_Projects/AI-Development/Prompt-Library\"",
|
||||
"approvedAt": 1767592895883,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": "03_Resources/Prompt-Library/README.md",
|
||||
"approvedAt": 1767592921581,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "03_Resources/Prompt-Library/baibot-system-prompts.md",
|
||||
"approvedAt": 1767593197954,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "python3 << 'EOF'\nimport os\nimport re\n\nchinese_pattern = re.compile(r'[\\u4e00-\\u9fff]+')\nchinese_files = []\n\nfor root, dirs, files in os.walk('.'):\n # 跳过隐藏目录\n dirs[:] = [d for d in dirs if not d.startswith('.')]\n \n for file in files:\n if chinese_pattern.search(file):\n full_path = os.path.join(root, file)\n chinese_files.append(full_path)\n\nfor f in sorted(chinese_files):\n print(f)\nEOF",
|
||||
"approvedAt": 1767593330771,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "python << 'EOF'\nimport os\nimport re\n\nchinese_pattern = re.compile(r'[\\u4e00-\\u9fff]+')\nchinese_files = []\n\nfor root, dirs, files in os.walk('.'):\n # 跳过隐藏目录\n dirs[:] = [d for d in dirs if not d.startswith('.')]\n \n for file in files:\n if chinese_pattern.search(file):\n full_path = os.path.join(root, file)\n chinese_files.append(full_path)\n\nprint(f\"Found {len(chinese_files)} files with Chinese characters:\\n\")\nfor f in sorted(chinese_files):\n print(f)\nEOF",
|
||||
"approvedAt": 1767593392020,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".scripts/scan-vault-para.ps1",
|
||||
"approvedAt": 1767593508230,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".scripts/rename-chinese-to-english.ps1",
|
||||
"approvedAt": 1767593891436,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "powershell -ExecutionPolicy Bypass -File \".\\.scripts\\rename-chinese-to-english.ps1\"",
|
||||
"approvedAt": 1767593905094,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".scripts/rename-chinese-to-english.py",
|
||||
"approvedAt": 1767594043665,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "python .scripts/rename-chinese-to-english.py",
|
||||
"approvedAt": 1767594060348,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": ".scripts/rename-chinese-to-english.py",
|
||||
"approvedAt": 1767594101469,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "python .scripts/rename-chinese-to-english.py --execute",
|
||||
"approvedAt": 1767594252544,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "python .scripts/rename-chinese-to-english.py --execute 2>&1 | grep -E \"^\\[\" | tail -30",
|
||||
"approvedAt": 1767594293947,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "ls 00_Inbox/*.md 2>&1 | head -5",
|
||||
"approvedAt": 1767604467950,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "ls 03_Resources/*.md 2>&1 | head -5",
|
||||
"approvedAt": 1767604961692,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".claude/project-instructions.md",
|
||||
"approvedAt": 1767605314357,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": "2026-01-05.md",
|
||||
"approvedAt": 1767605423829,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "WebFetch",
|
||||
"pattern": "{\"url\":\"https://silentvoid13.github.io/Templater\",\"prompt\":\"提取Templater插件的主要功能、安装方法、基本使用方式和核心语法\"}",
|
||||
"approvedAt": 1767605778052,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templater使用指南.md",
|
||||
"approvedAt": 1767606555612,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p \"06_Metadata/Templates\"",
|
||||
"approvedAt": 1767606562910,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/daily-note.md",
|
||||
"approvedAt": 1767606599739,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/project.md",
|
||||
"approvedAt": 1767606602396,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/meeting.md",
|
||||
"approvedAt": 1767606604749,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/quick-note.md",
|
||||
"approvedAt": 1767606606848,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/book-note.md",
|
||||
"approvedAt": 1767606608965,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templates/person.md",
|
||||
"approvedAt": 1767606610745,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templater配置指南.md",
|
||||
"approvedAt": 1767606650610,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Templater快速参考.md",
|
||||
"approvedAt": 1767606680611,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "cd 06_Metadata && mv \"Templater使用指南.md\" \"Templater-User-Guide.md\" && mv \"Templater配置指南.md\" \"Templater-Setup-Guide.md\" && mv \"Templater快速参考.md\" \"Templater-Quick-Reference.md\"",
|
||||
"approvedAt": 1767606719668,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "ls -lh 06_Metadata/*.md",
|
||||
"approvedAt": 1767606724364,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": "06_Metadata/Templater-Setup-Guide.md",
|
||||
"approvedAt": 1767606758871,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": "06_Metadata/Templater-Quick-Reference.md",
|
||||
"approvedAt": 1767606763446,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "06_Metadata/Obsidian-Plugins-Manual.md",
|
||||
"approvedAt": 1767608585967,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "git remote remove origin 2>&1 || echo \"no origin to remove\"",
|
||||
"approvedAt": 1767616810536,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "pnpm install",
|
||||
"approvedAt": 1767616837185,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p 00_Inbox 01_Projects 02_Areas 03_Resources 04_Archive 05_Attachments/Organized 06_Metadata/Reference 06_Metadata/Plans 06_Metadata/Templates && echo \"Folders created successfully\"",
|
||||
"approvedAt": 1767617713953,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "cat > \"01_Projects/README.md\" << 'EOF'\n# Projects\n\n**Purpose:** Time-bound initiatives with clear completion criteria.\n\n## What is a Project?\n\nA project has:\n- A specific goal or deliverable\n- A clear end date or completion criteria\n- Multiple tasks or actions\n\nExamples: Writing a paper, launching a product, planning an event, learning a new skill\n\n## Recommended Structure\n\nFor each project folder, create:\n- `Research/` - Source materials and references\n- `Drafts/` - Work in progress\n- `Output/` - Final deliverables\n- `README.md` - Project objectives, timeline, and status\n\n## Project Lifecycle\n\n1. **Start:** Create folder with subfolders and README\n2. **During:** Keep all related materials in the project folder\n3. **Complete:** Create summary note, then move to `04_Archive/`\n\n## Tips\n\n- Link to relevant Areas and Resources\n- Commit regularly to track progress with git\n- Review weekly to check status and next actions\nEOF\necho \"Created 01_Projects/README.md\"",
|
||||
"approvedAt": 1767618086311,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "cat > \"04_Archive/README.md\" << 'EOF'\n# Archive\n\n**Purpose:** Completed or inactive items from Projects and Areas.\n\n## What Gets Archived\n\n- **Completed projects** - Move entire project folder here\n- **Inactive areas** - Areas you're no longer maintaining\n- **Old resources** - Outdated reference materials (use sparingly)\n\n## Archive Structure\n\nMaintain the same folder structure:\n- `Projects/` - Completed project folders\n- `Areas/` - Inactive areas\n- `Resources/` - Outdated resources (if needed)\n\n## Before Archiving a Project\n\n1. Create a project summary note with:\n - What was accomplished\n - Key learnings\n - Links to important outputs\n2. Update related Area notes\n3. Move the entire project folder here\n\n## Maintenance\n\n- Review quarterly to see what can be deleted\n- Some archived items may be reactivated\n- Keep the archive organized (mirror active structure)\n\n## Tips\n\n- Don't archive too aggressively - keep valuable reference material\n- Use git history to track when things were archived\n- Archived doesn't mean forgotten - you can still search and reference\nEOF\necho \"Created 04_Archive/README.md\"",
|
||||
"approvedAt": 1767618088747,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "cat > \"05_Attachments/README.md\" << 'EOF'\n# Attachments\n\n**Purpose:** Storage for all non-text files (images, PDFs, videos, audio).\n\n## Organization\n\n- **Root (05_Attachments/)** - Unprocessed attachments\n- **Organized/** - Files that have been properly named and referenced\n\n## Naming Convention\n\nUse descriptive names that indicate the related note:\n- `[RelatedNote]_[Description].[ext]`\n- Example: `ProjectAlpha_Architecture_Diagram.png`\n- Example: `BookNotes_Thinking_Fast_Slow_Cover.jpg`\n\n## Helper Scripts\n\n```bash\npnpm attachments:list # List unprocessed files\npnpm attachments:organized # Count organized files\npnpm attachments:orphans # Find unreferenced files\npnpm attachments:update-links # Update links after moving\n```\n\n## Processing Workflow\n\n1. Files initially land in `05_Attachments/`\n2. Rename with descriptive names\n3. Reference in notes using `![[filename.ext]]`\n4. Move to `Organized/` subfolder\n5. Update any links if paths change\n\n## Tips\n\n- Process attachments regularly (don't let them pile up)\n- Use consistent naming patterns\n- Delete duplicates and unused files\n- Consider using Gemini Vision to analyze images\nEOF\necho \"Created 05_Attachments/README.md\"",
|
||||
"approvedAt": 1767618090058,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "cat package.json | grep -A 30 '\"scripts\"'",
|
||||
"approvedAt": 1767618132102,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "mkdir -p .claude && echo '{\"user\":{\"name\":\"\",\"publicProfile\":false},\"organizationMethod\":\"PARA\",\"primaryUses\":[\"research\",\"writing\",\"project-management\",\"daily-notes\"],\"tools\":{\"geminiVision\":false,\"firecrawl\":true},\"weeklyReview\":true,\"importedAt\":\"2026-01-05\",\"lastUpdated\":\"2026-01-05\"}' > .claude/vault-config.json && cat .claude/vault-config.json",
|
||||
"approvedAt": 1767618135787,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "D:\\tmp\\vault\\my-vault\\CLAUDE.md",
|
||||
"approvedAt": 1767618385844,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "D:\\tmp\\vault\\my-vault\\WEEKLY_REVIEW.md",
|
||||
"approvedAt": 1767618388814,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "test -f \"D:\\tmp\\vault\\my-vault\\.gitignore\" && echo \"exists\" || echo \"not found\"",
|
||||
"approvedAt": 1767618406650,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": "D:\\tmp\\vault\\my-vault\\.gitignore",
|
||||
"approvedAt": 1767618439421,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "pnpm vault:stats",
|
||||
"approvedAt": 1767618580628,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "git add CLAUDE.md WEEKLY_REVIEW.md .gitignore .claude/vault-config.json 01_Projects/README.md 02_Areas/README.md 03_Resources/README.md 04_Archive/README.md 05_Attachments/README.md pnpm-lock.yaml",
|
||||
"approvedAt": 1767618604305,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "git commit -m \"$(cat <<'EOF'\nInitial vault setup with PARA structure\n\n- Created CLAUDE.md configuration file\n- Created WEEKLY_REVIEW.md template\n- Set up PARA folder structure (Projects, Areas, Resources, Archive)\n- Created README files for each main folder\n- Configured .gitignore for vault files\n- Saved vault configuration to .claude/vault-config.json\n\nGenerated with Claude Code\nCo-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>\nEOF\n)\"",
|
||||
"approvedAt": 1767618611184,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".claude/commands/git-commit-msg.md",
|
||||
"approvedAt": 1767619909039,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Edit",
|
||||
"pattern": ".claude/commands/README.md",
|
||||
"approvedAt": 1767619920589,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": ".git-commit-msg-temp.txt",
|
||||
"approvedAt": 1767620317298,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Write",
|
||||
"pattern": "01_Projects/Work/Government-Projects/Municipal-Development-Reform/login.md",
|
||||
"approvedAt": 1767753309725,
|
||||
"scope": "always"
|
||||
},
|
||||
{
|
||||
"toolName": "Bash",
|
||||
"pattern": "git add \"01_Projects/Work/Government-Projects/Municipal-Development-Reform/Server-Credentials.md\" && git commit -m \"Rename: login.md → Server-Credentials.md for better clarity\"",
|
||||
"approvedAt": 1767755418968,
|
||||
"scope": "always"
|
||||
}
|
||||
],
|
||||
"excludedTags": [],
|
||||
"mediaFolder": "",
|
||||
"environmentVariables": "",
|
||||
"envSnippets": [],
|
||||
"systemPrompt": "",
|
||||
"allowedExportPaths": [
|
||||
"~/Desktop",
|
||||
"~/Downloads"
|
||||
],
|
||||
"allowedContextPaths": [],
|
||||
"keyboardNavigation": {
|
||||
"scrollUpKey": "w",
|
||||
"scrollDownKey": "s",
|
||||
"focusInputKey": "i"
|
||||
},
|
||||
"claudeCliPath": "",
|
||||
"hooks": {
|
||||
"SessionStart": [
|
||||
{
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "[ -f FIRST_RUN ] && echo '{\"hookSpecificOutput\":{\"hookEventName\":\"SessionStart\",\"additionalContext\":\"\\n\\n# 🚀 Welcome to Claudesidian!\\n\\n**This appears to be your first time using this vault.**\\n\\n## Quick Start\\n\\nRun the setup wizard:\\n\\n⬇\\n/init-bootstrap\\n⬆\\n\\n## What this will do:\\n\\n✅ Set up your personalized configuration\\n✅ Disconnect from the original repository\\n✅ Help you import any existing Obsidian vault\\n✅ Configure your preferred workflow\\n✅ Create your PARA folder structure\\n\\nThe setup wizard will guide you through everything!\\n\\n\"}}' || true"
|
||||
},
|
||||
{
|
||||
"type": "command",
|
||||
"command": "npm run check-updates --silent 2>/dev/null || true"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
Vendored
+6
-2
@@ -2,16 +2,20 @@
|
||||
"claudian",
|
||||
"obsidian-local-rest-api",
|
||||
"table-editor-obsidian",
|
||||
"obsidian-git",
|
||||
"templater-obsidian",
|
||||
"obsidian-kanban",
|
||||
"obsidian-icon-folder",
|
||||
"omnisearch",
|
||||
"obsidian-advanced-uri",
|
||||
"advanced-canvas",
|
||||
"obsidian-advanced-codeblock",
|
||||
"better-word-count",
|
||||
"better-word-counted",
|
||||
"obsidian-excalidraw-plugin",
|
||||
"obsidian-mind-map",
|
||||
"cm-chs-patch",
|
||||
"quickadd",
|
||||
"highlightr-plugin"
|
||||
"highlightr-plugin",
|
||||
"any-block",
|
||||
"obsidian-opencode"
|
||||
]
|
||||
Vendored
+49908
File diff suppressed because one or more lines are too long
+1169
File diff suppressed because it is too large
Load Diff
Vendored
-523
File diff suppressed because one or more lines are too long
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"id": "mcp-tools",
|
||||
"name": "MCP Tools",
|
||||
"version": "0.2.27",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Securely connect Claude Desktop to your vault with semantic search, templates, and file management capabilities.",
|
||||
"author": "Jack Steam",
|
||||
"authorUrl": "https://github.com/jacksteamdev",
|
||||
"fundingUrl": "https://github.com/sponsors/jacksteamdev",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
-7
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"dailyMemosHeader": "Memos",
|
||||
"memosAPIVersion": "v0.24.0",
|
||||
"memosAPIURL": "https://memos.windy.me",
|
||||
"memosAPIToken": "eyJhbGciOiJIUzI1NiIsImtpZCI6InYxIiwidHlwIjoiSldUIn0.eyJuYW1lIjoiemhpcWlhbmciLCJpc3MiOiJtZW1vcyIsInN1YiI6IjEiLCJhdWQiOlsidXNlci5hY2Nlc3MtdG9rZW4iXSwiaWF0IjoxNzY3NDA0MzY0fQ.SR4a3nn3myQUiPV3tJGLpKs_XgpFaOM_aK0i2CmNGoY",
|
||||
"attachmentFolder": "Attachments"
|
||||
}
|
||||
Vendored
-23420
File diff suppressed because it is too large
Load Diff
-10
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "memos-sync",
|
||||
"name": "Memos Sync",
|
||||
"version": "0.5.2",
|
||||
"minAppVersion": "1.5.12",
|
||||
"description": "Syncing memos from a [Memos](https://github.com/usememos/memos) server to your daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.",
|
||||
"author": "RyoJerryYu",
|
||||
"authorUrl": "https://github.com/RyoJerryYu",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
@@ -0,0 +1,54 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
bun-version: latest
|
||||
|
||||
- name: Cache Bun dependencies
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.bun/install/cache
|
||||
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
|
||||
- name: Cache OpenCode binary
|
||||
id: cache-opencode
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.bun/bin/opencode
|
||||
key: ${{ runner.os }}-opencode-${{ hashFiles('.github/workflows/ci.yml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-opencode-
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install
|
||||
|
||||
- name: Install OpenCode CLI
|
||||
if: steps.cache-opencode.outputs.cache-hit != 'true'
|
||||
run: bun install -g opencode-ai
|
||||
|
||||
- name: Verify OpenCode installation
|
||||
run: opencode --version
|
||||
|
||||
- name: Type check
|
||||
run: bun run tsc -noEmit -skipLibCheck
|
||||
|
||||
- name: Build plugin
|
||||
run: bun run build
|
||||
|
||||
- name: Run tests
|
||||
run: bun test
|
||||
@@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
data.json
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
description: Implement an approved OpenSpec change and keep tasks in sync.
|
||||
---
|
||||
The user has requested to implement the following change proposal. Find the change proposal and follow the instructions below. If you're not sure or if ambiguous, ask for clarification from the user.
|
||||
<UserRequest>
|
||||
$ARGUMENTS
|
||||
</UserRequest>
|
||||
<!-- OPENSPEC:START -->
|
||||
**Guardrails**
|
||||
- Favor straightforward, minimal implementations first and add complexity only when it is requested or clearly required.
|
||||
- Keep changes tightly scoped to the requested outcome.
|
||||
- Refer to `openspec/AGENTS.md` (located inside the `openspec/` directory—run `ls openspec` or `openspec update` if you don't see it) if you need additional OpenSpec conventions or clarifications.
|
||||
|
||||
**Steps**
|
||||
Track these steps as TODOs and complete them one by one.
|
||||
1. Read `changes/<id>/proposal.md`, `design.md` (if present), and `tasks.md` to confirm scope and acceptance criteria.
|
||||
2. Work through tasks sequentially, keeping edits minimal and focused on the requested change.
|
||||
3. Confirm completion before updating statuses—make sure every item in `tasks.md` is finished.
|
||||
4. Update the checklist after all work is done so each task is marked `- [x]` and reflects reality.
|
||||
5. Reference `openspec list` or `openspec show <item>` when additional context is required.
|
||||
|
||||
**Reference**
|
||||
- Use `openspec show <id> --json --deltas-only` if you need additional context from the proposal while implementing.
|
||||
<!-- OPENSPEC:END -->
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
description: Archive a deployed OpenSpec change and update specs.
|
||||
---
|
||||
<ChangeId>
|
||||
$ARGUMENTS
|
||||
</ChangeId>
|
||||
<!-- OPENSPEC:START -->
|
||||
**Guardrails**
|
||||
- Favor straightforward, minimal implementations first and add complexity only when it is requested or clearly required.
|
||||
- Keep changes tightly scoped to the requested outcome.
|
||||
- Refer to `openspec/AGENTS.md` (located inside the `openspec/` directory—run `ls openspec` or `openspec update` if you don't see it) if you need additional OpenSpec conventions or clarifications.
|
||||
|
||||
**Steps**
|
||||
1. Determine the change ID to archive:
|
||||
- If this prompt already includes a specific change ID (for example inside a `<ChangeId>` block populated by slash-command arguments), use that value after trimming whitespace.
|
||||
- If the conversation references a change loosely (for example by title or summary), run `openspec list` to surface likely IDs, share the relevant candidates, and confirm which one the user intends.
|
||||
- Otherwise, review the conversation, run `openspec list`, and ask the user which change to archive; wait for a confirmed change ID before proceeding.
|
||||
- If you still cannot identify a single change ID, stop and tell the user you cannot archive anything yet.
|
||||
2. Validate the change ID by running `openspec list` (or `openspec show <id>`) and stop if the change is missing, already archived, or otherwise not ready to archive.
|
||||
3. Run `openspec archive <id> --yes` so the CLI moves the change and applies spec updates without prompts (use `--skip-specs` only for tooling-only work).
|
||||
4. Review the command output to confirm the target specs were updated and the change landed in `changes/archive/`.
|
||||
5. Validate with `openspec validate --strict` and inspect with `openspec show <id>` if anything looks off.
|
||||
|
||||
**Reference**
|
||||
- Use `openspec list` to confirm change IDs before archiving.
|
||||
- Inspect refreshed specs with `openspec list --specs` and address any validation issues before handing off.
|
||||
<!-- OPENSPEC:END -->
|
||||
@@ -0,0 +1,29 @@
|
||||
---
|
||||
description: Scaffold a new OpenSpec change and validate strictly.
|
||||
---
|
||||
The user has requested the following change proposal. Use the openspec instructions to create their change proposal.
|
||||
<UserRequest>
|
||||
$ARGUMENTS
|
||||
</UserRequest>
|
||||
<!-- OPENSPEC:START -->
|
||||
**Guardrails**
|
||||
- Favor straightforward, minimal implementations first and add complexity only when it is requested or clearly required.
|
||||
- Keep changes tightly scoped to the requested outcome.
|
||||
- Refer to `openspec/AGENTS.md` (located inside the `openspec/` directory—run `ls openspec` or `openspec update` if you don't see it) if you need additional OpenSpec conventions or clarifications.
|
||||
- Identify any vague or ambiguous details and ask the necessary follow-up questions before editing files.
|
||||
- Do not write any code during the proposal stage. Only create design documents (proposal.md, tasks.md, design.md, and spec deltas). Implementation happens in the apply stage after approval.
|
||||
|
||||
**Steps**
|
||||
1. Review `openspec/project.md`, run `openspec list` and `openspec list --specs`, and inspect related code or docs (e.g., via `rg`/`ls`) to ground the proposal in current behaviour; note any gaps that require clarification.
|
||||
2. Choose a unique verb-led `change-id` and scaffold `proposal.md`, `tasks.md`, and `design.md` (when needed) under `openspec/changes/<id>/`.
|
||||
3. Map the change into concrete capabilities or requirements, breaking multi-scope efforts into distinct spec deltas with clear relationships and sequencing.
|
||||
4. Capture architectural reasoning in `design.md` when the solution spans multiple systems, introduces new patterns, or demands trade-off discussion before committing to specs.
|
||||
5. Draft spec deltas in `changes/<id>/specs/<capability>/spec.md` (one folder per capability) using `## ADDED|MODIFIED|REMOVED Requirements` with at least one `#### Scenario:` per requirement and cross-reference related capabilities when relevant.
|
||||
6. Draft `tasks.md` as an ordered list of small, verifiable work items that deliver user-visible progress, include validation (tests, tooling), and highlight dependencies or parallelizable work.
|
||||
7. Validate with `openspec validate <id> --strict` and resolve every issue before sharing the proposal.
|
||||
|
||||
**Reference**
|
||||
- Use `openspec show <id> --json --deltas-only` or `openspec show <spec> --type spec` to inspect details when validation fails.
|
||||
- Search existing requirements with `rg -n "Requirement:|Scenario:" openspec/specs` before writing new ones.
|
||||
- Explore the codebase with `rg <keyword>`, `ls`, or direct file reads so proposals align with current implementation realities.
|
||||
<!-- OPENSPEC:END -->
|
||||
@@ -0,0 +1,49 @@
|
||||
# {{date:YYYY-MM-DD}}
|
||||
|
||||
## Capture
|
||||
<!-- Quick thoughts, links, ideas throughout the day -->
|
||||
苹果美国 ID 地址:
|
||||
|
||||
街道 :
|
||||
```
|
||||
42016 Judy Ridge
|
||||
```
|
||||
|
||||
|
||||
城市:
|
||||
```
|
||||
Arlington
|
||||
```
|
||||
|
||||
州:
|
||||
OR
|
||||
|
||||
邮编:
|
||||
```
|
||||
97522
|
||||
```
|
||||
|
||||
电话:
|
||||
```
|
||||
286-382-5866 x0060
|
||||
```
|
||||
|
||||
|
||||
## Questions
|
||||
<!-- What am I curious about today? -->
|
||||
-
|
||||
|
||||
## Insights
|
||||
<!-- What did I learn or realize? -->
|
||||
-
|
||||
|
||||
## Connections
|
||||
<!-- Links to other notes or ideas -->
|
||||
-
|
||||
|
||||
## For Tomorrow
|
||||
<!-- What needs follow-up? -->
|
||||
-
|
||||
|
||||
---
|
||||
*End of day: Ask Claude Code to review and find connections*
|
||||
@@ -0,0 +1,124 @@
|
||||
---
|
||||
title: "Welcome to LessWrong! — LessWrong"
|
||||
source: "https://www.lesswrong.com/posts/bJ2haLkcGeLtTWaD5/welcome-to-lesswrong"
|
||||
author:
|
||||
- "[[Ruby]]"
|
||||
published: 2019-06-15
|
||||
created: 2026-01-16
|
||||
description: "The road to wisdom? Well, it's plainand simple to express: • Errand errand err againbut lessand lessand less. • – Piet Hein …"
|
||||
tags:
|
||||
- "clippings"
|
||||
- "webclipper"
|
||||
---
|
||||
> [!info] Source
|
||||
> URL: https://www.lesswrong.com/posts/bJ2haLkcGeLtTWaD5/welcome-to-lesswrong
|
||||
> Title: Welcome to LessWrong! — LessWrong
|
||||
> Clipped:
|
||||
|
||||
| *The road to wisdom? Well, it's plain 通往智慧的道路?好吧,它显而易见* *and simple to express: 且易于表达:* *Err 犯错* *and err 以及犯错的智慧* *and err again 并再次犯错* *but **less** 但更少* *and **less** 越来越少* *and **less**.越少越好* – Piet Hein – 彼得·海恩 |
|
||||
| --- |
|
||||
|
||||
LessWrong is an online forum and community dedicated to improving human reasoning and decision-making. We seek to hold true beliefs and to be effective at accomplishing our goals. Each day, we aim to be less wrong about the world than the day before.
|
||||
LessWrong 是一个致力于提升人类推理与决策能力的在线论坛和社区。我们力求持有正确的信念,并高效实现目标。每一天,我们都努力让自己对世界的认识比前一天更少错误。
|
||||
|
||||
*See also our* [*New User's Guide*](https://www.lesswrong.com/posts/LbbrnRvc9QwjJeics/new-user-s-guide-to-lesswrong)
|
||||
也可参见我们的新用户指南*.*
|
||||
|
||||
## Training Rationality 训练理性
|
||||
|
||||
Rationality has a number of definitions [^1] on LessWrong, but perhaps the most canonical is that the more rational you are, the more likely your reasoning leads you to have accurate beliefs, and by extension, allows you to make decisions that most effectively advance your goals.
|
||||
在 LessWrong 上,理性有多种定义 <sup><span><a href="https://www.lesswrong.com/posts/bJ2haLkcGeLtTWaD5/#fnajdy57uko9d">[1]</a></span></sup> ,但或许最经典的诠释是:你的理性程度越高,你的推理过程就越有可能助你获得准确的信念,进而让你能够做出最有效推动目标达成的决策。
|
||||
|
||||
LessWrong contains a lot of content on this topic. How minds work (both human, artificial, and theoretical ideal), how to reason better, and how to have discussions that are productive. We're very big fans of [Bayes Theorem](https://www.lesswrong.com/w/bayes_rule?l=1zq) and other theories of normatively correct reasoning [^2].
|
||||
LessWrong 包含大量关于此主题的内容,涉及心智如何运作(包括人类心智、人工心智以及理论上的理想心智)、如何更好地推理,以及如何进行富有成效的讨论。我们非常推崇贝叶斯定理和其他规范性正确推理理论。
|
||||
|
||||
To get started improving your Rationality, we recommend reading the background-knowledge text of LessWrong, [Rationality: A-Z](https://www.lesswrong.com/rationality) (aka "The Sequences") or at least [selected highlights](https://www.lesswrong.com/highlights) from it. After that, looking through the Rationality section of the [Concepts Portal](https://www.lesswrong.com/concepts) is a good thing to do.
|
||||
要开始提升你的理性思维,我们建议先阅读 LessWrong 的背景知识文本《理性:从 A 到 Z》(又称“The Sequences”),或者至少阅读其中的精选亮点部分。之后,浏览概念门户的理性部分是很好的下一步。
|
||||
|
||||
## Applying Rationality 运用理性
|
||||
|
||||
You might value Rationality for its own sake, however, many people want to be better reasoners so they can have more accurate beliefs about topics they care about, and make better decisions.
|
||||
您可能因理性本身的价值而珍视它,然而,许多人希望成为更出色的推理者,以便能在他们关心的话题上拥有更准确的信念,并做出更明智的决策。
|
||||
|
||||
Using LessWrong-style reasoning, contributors to LessWrong have written essays on an immense variety of topics on LessWrong, each time approaching the topic with a desire to know what's actually true (not just what's convenient or pleasant to believe), being deliberate about processing the evidence, and avoiding common pitfalls of human reason.
|
||||
在 LessWrong,投稿者运用 LessWrong 风格的推理,针对极其多样的主题撰写了大量文章。每一次探讨主题时,他们都怀有探究真实(而非仅仅相信便捷或令人愉悦的观点)的渴望,审慎地处理证据,并避开人类推理中常见的陷阱。
|
||||
|
||||
Check out the [Concepts Portal](https://www.lesswrong.com/concepts) to find essays on topics such as [artificial intelligence](https://www.lesswrong.com/w/ai), [history](https://www.lesswrong.com/w/history), [philosophy of science](https://www.lesswrong.com/w/practice-and-philosophy-of-science), [language](https://www.lesswrong.com/w/philosophy-of-language), [psychology](https://www.lesswrong.com/w/psychology), [biology](https://www.lesswrong.com/w/biology), [morality](https://www.lesswrong.com/w/ethics-and-morality), [culture](https://www.lesswrong.com/w/social-and-cultural-dynamics), [self-care](https://www.lesswrong.com/w/well-being), [economics](https://www.lesswrong.com/w/economics), [game theory](https://www.lesswrong.com/w/game-theory), [productivity](https://www.lesswrong.com/w/productivity), [art](https://www.lesswrong.com/w/art), [nutrition](https://www.lesswrong.com/w/nutrition), [relationships](https://www.lesswrong.com/w/relationships-interpersonal) and hundreds of other topics broad and narrow.
|
||||
查阅概念门户,探索人工智能、历史、科学哲学、语言、心理学、生物学、道德、文化、自我关怀、经济学、博弈论、生产力、艺术、营养、人际关系以及数百种主题广泛或专精的文章。
|
||||
|
||||
## LessWrong and Artificial Intelligence"少错"社区与人工智能
|
||||
|
||||
For several reasons, LessWrong is a website and community with a strong interest in AI and specifically causing powerful AI systems to be safe and beneficial.
|
||||
出于多种原因,LessWrong 作为一个网站及社群,对人工智能领域抱有浓厚兴趣,尤其关注如何确保强大的人工智能系统安全且有益。
|
||||
|
||||
- AI is a field concerned with how minds and intelligence works, overlapping a lot with rationality.
|
||||
人工智能这一领域探讨意识与智能的运行机制,与理性思维研究存在大量交集。
|
||||
- Historically, LessWrong was seeded by the writings of Eliezer Yudkowsky, an artificial intelligence researcher.
|
||||
回溯历史,LessWrong 最初源自人工智能研究者埃利泽·尤德考斯基的系列著作。
|
||||
- Many members of the LessWrong community are heavily motivated by trying to improve the world as much as possible, and these people were convinced many years ago that AI was a very big deal for the future of humanity. Since then LessWrong has hosted a lot of discussion of AI Alignment/AI Safety, and that's only accelerated recently with further AI capabilities developments.
|
||||
LessWrong 社区中的许多成员都深受改善世界的强烈动机驱动,这些人多年前就已确信人工智能将对人类的未来产生深远影响。自那时起,LessWrong 便承载了大量关于人工智能对齐与安全性的讨论,而随着近期人工智能能力的进一步发展,这一讨论趋势正在加速。
|
||||
- LessWrong is also integrated with the [Alignment Forum](https://www.alignmentforum.org/about)
|
||||
LessWrong 还与 Alignment Forum 紧密集成。
|
||||
- The LessWrong team who maintain and develop the site are predominantly motivated by trying to cause powerful AI outcomes to be good.
|
||||
维护和开发此网站的 LessWrong 团队,主要动力源于努力促使强大的人工智能带来积极成果。
|
||||
|
||||
If you want to see more or less AI content, you can adjust your Frontpage Tag Filters according to taste [^3].
|
||||
若您希望调整人工智能相关内容的显示频率,可根据个人喜好通过首页标签筛选功能进行设置 <sup><span><a href="https://www.lesswrong.com/posts/bJ2haLkcGeLtTWaD5/#fnq85givw8h9">[3]</a></span></sup> 。
|
||||
|
||||
## Getting Started on LessWrong开启 LessWrong 之旅
|
||||
|
||||
The [New User's Guide](https://www.lesswrong.com/posts/LbbrnRvc9QwjJeics/new-user-s-guide-to-lesswrong) is a great place to start.
|
||||
《新手指南》是极佳的入门起点。
|
||||
|
||||
The core background text of LessWrong is the collection of essays, [Rationality: A-Z](https://www.lesswrong.com/rationality) (aka "The Sequences"). Reading these will help you understand the mindset and philosophy that defines the site. Those looking for a quick introduction can start with [The Sequences Highlights](https://www.lesswrong.com/highlights)
|
||||
LessWrong 的核心背景文本是文集《理性:从 A 到 Z》(亦称“序列系列”)。阅读这些文章将帮助您理解定义本网站思维方式与哲学理念。寻求快速入门者可先阅读《序列精选》
|
||||
|
||||
Other top writings include [The Codex](https://www.lesswrong.com/codex) (writings by Scott Alexander) and [Harry Potter & The Methods of Rationality](https://www.lesswrong.com/hpmor). Also see the [Library Page](https://www.lesswrong.com/library) for many curated collections of posts and the [Concepts Portal.](https://www.lesswrong.com/concepts)
|
||||
其他重要作品包括《秘典集》(斯科特·亚历山大文集)与《哈利波特与理性之道》。您亦可通过文库页查阅众多精选文章合集,或浏览概念门户获取系统知识。
|
||||
|
||||
Also, feel free to introduce yourself in the monthly [open and welcome thread](https://www.lesswrong.com/w/open-threads?sortedBy=new)!
|
||||
也欢迎你随时在每月开放欢迎贴中自我介绍!
|
||||
|
||||
Lastly, we do recommend that new contributors (posters or commenters) take time to familiarize themselves with the sites norms and culture to maximize the chances that your contributions are well-received.
|
||||
最后,我们确实建议新贡献者(无论是发布文章还是评论)花时间熟悉本站的规范和文化,这样能最大限度地让你的贡献受到欢迎。
|
||||
|
||||
Thanks for your interest!
|
||||
感谢你的关注!
|
||||
|
||||
\- The LW Team
|
||||
\- LW 团队
|
||||
|
||||
- [**LessWrong FAQ LessWrong 常见问题**](https://www.lesswrong.com/posts/2rWKkWuPrgTMpLRbp/lesswrong-faq)
|
||||
- [**A Brief History of LessWrong
|
||||
LessWrong 简史**](https://www.lesswrong.com/posts/S69ogAGXcc9EQjpcZ/a-brief-history-of-lesswrong)
|
||||
- [**Team 团队**](https://www.lesswrong.com/posts/aG74jJkiPccqdkK3c/the-lesswrong-team-page-under-construction)
|
||||
- [**LessWrong Concepts LessWrong 概念**](https://www.lesswrong.com/concepts)
|
||||
|
||||
x
|
||||
|
||||
[^1]: Definitions of Rationality as used on LessWrong include:
|
||||
LessWrong 中使用的理性定义包括:
|
||||
|
||||
\- Rationality is thinking in ways that systematically arrive at truth.
|
||||
\- 理性是系统性地抵达真理的思维方式。
|
||||
|
||||
\- Rationality is thinking in ways that cause you to systematically achieve your goals.
|
||||
\- 理性是系统性地帮助你达成目标的思维方式。
|
||||
|
||||
\- Rationality is trying to do better on purpose.
|
||||
\- 理性意味着要有意为之,力求做得更好。
|
||||
|
||||
\- Rationality is reasoning well even in the face of massive uncertainty.
|
||||
\- 理性意味着即便面对巨大的不确定性,仍能进行良好的推理。
|
||||
|
||||
\- Rationality is making good decisions even when it’s hard.
|
||||
\- 理性意味着即便在艰难时刻,也能做出明智的决策。
|
||||
|
||||
\-Rationality is being self-aware, understanding how your own mind works, and applying this knowledge to thinking better.
|
||||
\- 理性意味着保持自我觉察,理解自身心智的运作方式,并运用这些知识来更好地思考。
|
||||
|
||||
[^2]: There are in fact laws of thought no less ironclad than the law of physics \[[source](https://www.lesswrong.com/posts/QkX2bAkwG2EpGvNug/the-second-law-of-thermodynamics-and-engines-of-cognition)\].
|
||||
事实上,思维的法则与物理定律同样牢不可破【来源】。
|
||||
|
||||
[^3]: Hover your mouse over the tags to be able to adjust their weighting in your Latest Posts feed.
|
||||
将鼠标悬停在标签上,即可在“最新帖子”动态中调整其权重。
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
---
|
||||
tags:
|
||||
- 火山引擎
|
||||
- 云计算
|
||||
- ByteDance
|
||||
- AI-ML
|
||||
- 开发资源
|
||||
- API
|
||||
---
|
||||
|
||||
Coding key:
|
||||
```
|
||||
478d5a21-7166-491d-8bca-2ea9bac8b4fb
|
||||
```
|
||||
@@ -1 +0,0 @@
|
||||
模板名
|
||||
Reference in New Issue
Block a user