[pull] main from Snailclimb:main#317
Open
pull[bot] wants to merge 1530 commits into
Open
Conversation
…-1494 Add automated translation tools - Addresses #1494
Fix wording for optimistic locking example
去除CompletableFuture详解中重复的描述
当hashCode不相等,equals相等时,会直接将变量加入当前位置的链表或树结构内,而不是重新散列,只有扩容时会重新散列
修改HashSet在新增元素时的部分情况描述
修正文档中多处文字错误
Update java-basic-questions-02.md 补全对使用不同方法创建String类型对象时的描述
补充ConcurrentHashMap size()方法的分段计数机制详解
- 新建 docs/ai-coding/ 独立目录,与 docs/ai/ 分离 - 新增 AI编程 顶部导航,链接到 /ai-coding/ - 将实战项目移入知识星球菜单下 - 优化知识星球菜单文字描述 - 创建独立的 sidebar/ai-coding.ts 配置
- 将 AI 编程必备 Skills 推荐移至 AI 编程技巧分类 - 移除 codex-chrome-extension 引用(文件不存在) - 更新 README.md 分类结构
- 添加 claudecode-commands.md 文章 - 更新 sidebar 添加文章链接 - 更新 README.md 添加文章介绍和列表
添加《AI 编程选 CLI 还是 IDE?一文帮你彻底搞清楚》文章, 涵盖 Claude Code、Cursor、Kiro、TRAE 等主流工具对比分析。
合并 DeepSeek V4 和降价两篇文章,去除降价相关内容, 整合代码审计、Flyway 集成、多模型协同等实战场景。
添加《大模型结构化输出详解:JSON Schema、Function Calling 与工具调用》 文章,涵盖 Schema 设计、服务端校验、工具分发和安全治理等核心内容。
AI 编程文章已移至独立 /ai-coding/ 目录, 更新 README 中的相对路径引用为专栏链接。
- Remove duplicate headings (already in frontmatter) - Optimize Mermaid diagrams - Add emoji markers (⭐️) to key sections - Format quotes and whitespace
ai-ide.md 中引用 AI 编程模块文章使用了错误的相对路径, 已从 ./xxx.md 修正为 ../ai-coding/xxx.md
将 ai-ide.md 从 llm-basis 目录移至 ai-coding 目录, 更新侧边栏和 README 配置。
骨架层:打破章节对称结构、删除开篇预告和程式化总结
句式层:移除60+处"加粗短语"格式、改写"本质上是"定性句
减少破折号和箭头使用、改用段落叙述
词汇层:替换LLM高频词、加入"说实话""懂的都懂"等口语表达
ReAct实例改为自然段落叙述而非编号列表
加入认知噪声和吐槽(分类别扭、理想化等)
两边均为去 AI 化改动,远程为完整叙事重构版本,本地为增量 修改。以远程版本为准完成合并。 Co-authored-by: Cursor <cursoragent@cursor.com>
- 新增 LazyMermaid.vue 组件并注册为全局 Mermaid 组件 - GlobalUnlock 重构锁样式清理逻辑,修复路由切换时样式残留 - theme.ts 接入 DocSearch 环境变量配置,关闭本地搜索 - package.json 依赖从 plugin-search 替换为 plugin-docsearch Co-authored-by: Cursor <cursoragent@cursor.com>
- agent-basis: 全文改写,补充 Agent 演进时间线与范式对比 - agent-memory: 补充记忆分类体系、Markdown 记忆与向量库选型对比 - context-engineering: 重组上下文工程落地方法论 - harness-engineering: 补充 OpenAI/Anthropic/Stripe 实战案例 - prompt-engineering: 补充原生结构化输出、链式提示等技巧 - skills: 补充 Skill 路由设计与 SKILL.md 写法避坑 - 统一 frontmatter 后空行格式,修复中英文间距与重复段落 Co-authored-by: Cursor <cursoragent@cursor.com>
- mcp: 修复中英文间距(小chunk → 小 chunk),替换英文直引号为中文引号 - workflow-graph-loop: 修正字数描述,替换英文直引号为中文引号 - 删除总结段落中重复出现的冗余句子 Co-authored-by: Cursor <cursoragent@cursor.com>
- LayoutToggle 替换为 DeferredLayoutToggle 延迟挂载 - UnlockContent 改为 defineAsyncComponent 异步加载 - 关闭 print 和 photoSwipe 减少打包体积 - agent-memory.md 修复"长期记忆和 RAG"标题层级跳级 Co-authored-by: Cursor <cursoragent@cursor.com>
- sidebar 新增 rag-document-processing 和 rag-knowledge-update 条目 - AI README 介绍区和文章列表区同步新增 - 根 README 新增 RAG 子章节,与 AI Agent 并列 Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Vite 8 使用 Rolldown 替代 Rollup,对包 exports 子路径通配符解析更严格, 导致 LazyMermaid.vue 中动态 import 的 Mermaid 组件路径无法解析。 通过 resolve.alias 将路径映射到磁盘绝对路径绕过此问题。 Co-authored-by: Cursor <cursoragent@cursor.com>
Rolldown (Vite 8) tries to statically analyze and bundle dynamic imports at build time, failing with UNLOADABLE_DEPENDENCY because it cannot load the plugin's client component via the package exports glob pattern. Adding /* @vite-ignore */ skips build-time bundling and leaves the import to resolve correctly at runtime, matching local dev behavior. Co-authored-by: Cursor <cursoragent@cursor.com>
Remove extra spaces around # in method references like AsyncExecutionInterceptor#invoke(). Both Async.md and async.md were fixed.
Correct the misleading statement that MVCC creates snapshots instead of modifying data rows. InnoDB actually uses update-in-place: it directly updates the current row and saves old versions to Undo Log. Read operations achieve consistent reads via ReadView and Undo Log version chain.
…2851) Combine "框架开发的基础" into "灵活性和动态性" as it's essentially an application of the first point rather than a separate advantage. The original 3 advantages are now consolidated into 2. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )