Auto-sync: wiki-ingest 3 sources (2026-04-16)
This commit is contained in:
23
wiki/entities/Airtable.md
Normal file
23
wiki/entities/Airtable.md
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: "Airtable"
|
||||
type: entity
|
||||
tags: [数据库, 在线表格, 库存管理, n8n]
|
||||
sources: []
|
||||
last_updated: 2025-03-06
|
||||
---
|
||||
|
||||
## Definition
|
||||
Airtable 是一个在线关系型数据库+电子表格混合平台,支持 API,可作为 N8N AI Agent 的工具接入,实现库存查询和更新等操作。
|
||||
|
||||
## Core Capabilities
|
||||
- 数据库表格,支持多视图(Grid/Kanban/Calendar/Gallery)
|
||||
- REST API 访问
|
||||
- 可作为 N8N Agent 工具:Agent 通过工具调用查询/更新 Airtable 数据
|
||||
- 典型用例:库存管理系统中作为产品数据库
|
||||
|
||||
## Related Entities
|
||||
- [[n8n]]:工作流平台
|
||||
- [[N8N Workflow]]:工作流构建
|
||||
|
||||
## Related Concepts
|
||||
- [[Memory in AI Agent]]:Airtable 可作为 Agent 存储和查询数据的工具
|
||||
29
wiki/entities/Apache Superset.md
Normal file
29
wiki/entities/Apache Superset.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
title: "Apache Superset"
|
||||
type: entity
|
||||
tags: [bi, 数据可视化, 开源, airbnb]
|
||||
sources: []
|
||||
last_updated: 2025-03-14
|
||||
---
|
||||
|
||||
## Definition
|
||||
Apache Superset 是 Airbnb 开源的企业级 BI 可视化平台,支持 SQL Dataset 定义、40+ 图表类型、Dashboard 设计,支持导入 JSON Dashboard 配置实现一键部署。
|
||||
|
||||
## Core Capabilities
|
||||
- **Dataset**:连接 MySQL/PostgreSQL 等数据库,定义数据模型(可创建 SQL View 预处理 JSON 字段)
|
||||
- **Chart**:40+ 可视化类型(Bar/Line/Scatter/Heatmap/Box Plot/Histogram 等)
|
||||
- **Dashboard**:多 Chart 组合,支持 Filter 交互
|
||||
- **Import/Export**:Dashboard 可导出为 JSON,支持一键导入
|
||||
|
||||
## Key Constraints
|
||||
- JSON 字段无法直接用于图表计算,必须通过 `JSON_EXTRACT` SQL 函数预处理为独立列
|
||||
- 推荐为 JSON 字段创建专用 SQL View(如 [[view_products_cleaned]])
|
||||
|
||||
## Related Entities
|
||||
- [[TikTok Shop]]:数据来源
|
||||
- [[TikTok Products]]:分析对象
|
||||
- [[电商选品分析]]:分析场景
|
||||
- [[Superset Dashboard]]:核心输出物
|
||||
|
||||
## Aliases
|
||||
- Superset = Apache Superset = Superset BI
|
||||
10
wiki/entities/Bloomberg API.md
Normal file
10
wiki/entities/Bloomberg API.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Bloomberg API"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
49
wiki/entities/Clonezilla.md
Normal file
49
wiki/entities/Clonezilla.md
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
title: "Clonezilla"
|
||||
type: entity
|
||||
tags: [backup, disk-imaging, open-source, ubuntu]
|
||||
---
|
||||
|
||||
## Basic Info
|
||||
- **Full Name**: Clonezilla(再生龙)
|
||||
- **Type**: 开源磁盘镜像备份工具
|
||||
- **License**: GPL
|
||||
- **Website**: https://clonezilla.org/
|
||||
|
||||
## Description
|
||||
Clonezilla 是一款开源磁盘克隆和镜像工具,功能等同于企业级 Ghost。支持将整个磁盘备份为镜像文件并存放到 NAS(通过 NFS/SMB)、外置硬盘或 USB 等存储后端。支持 ext4/XFS/BTRFS/NTFS 等多种文件系统。
|
||||
|
||||
## Key Capabilities
|
||||
- **savedisk**:将整个本地磁盘保存为镜像文件
|
||||
- **restoredisk**:将镜像文件还原到磁盘(全盘覆盖)
|
||||
- **partition**:仅备份/还原单个分区
|
||||
- **clone**:磁盘对磁盘直接克隆(无需镜像中转)
|
||||
|
||||
## Workflow
|
||||
1. Rufus 制作 USB 启动盘(Clonezilla live ISO)
|
||||
2. 从 USB 启动,选择 device-image 模式
|
||||
3. 挂载备份目标(NFS/SMB/local_dev)
|
||||
4. 选择 savedisk → 选源磁盘 → 配置压缩参数
|
||||
5. 开始克隆(蓝红色进度条显示传输速度和剩余时间)
|
||||
|
||||
## Supported Storage Backends
|
||||
- NFS(推荐,Linux 兼容性最好)
|
||||
- SMB/CIFS
|
||||
- SSH/SFTP
|
||||
- USB 外置磁盘
|
||||
- 本地目录
|
||||
|
||||
## Compression Options
|
||||
- `-z1p`:高压缩率(节省存储空间)
|
||||
- `-z0`:不压缩(最快)
|
||||
- `-z2p`:更高压缩率(最慢)
|
||||
|
||||
## Related
|
||||
- [[磁盘镜像备份]]:Clonezilla 实现的核心功能
|
||||
- [[灾难恢复]]:Clonezilla restoredisk 实现灾难恢复
|
||||
- [[Rufus]]:Clonezilla USB 启动盘制作工具
|
||||
- [[Synology NAS]]:Clonezilla 备份目标存储
|
||||
|
||||
## Aliases
|
||||
- 再生龙
|
||||
- Clonezilla Live
|
||||
22
wiki/entities/CodeCrafters.md
Normal file
22
wiki/entities/CodeCrafters.md
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
title: "CodeCrafters"
|
||||
type: entity
|
||||
tags: [company, programming, learning, github]
|
||||
---
|
||||
|
||||
## 基本信息
|
||||
- 类型:公司
|
||||
- 领域:编程学习平台
|
||||
- 网站:codecrafters.io
|
||||
|
||||
## 简介
|
||||
CodeCrafters, Inc. 是 build-your-own-x GitHub 仓库的当前维护方,通过在线编程挑战平台提供实践驱动的编程学习体验。
|
||||
|
||||
## 主要贡献
|
||||
- 维护 [[Build-Your-Own-X-从零构建技术栈]] GitHub 仓库,收录 25 个技术领域的分步骤指南
|
||||
- 提供 codecrafters.io 在线平台,在浏览器中完成"从零构建"挑战
|
||||
|
||||
## Aliases
|
||||
- CodeCrafters
|
||||
- CodeCrafters Inc.
|
||||
- codecrafters-io
|
||||
@@ -1,23 +1,61 @@
|
||||
---
|
||||
title: "Coze"
|
||||
type: entity
|
||||
tags: [platform, agent, bytedance]
|
||||
tags: [ai, agent, workflow, coze]
|
||||
---
|
||||
|
||||
## Definition
|
||||
Coze(扣子)是字节跳动推出的 AI Agent 构建平台,支持国内版(coze.cn)和海外版(coze.com)。用户无需编程即可通过可视化方式创建多类型 Agent 和工作流。
|
||||
# Coze
|
||||
|
||||
字节跳动旗下的 AI Agent 开发平台,国内版(coze.cn)和海外版(coze.com)双版本运营。
|
||||
|
||||
## 基本信息
|
||||
- **类型**:AI Agent 开发平台
|
||||
- **运营方**:字节跳动
|
||||
- **网址**:https://www.coze.cn(国内)/ https://www.coze.com(海外)
|
||||
|
||||
## 核心能力
|
||||
|
||||
### Bot(智能体)模式
|
||||
- 基于大语言模型的对话式 AI 应用
|
||||
- 支持插件调用、记忆管理、知识库检索
|
||||
- 适合简单问答和单轮/多轮对话场景
|
||||
|
||||
### Workflow(工作流)模式
|
||||
- 可视化流程编辑器,通过节点串联实现复杂业务
|
||||
- 适合多步骤、复杂逻辑、需要外部工具集成的场景
|
||||
- 支持代码执行、API 调用、LLM 调用、条件分支等
|
||||
|
||||
### 行业解决方案
|
||||
- **金融**:客户分层营销助手、智能客服 Agent、企业预算管理
|
||||
- **教育**:知识库问答、拍照搜视频、组卷出题、知识点掌握评估
|
||||
- **医疗**:医疗分诊助手、影像图片识别、AI 问诊
|
||||
- **电商**:混剪助手、在线换衣、抖音直播间自动回复
|
||||
- **客服**:AI 销售助手、在线客服、教育培训对练
|
||||
|
||||
## 技术集成
|
||||
|
||||
### 内置工具
|
||||
- 表格问答助手(代码版/插件版)
|
||||
- 数据分析项目
|
||||
- 滴滴计费规则解答
|
||||
|
||||
### 外部 AI 工具集成
|
||||
- **GPT-SoVITS**:声音克隆,用于个性化语音交互
|
||||
- **F5-TTS**:开源语音克隆,用于数字人和 AI 客服
|
||||
- **FaceFusion**:人脸融合,用于 AI 证件照和视频生成
|
||||
|
||||
## 与 n8n 的对比
|
||||
|
||||
| 维度 | Coze | n8n |
|
||||
|------|------|-----|
|
||||
| 定位 | AI Agent 开发平台 | 通用工作流自动化 |
|
||||
| 优势 | 中文生态、低代码、预置 Bot/Workflow 模板 | 通用性强、543+ 节点、可自托管 |
|
||||
| 适用场景 | 快速搭建 AI 对话/行业解决方案 | 复杂业务自动化、需要自托管 |
|
||||
|
||||
## 相关文档
|
||||
- [[AI-解决方案专家培训课程]]
|
||||
|
||||
## Aliases
|
||||
- 扣子(国内版)
|
||||
- Coze(海外版)
|
||||
|
||||
## Key Capabilities
|
||||
- Bot 创建:单 Agent 对话型
|
||||
- Workflow:多节点可视化工作流
|
||||
- 插件系统:集成各类 API 和工具
|
||||
- 知识库:RAG 增强问答
|
||||
- 记忆(Memory):对话上下文管理
|
||||
|
||||
## Connections
|
||||
- [[Coze工作流]] ← 核心功能
|
||||
- [[AI解决方案专家培训课程]] ← 应用案例
|
||||
- Coze 中文版
|
||||
- Coze 国际版
|
||||
- 扣子
|
||||
55
wiki/entities/Dan-Koe.md
Normal file
55
wiki/entities/Dan-Koe.md
Normal file
@@ -0,0 +1,55 @@
|
||||
---
|
||||
title: "Dan Koe"
|
||||
type: entity
|
||||
tags: [entrepreneur, content-creator, generalist]
|
||||
---
|
||||
|
||||
# Dan Koe
|
||||
|
||||
独立创业者、内容创作者,TheDankoe 品牌创始人,2 Hour Writer 系统和 Eden 软件开发者。
|
||||
|
||||
## 核心身份
|
||||
- **职业**:多兴趣创业者,通过内容创作和软件产品建立个人品牌
|
||||
- **平台**:https://letters.thedankoe.com/(Newsletter)
|
||||
- **代表产品**:2 Hour Writer(写作系统)、Eden(笔记软件)
|
||||
|
||||
## 核心理念
|
||||
|
||||
### 通才主义(Generalist)
|
||||
- 反对专业化分工导致的人沦为螺丝钉
|
||||
- 主张 Self-education(自学)+ Self-interest(自利)+ Self-sufficiency(自立)三要素
|
||||
- 认为独特视角(Perspective)是最终护城河,AI 无法复制
|
||||
|
||||
### 内容创作方法论
|
||||
- Brand is your story:品牌是你的故事,而非头像和简介
|
||||
- Content is novel perspectives:内容是新颖视角,而非信息堆砌
|
||||
- Systems are the new product:系统经济时代,系统 > 产品
|
||||
|
||||
### 创意密度框架
|
||||
- Performance(受众关注度)× Excitement(个人热情)= Idea Density
|
||||
- 创意博物馆(Idea Museum):ruthless curation of notes/ideas/sources
|
||||
- 3-5 个高密度信息源:老书/精选博客/重量级社交账号
|
||||
|
||||
## 关键作品
|
||||
|
||||
### 2 Hour Writer
|
||||
- 每天 <2 小时写完所有内容(3 posts/day + 1 thread/week + 1 newsletter/week)
|
||||
- 交叉发帖到所有平台(Twitter/LinkedIn/Instagram)
|
||||
- Newsletter 为中心,内容复用分发
|
||||
|
||||
### Eden
|
||||
- 创意博物馆软件(https://eden.so/)
|
||||
- 被评论说"可被 Google Drive/Dropbox 替代",但作为系统具有独特价值
|
||||
|
||||
## 相关概念
|
||||
- [[超级通才]]
|
||||
- [[自教育]]
|
||||
- [[自利]]
|
||||
- [[自立自强]]
|
||||
- [[创意博物馆]]
|
||||
- [[系统经济]]
|
||||
|
||||
## 相关人物
|
||||
- [[Adam Smith]]:引用其对专业化分工的批评
|
||||
- [[Leonardo da Vinci]]:文艺复兴通才典范
|
||||
- [[Jordan Peterson]]:作为通才不追随内容潮流的榜样
|
||||
18
wiki/entities/Daniel-Stefanovic.md
Normal file
18
wiki/entities/Daniel-Stefanovic.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "Daniel Stefanovic"
|
||||
type: entity
|
||||
tags: [person, developer, github]
|
||||
---
|
||||
|
||||
## 基本信息
|
||||
- 类型:个人
|
||||
- 平台:GitHub
|
||||
|
||||
## 简介
|
||||
Daniel Stefanovic 是 [[Build-Your-Own-X-从零构建技术栈]] 项目的创始人,该项目后来由 [[CodeCrafters]] 接手维护。
|
||||
|
||||
## 主要贡献
|
||||
- 创建 build-your-own-x GitHub 仓库,系统性整理各技术领域"从零构建"教程
|
||||
|
||||
## Aliases
|
||||
- danistefanovic
|
||||
10
wiki/entities/Financial Times API.md
Normal file
10
wiki/entities/Financial Times API.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Financial Times API"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
10
wiki/entities/GNews API.md
Normal file
10
wiki/entities/GNews API.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "GNews API"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
26
wiki/entities/Gitea.md
Normal file
26
wiki/entities/Gitea.md
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
id: gitea
|
||||
title: "Gitea"
|
||||
type: entity
|
||||
tags: [Git, 自托管, 版本控制]
|
||||
sources: ["养虾日记3-Obsidian-Gitea持久化笔记系统.md"]
|
||||
last_updated: 2026-04-15
|
||||
---
|
||||
|
||||
## Overview
|
||||
Gitea 是自托管 Git 服务(类似 GitHub/GitLab),提供私有 Git 仓库,内网运行数据不出域。本笔记体系中用于 Obsidian 笔记的版本控制。
|
||||
|
||||
## Key Attributes
|
||||
- 类型:自托管 Git 服务
|
||||
- 部署方式:Docker
|
||||
- 用途:Obsidian 笔记版本管理 + Agent 工作输出持久化
|
||||
|
||||
## Role in System
|
||||
- [[Obsidian]] 笔记通过 Git 插件自动 commit 到 Gitea 仓库
|
||||
- 每次笔记更新对应一个 Git commit,支持任意时间点回溯
|
||||
- Commit message 记录变更来源和内容
|
||||
- 私有内网运行,数据不出域
|
||||
|
||||
## Related Entities
|
||||
- [[Obsidian]]:笔记前端
|
||||
- [[OpenClaw]]:写入接口
|
||||
31
wiki/entities/MariaDB.md
Normal file
31
wiki/entities/MariaDB.md
Normal file
@@ -0,0 +1,31 @@
|
||||
---
|
||||
title: MariaDB
|
||||
type: entity
|
||||
tags: [database, mysql, synology, nas, mariadb]
|
||||
---
|
||||
|
||||
## Overview
|
||||
MariaDB 是 MySQL 的开源分支,Synology NAS Docker 部署的版本为 10.11.6,提供内网(3307端口)和公网(mysql.ishenwei.online:63307)访问能力。
|
||||
|
||||
## Aliases
|
||||
- MariaDB
|
||||
- MySQL(兼容)
|
||||
- MariaDB 10.11
|
||||
|
||||
## Key Characteristics
|
||||
- 版本:10.11.6
|
||||
- 内网端口:3307
|
||||
- 公网端口:63307
|
||||
- 登录方式:socket 本地登录(/run/mysqld/mysqld10.sock)
|
||||
- 远程用户:shenwei@'%'(密码 !Abcde12345)
|
||||
|
||||
## 权限管理要点
|
||||
- 默认只有 root@localhost,不允许远程登录
|
||||
- 创建远程用户需执行:CREATE USER → GRANT ALL PRIVILEGES → FLUSH PRIVILEGES
|
||||
- % host 表示任意 IP 授权
|
||||
|
||||
## Connections
|
||||
- [[MySQL MariaDB 数据库详细信息]] — 详细配置指南
|
||||
- [[Synology NAS]] — 硬件平台(192.168.3.17)
|
||||
- [[Docker]] — 容器化平台
|
||||
- [[Cloudflare]] — 公网域名 mysql.ishenwei.online DNS
|
||||
10
wiki/entities/Mediastack API.md
Normal file
10
wiki/entities/Mediastack API.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Mediastack API"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
26
wiki/entities/Navidrome.md
Normal file
26
wiki/entities/Navidrome.md
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Navidrome
|
||||
type: entity
|
||||
tags: [music, streaming, open-source, docker, synology]
|
||||
---
|
||||
|
||||
## Overview
|
||||
Navidrome 是开源的 Web UI 音乐播放器,兼容 Subsonic API,可作为私有 Spotify 替代品。
|
||||
|
||||
## Aliases
|
||||
- Navidrome
|
||||
|
||||
## Key Characteristics
|
||||
- 平台:跨平台(Docker 部署)
|
||||
- 协议:Subsonic API(兼容众多音乐 App)
|
||||
- 特点:只读挂载音乐目录保护原始文件
|
||||
- 转码:ND_AUTOTRANSCODEDOWNLOAD 自动根据客户端能力转码
|
||||
|
||||
## Use Cases
|
||||
- Synology NAS Docker 部署私有音乐流媒体服务
|
||||
- 替代 Spotify/Apple Music 等商业服务,完全掌控音乐数据
|
||||
|
||||
## Connections
|
||||
- [[用Docker中安装Navidrome]] — 部署指南
|
||||
- [[Synology NAS]] — 硬件平台
|
||||
- [[Docker]] — 容器化平台
|
||||
10
wiki/entities/Opoint.md
Normal file
10
wiki/entities/Opoint.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Opoint"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
10
wiki/entities/The Guardian API.md
Normal file
10
wiki/entities/The Guardian API.md
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "The Guardian API"
|
||||
type: entity
|
||||
tags: [news-api, 数据源]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
新闻 API 提供商。详见 [[News API]] 概念页面。
|
||||
36
wiki/entities/TikTok Shop.md
Normal file
36
wiki/entities/TikTok Shop.md
Normal file
@@ -0,0 +1,36 @@
|
||||
---
|
||||
title: "TikTok Shop"
|
||||
type: entity
|
||||
tags: [电商, tiktok, 字节跳动]
|
||||
sources: []
|
||||
last_updated: 2025-03-14
|
||||
---
|
||||
|
||||
## Definition
|
||||
字节跳动旗下直播电商平台,支持短视频带货和直播带货生态。为 [[电商数据采集]] 重要数据来源。
|
||||
|
||||
## Core Data Fields
|
||||
来自爬取系统的核心字段:
|
||||
- `sold`(销量)
|
||||
- `final_price` / `initial_price` / `discount_percent`(价格体系)
|
||||
- `category`(类目)
|
||||
- `store_name`(店铺名)
|
||||
- `prodct_rating`(JSON:平均评分 + 评分数量)
|
||||
- `timestamp`(抓取时间)
|
||||
- `position`(热度排名)
|
||||
- `videos` / `product_videos`(视频带货数据)
|
||||
|
||||
## 数据分析价值
|
||||
- 爆品发现:基于销量 + 评分 + 折扣多维度筛选
|
||||
- 价格带分析:找出最优价格区间
|
||||
- 类目机会:发现蓝海类目
|
||||
- 店铺监控:跟踪竞争对手表现
|
||||
|
||||
## Related Entities
|
||||
- [[字节跳动]]:母公司
|
||||
- [[TikTok Products]]:核心事实表
|
||||
- [[Apache Superset]]:数据可视化平台
|
||||
- [[电商选品分析]]:分析领域
|
||||
|
||||
## Aliases
|
||||
- TikTok Shop = TikTok电商 = TikTok小店
|
||||
26
wiki/entities/Webz.io.md
Normal file
26
wiki/entities/Webz.io.md
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: "Webz.io"
|
||||
type: entity
|
||||
tags: [news-api, 数据源, 网安, 金融]
|
||||
sources: []
|
||||
last_updated: 2025-03-11
|
||||
---
|
||||
|
||||
## Definition
|
||||
Webz.io 是最全面的新闻 API 提供商,同时覆盖 surface web、deep web 和 dark web 数据源,提供情感分析、主题过滤和地理位置过滤功能。
|
||||
|
||||
## Core Capabilities
|
||||
- 覆盖 surface + deep + dark web 全网数据
|
||||
- 情感分析(sentiment tagging)
|
||||
- 主题/地理/语言多维过滤
|
||||
- 支持可视化与可操作风险监控
|
||||
|
||||
## 适用场景
|
||||
- 金融情报:市场动向新闻分析
|
||||
- 网安风控:威胁情报收集
|
||||
- 舆情监控:品牌媒体覆盖跟踪
|
||||
|
||||
## Related Concepts
|
||||
- [[News API]]:所属类别
|
||||
- [[舆情监控]]:应用场景
|
||||
- [[金融情报]]:应用场景
|
||||
33
wiki/entities/vibe-coding-cn.md
Normal file
33
wiki/entities/vibe-coding-cn.md
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
title: "vibe-coding-cn"
|
||||
type: entity
|
||||
tags: [vibe-coding, AI编程, github, 中文资源]
|
||||
---
|
||||
|
||||
## Basic Info
|
||||
- **Full Name**: vibe-coding-cn
|
||||
- **Type**: GitHub 开源项目
|
||||
- **Repository**: https://github.com/tukuai/vibe-coding-cn
|
||||
- **Language**: 中文
|
||||
|
||||
## Description
|
||||
面向中文开发者的 Vibe Coding 资源库与工作站,汇集全球顶尖 AI 编程资源。涵盖方法论、AI 编程工具链、提示词库和学习路径,帮助开发者系统性掌握 Vibe Coding。
|
||||
|
||||
## Core Contents
|
||||
- **方法论**:Vibe Coding 哲学和准则
|
||||
- **AI 编程资源**:模型推荐、IDE 配置(Cursor + Claude Opus 4.5-xhigh)
|
||||
- **提示词库**:需求澄清/系统架构设计/分步执行/自测全链路脚本,支持 Excel 与 Markdown 互转
|
||||
- **实操流程**:从环境设置到基础游戏开发到 Bug 修复的完整流程
|
||||
|
||||
## Key Formula
|
||||
Vibe Coding = 规划驱动 + 上下文固定 + AI 结对执行
|
||||
|
||||
## Related
|
||||
- [[Vibe Coding]]:vibe-coding-cn 服务的核心主题
|
||||
- [[Cursor]]:推荐首选 IDE
|
||||
- [[规划驱动]]:Vibe Coding 第一原则
|
||||
- [[上下文固定]]:Vibe Coding 第二原则
|
||||
|
||||
## Aliases
|
||||
- vibe-coding-cn 项目
|
||||
- 中文 Vibe Coding 指南
|
||||
32
wiki/entities/庄子.md
Normal file
32
wiki/entities/庄子.md
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
title: "庄子"
|
||||
type: entity
|
||||
tags: [person, philosopher, daoism, warring-states]
|
||||
---
|
||||
|
||||
## 基本信息
|
||||
- 类型:人物
|
||||
- 时代:战国(约前369-前286)
|
||||
- 学派:道家(逍遥派)
|
||||
- 著作:《庄子》(内篇/外篇/杂篇)
|
||||
|
||||
## 简介
|
||||
庄子是道家学派代表人物,与老子并称"老庄"。其哲学核心是"逍遥"——追求精神上的绝对自由,不为外物所累。庄子认为人应顺应自然之道,而非强行干预。
|
||||
|
||||
## 核心思想
|
||||
- 相对主义:一切是非、善恶、美丑均为相对概念
|
||||
- 无为:不为名利所累,顺应自然
|
||||
- 齐物:万物平等,以平等心对待一切
|
||||
|
||||
## 代表命题
|
||||
- "知其不可奈何而安之若命":尽人事后安然接受不可改变之事
|
||||
- "天地与我并生,而万物与我为一":物我合一的逍遥境界
|
||||
|
||||
## 相关概念
|
||||
- [[知其不可奈何而安之若命]]:《人间世》核心命题,困境中的接纳智慧
|
||||
- [[绝处逢生]]:与庄子"无用之用"哲理相通,绝境中看到新可能
|
||||
|
||||
## Aliases
|
||||
- 庄子
|
||||
- 庄周
|
||||
- 南华真人(道教封号)
|
||||
25
wiki/entities/曾国藩.md
Normal file
25
wiki/entities/曾国藩.md
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: "曾国藩"
|
||||
type: entity
|
||||
tags: [person, statesman, qing-dynasty, confucianism]
|
||||
---
|
||||
|
||||
## 基本信息
|
||||
- 类型:人物
|
||||
- 时代:晚清(1811-1872)
|
||||
- 著作:《治心经·诚心篇》
|
||||
|
||||
## 简介
|
||||
曾国藩是晚清重臣、湘军创立者,以"拙诚"和"浑含"为处世原则。在官场倾轧中深谙"忘机"之道,结合道家"无为"与儒家"诚心"形成独特的人生智慧。
|
||||
|
||||
## 核心箴言
|
||||
- "唯忘机可以消众机,唯懵懂可以祓不祥":以无争朴拙应对复杂政治环境
|
||||
- 重视"治心"——通过内心修养而非外在机巧来处理世事
|
||||
|
||||
## 相关概念
|
||||
- [[和光同尘]]:与其处世哲学一致,不锋芒毕露以保全自身
|
||||
- [[大智若愚]]:表面懵懂实为大智慧
|
||||
|
||||
## Aliases
|
||||
- 曾国藩
|
||||
- 涤生(号)
|
||||
24
wiki/entities/王维.md
Normal file
24
wiki/entities/王维.md
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "王维"
|
||||
type: entity
|
||||
tags: [person, poet, tang-dynasty, buddhism]
|
||||
---
|
||||
|
||||
## 基本信息
|
||||
- 类型:人物
|
||||
- 时代:唐代(701-761)
|
||||
- 称号:诗佛
|
||||
|
||||
## 简介
|
||||
王维是唐代著名诗人、画家,苏轼称其"诗中有画,画中有诗"。其诗作充满禅意与佛学智慧,被称为"诗佛"。幼年丧父,仕途多舛,晚年隐居山林,以佛学为空寂淡泊心境的精神根基。
|
||||
|
||||
## 核心作品
|
||||
- 《行到水穷处,坐看云起时》:其人生困境与佛学超脱的代表作,象征"绝处逢生"的东方智慧
|
||||
|
||||
## 相关概念
|
||||
- [[绝处逢生]]:此诗体现的核心东方逆境转化智慧
|
||||
- [[空性智慧]]:王维通过佛学形成对世间虚幻的深刻洞察
|
||||
|
||||
## Aliases
|
||||
- 王维
|
||||
- 诗佛
|
||||
Reference in New Issue
Block a user