:books: 本代码库是作者小傅哥多年从事一线互联网 Java 开发的学习历程技术汇总,旨在为大家提供一个清晰详细的学习教程,侧重点更倾向编写Java核心内容。如果本仓库能为您提供帮助,请给予支持(关注、点赞、分享)!
This report presents the forensic synthetic code analysis of fuzhengwei/CodeGuide, a Shell project with 11,886 GitHub stars. SynthScan v2.0 examined 201,840 lines of code across 1137 source files, recording 202 pattern matches distributed across 9 syntactic categories. The overall adjusted score of 5.0 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 202 distinct pattern matches across 9 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | …p/framework/scheme/2021-07-19-调研字节码插桩技术,用于系统监控设计和实现.md | 638 | ctMethod.insertAfter("{ cn.bugstack.middleware.monitor.probe.Monitor.point(" + idx + ", startNanos, paramete | CODE |
| CRITICAL | …p/framework/scheme/2021-07-19-调研字节码插桩技术,用于系统监控设计和实现.md | 641 | ctMethod.addCatch("{ cn.bugstack.middleware.monitor.probe.Monitor.point(" + idx + ", $e); throw $e; }", Clas | CODE |
| CRITICAL⚡ | …lop/framework/ddd/2019-10-16-DDD专题案例二《领域层决策规则树服务设计》.md | 518 | 2019-10-19 18:22:10.261 INFO 13820 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/tree | CODE |
| CRITICAL⚡ | …lop/framework/ddd/2019-10-16-DDD专题案例二《领域层决策规则树服务设计》.md | 519 | 2019-10-19 18:22:10.263 INFO 13820 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/tree | CODE |
| CRITICAL⚡ | …lop/framework/ddd/2019-10-16-DDD专题案例二《领域层决策规则树服务设计》.md | 520 | 2019-10-19 18:22:10.272 INFO 13820 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" | CODE |
| CRITICAL⚡ | …lop/framework/ddd/2019-10-16-DDD专题案例二《领域层决策规则树服务设计》.md | 521 | 2019-10-19 18:22:10.274 INFO 13820 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],p | CODE |
| CRITICAL | …mework/frame/2019-12-31-架构框架搭建二《Dubbo分布式领域驱动设计架构框体》.md | 483 | 信息: Mapped "{[/api/user/queryUserInfoList],methods=[GET]}" onto public org.itstack.demo.rpc.res.UserRes org.itstack.demo | CODE |
| CRITICAL | …velop/design-pattern/2020-06-02-重学 Java 设计模式《适配器模式》.md | 363 | | org.itstack.demo.design.service.OrderService.queryUserOrderCount(String userId) | 出参long,查询订单数量 | | CODE |
| CRITICAL | …velop/design-pattern/2020-06-02-重学 Java 设计模式《适配器模式》.md | 364 | | org.itstack.demo.design.service.OrderService.POPOrderService.isFirstOrder(String uId) | 出参boolean,判断是否首单 | | CODE |
| CRITICAL | docs/md/road-map/a2a.md | 145 | return new com.google.adk.a2a.executor.AgentExecutor.Builder() | STRING |
| CRITICAL | …/md/java/develop-jvm/2019-05-07-用Java实现JVM第六章《类和对象》.md | 565 | at org.itstack.demo.jvm.rtda.JvmStack.pop(JvmStack.java:33) | CODE |
| CRITICAL | …/md/java/develop-jvm/2019-05-11-用Java实现JVM第十章《异常处理》.md | 1022 | org.itstack.demo.test.HelloWorld.main(HelloWorld.java:9) | CODE |
| CRITICAL | …手册 · 第39篇《MyBatis 缓存机制全解析:一级缓存、二级缓存、清理策略和 Redis 整合》.md | 89 | // org.apache.ibatis.executor.BaseExecutor.createCacheKey() | COMMENT |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 238 | at com.sun.tools.visualvm.core.model.ModelFactory.getModel(ModelFactory.java:76) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 240 | at com.sun.tools.visualvm.application.jvm.JvmFactory.getJVMFor(JvmFactory.java:45) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 241 | at com.sun.tools.visualvm.application.options.Open.openApplication(Open.java:108) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 242 | at com.sun.tools.visualvm.application.options.Open.process(Open.java:93) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 244 | at org.netbeans.api.sendopts.CommandLine.process(CommandLine.java:278) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 245 | at org.netbeans.modules.sendopts.HandlerImpl.execute(HandlerImpl.java:23) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 246 | at org.netbeans.modules.sendopts.Handler.cli(Handler.java:30) | CODE |
| CRITICAL⚡ | …va/interview/2021-01-13-面经手册 · 第26篇《JVM故障处理工具,使用总结》.md | 248 | at org.netbeans.core.startup.CLICoreBridge.cli(CLICoreBridge.java:43) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 312 | at net.sf.cglib.core.internal.LoadingCache.createEntry(LoadingCache.java:79) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 313 | at net.sf.cglib.core.internal.LoadingCache.get(LoadingCache.java:34) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 315 | at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:294) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 316 | at net.sf.cglib.proxy.Enhancer.createHelper(Enhancer.java:480) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 317 | at net.sf.cglib.proxy.Enhancer.createClass(Enhancer.java:337) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 322 | at net.sf.cglib.core.ReflectUtils.defineClass(ReflectUtils.java:467) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 323 | at net.sf.cglib.core.AbstractClassGenerator.generate(AbstractClassGenerator.java:339) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 324 | at net.sf.cglib.proxy.Enhancer.generate(Enhancer.java:492) | CODE |
| CRITICAL⚡ | …JVM内存模型总结,有各版本JDK对比、有元空间OOM监控案例、有Java版虚拟机,综合学习更容易!》.md | 330 | at net.sf.cglib.core.internal.LoadingCache.createEntry(LoadingCache.java:61) | CODE |
| CRITICAL | …08-27-面经手册 · 第7篇《ArrayList也这么多知识?一个指定位置插入就把谢飞机面晕了!》.md | 50 | at org.itstack.interview.test.ApiTest.main(ApiTest.java:13) | CODE |
| CRITICAL | …08-27-面经手册 · 第7篇《ArrayList也这么多知识?一个指定位置插入就把谢飞机面晕了!》.md | 299 | at org.itstack.interview.test.ApiTest.main(ApiTest.java:14) | CODE |
| CRITICAL⚡ | …4.1中级拓展篇六《SpringBoot+Netty+Elasticsearch收集日志信息数据存储》.md | 447 | 2019-08-10 14:14:54.800 INFO 5976 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/localAddr | CODE |
| CRITICAL⚡ | …4.1中级拓展篇六《SpringBoot+Netty+Elasticsearch收集日志信息数据存储》.md | 448 | 2019-08-10 14:14:54.803 INFO 5976 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" | CODE |
| CRITICAL⚡ | …4.1中级拓展篇六《SpringBoot+Netty+Elasticsearch收集日志信息数据存储》.md | 449 | 2019-08-10 14:14:54.804 INFO 5976 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],pr | CODE |
| CRITICAL⚡ | …netty案例,netty4.1中级拓展篇五《基于Netty搭建WebSocket,模仿微信聊天页面》.md | 452 | 2019-08-04 19:45:01.578 INFO 9208 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/index]}" | CODE |
| CRITICAL⚡ | …netty案例,netty4.1中级拓展篇五《基于Netty搭建WebSocket,模仿微信聊天页面》.md | 453 | 2019-08-04 19:45:01.581 INFO 9208 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" | CODE |
| CRITICAL⚡ | …netty案例,netty4.1中级拓展篇五《基于Netty搭建WebSocket,模仿微信聊天页面》.md | 454 | 2019-08-04 19:45:01.582 INFO 9208 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],pr | CODE |
| CRITICAL⚡ | …19-08-16-netty案例,netty4.1中级拓展篇一《Netty与SpringBoot整合》.md | 351 | 2019-08-04 16:39:59.628 INFO 9160 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/nettyserv | CODE |
| CRITICAL⚡ | …19-08-16-netty案例,netty4.1中级拓展篇一《Netty与SpringBoot整合》.md | 352 | 2019-08-04 16:39:59.629 INFO 9160 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/nettyserv | CODE |
| CRITICAL⚡ | …19-08-16-netty案例,netty4.1中级拓展篇一《Netty与SpringBoot整合》.md | 353 | 2019-08-04 16:39:59.631 INFO 9160 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" | CODE |
| CRITICAL⚡ | …19-08-16-netty案例,netty4.1中级拓展篇一《Netty与SpringBoot整合》.md | 354 | 2019-08-04 16:39:59.632 INFO 9160 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],pr | CODE |
| CRITICAL | docs/md/project/chatgpt/sdk/chatglm-sdk-java-v2.md | 458 | .type(ChatCompletionRequest.Prompt.Content.Type.text.getCode()) | CODE |
| CRITICAL | docs/md/project/chatgpt/sdk/chatglm-sdk-java-v2.md | 466 | .type(ChatCompletionRequest.Prompt.Content.Type.image_url.getCode()) | CODE |
| CRITICAL | docs/md/ai/a2a.md | 145 | return new com.google.adk.a2a.executor.AgentExecutor.Builder() | STRING |
| CRITICAL | …-04-27-字节码编程,Javassist篇四《通过字节码插桩监控方法采集运行时入参出参和异常信息》.md | 62 | CtClass ctClass = pool.get(org.itstack.demo.javassist.ApiTest.class.getName()); | CODE |
| CRITICAL | …-04-27-字节码编程,Javassist篇四《通过字节码插桩监控方法采集运行时入参出参和异常信息》.md | 265 | ctMethod.insertAfter("{ org.itstack.demo.javassist.Monitor.point(" + idx + ", startNanos, parameterValues, $_);}", false | CODE |
| CRITICAL | …-04-27-字节码编程,Javassist篇四《通过字节码插桩监控方法采集运行时入参出参和异常信息》.md | 290 | ctMethod.addCatch("{ org.itstack.demo.javassist.Monitor.point(" + idx + ", $e); throw $e; }", ClassPool.getDefault().get | CODE |
| CRITICAL | …t/2019-07-12-基于JavaAgent的全链路监控三《ByteBuddy操作监控方法字节码》.md | 232 | private void org.itstack.demo.test.ApiTest.echoHi() throws java.lang.InterruptedException 方法耗时: 329ms | CODE |
| CRITICAL | …t/2019-07-12-基于JavaAgent的全链路监控三《ByteBuddy操作监控方法字节码》.md | 233 | public static void org.itstack.demo.test.ApiTest.main(java.lang.String[]) throws java.lang.InterruptedException 方法耗时: 32 | CODE |
| CRITICAL | …ring/2021-07-13-第12章:炉火纯青,基于JDK和Cglib动态代理,实现AOP核心功能.md | 565 | 方法名称:public abstract java.lang.String cn.bugstack.springframework.test.bean.IUserService.queryUserInfo() | CODE |
| CRITICAL | …ring/2021-07-13-第12章:炉火纯青,基于JDK和Cglib动态代理,实现AOP核心功能.md | 571 | 方法名称:public java.lang.String cn.bugstack.springframework.test.bean.UserService.register(java.lang.String) | CODE |
| CRITICAL | …op-spring/2021-05-30-第4章:崭露头角,基于Cglib实现含构造函数的类实例化策略.md | 56 | at cn.bugstack.springframework.test.ApiTest.test_newInstance(ApiTest.java:51) | CODE |
| CRITICAL | …ng/develop-spring/2021-08-07-第17章:攻无不克,通过三级缓存解决循环依赖.md | 496 | 关怀小两口(切面):public java.lang.String cn.bugstack.springframework.test.bean.Wife.queryHusband() | CODE |
| CRITICAL | docs/.vuepress/public/js/jquery.min.js | 4 | },cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | docs/README.md | 56 | - [AI Agent 脚手架 + 场景应用(draw.io、手机龙虾)](https://bugstack.cn/md/project/ai-agent-scaffold/ai-agent-scaffold.html) - 综合 | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 40 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-08.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 50 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/ai-agent-scaffold.png" width="200px"/> | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 94 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-02.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 108 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-2/images/ai-agent-scaffold-1-2-01.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 120 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-09.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 130 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-2/images/ai-agent-scaffold-1-2-02.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 142 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-2/2-19/images/ai-agent-scaffold-2-19-02.png | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 150 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-4/images/ai-agent-scaffold-4-4-05.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 207 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-0/images/ai-agent-scaffold-5-0-01.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 218 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-0/images/ai-agent-scaffold-0-0-01.png" widt | CODE |
| MEDIUM | docs/md/zsxq/project/ai-agent-scaffold.md | 292 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | docs/md/zsxq/project/ai-knowledge.md | 6 | # 《AI Agent 拖拉拽 + 动态配置(RAG、MCP、Prompt)》 - 解析文档&Git仓库代码&AI工作流 | COMMENT |
| MEDIUM | docs/md/zsxq/project/ai-knowledge.md | 79 | ### 第1期,RAG 我们做了什么 | COMMENT |
| MEDIUM | docs/md/zsxq/project/ai-knowledge.md | 127 | #### 第1期 RAG Spring AI 0.8.1 - 完结 | COMMENT |
| MEDIUM | docs/md/zsxq/material/student-learn-ai.md | 18 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | docs/md/zsxq/material/student-learn-ai.md | 166 | 项目地址:[https://bugstack.cn/md/project/ai-agent-scaffold/ai-agent-scaffold.html](https://bugstack.cn/md/project/ai-agent-s | CODE |
| MEDIUM | docs/md/zsxq/material/student-learn-ai.md | 171 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-02.png" | CODE |
| MEDIUM | docs/md/zsxq/material/student-learn-ai.md | 183 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-4/images/ai-agent-scaffold-4-4-05.png" | CODE |
| MEDIUM | docs/md/zsxq/material/student-learn-ai.md | 194 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-0/images/ai-agent-scaffold-5-0-01.png" | CODE |
| MEDIUM | docs/md/road-map/ollama.md | 124 | ### 4. 配置知识库 - RAG | COMMENT |
| MEDIUM | docs/md/road-map/ddd-archetype-maven.md | 136 | **源码**:[https://gitcode.net/KnowledgePlanet/road-map/xfg-frame-archetype-lite/-/tree/master/scaffold-lite](https://gitco | CODE |
| MEDIUM | docs/md/road-map/maven-central.md | 409 | **源码**:[https://gitcode.net/KnowledgePlanet/road-map/xfg-frame-archetype-lite/-/tree/master/scaffold-lite](https://gitco | CODE |
| MEDIUM | docs/md/road-map/a2a.md | 48 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-02.pn | CODE |
| MEDIUM | docs/md/road-map/a2a.md | 75 | - 注意:这部分还有一些关于关于 Spring AI + Google ADK 的基础使用知识,是在 ApiTest 中有案例。也可以学习项目 [《AI Agent 脚手架 + 场景应用》](https://bugstack.cn/md/p | CODE |
| MEDIUM | docs/md/road-map/a2a.md | 126 | - 之后,由 Google ADK 构建的智能体,使用内存记忆,创建会话之后进行测试。也可以学习项目 [《AI Agent 脚手架 + 场景应用》](https://bugstack.cn/md/project/ai-agent-scaff | STRING |
| MEDIUM | docs/md/about/job/2026-03-21-古法编程,是否还重要?.md | 95 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-02.png" | CODE |
| MEDIUM | docs/md/product/software/walicode.md | 109 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | …p-gateway/promotion/ai-mcp-gateway-stage-completion.md | 39 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | …i-mcp-gateway/promotion/ai-mcp-gateway-all-complete.md | 33 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 42 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-08.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 52 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/ai-agent-scaffold.png" width="200px"/> | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 96 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-02.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 110 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-2/images/ai-agent-scaffold-1-2-01.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 122 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-09.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 132 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-2/images/ai-agent-scaffold-1-2-02.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 144 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-2/2-19/images/ai-agent-scaffold-2-19-02.png | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 152 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-4/images/ai-agent-scaffold-4-4-05.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 209 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-0/images/ai-agent-scaffold-5-0-01.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 220 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-0/images/ai-agent-scaffold-0-0-01.png" widt | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/ai-agent-scaffold.md | 294 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-1/1-1/images/ai-agent-scaffold-1-1-10.png" | CODE |
| MEDIUM | docs/md/project/ai-agent-scaffold/notes.md | 150 | #### 9. 在 Spring AI 集成中,项目是如何利用 "Skills" 机制来增强 RAG 或替代传统向量检索的? | COMMENT |
| MEDIUM | docs/md/project/ai-agent-scaffold/notes.md | 207 | #### 15. 请解释 RAG(检索增强生成)与 Fine-tuning(微调)的区别及各自适用场景。 | COMMENT |
| MEDIUM | …d/project/ai-agent-scaffold/part-3/第3-1节:Maven脚手架配置.md | 29 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-3/3-1/images/ai-agent-scaffold-3-1-01.png" | CODE |
| MEDIUM | …roject/ai-agent-scaffold/part-3/第3-2节:上传jar到maven仓库.md | 27 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-3/3-2/images/ai-agent-scaffold-3-2-01.png" | CODE |
| MEDIUM | …s/md/project/ai-agent-scaffold/part-3/第3-3节:部署脚手架网页.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-3/3-3/images/ai-agent-scaffold-3-3-01.png" | CODE |
| MEDIUM | …ct/ai-agent-scaffold/part-4/第4-5节:ai-draw-io,云服务器部署.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-5/images/ai-agent-scaffold-4-5-01.png" | CODE |
| MEDIUM | …d/project/ai-agent-scaffold/part-4/第4-3节:智能体API接口对接.md | 23 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-3/images/ai-agent-scaffold-4-3-01.png" | CODE |
| MEDIUM | …t/ai-agent-scaffold/part-4/第4-4节:AI+用户+DrawIO,交互式画图.md | 25 | <img src="http://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-4/images/ai-agent-scaffold-4-4-01.png" w | CODE |
| MEDIUM | …t/ai-agent-scaffold/part-4/第4-2节:在页面嵌入draw.io组件和对话框.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-2/images/ai-agent-scaffold-4-2-01.png" | CODE |
| MEDIUM | …ct/ai-agent-scaffold/part-4/第4-0节:ai + draw.io 产品设计.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-4/4-0/images/ai-agent-scaffold-4-0-01.png" | CODE |
| MEDIUM | …roject/ai-agent-scaffold/part-5/第5-6节:智能体异步响应展示执行过程.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-6/images/ai-agent-scaffold-5-6-01.png" | CODE |
| MEDIUM | …oject/ai-agent-scaffold/part-5/第5-4节:初步通过智能体,操作手机设备.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-4/images/ai-agent-scaffold-5-4-01.png" | CODE |
| MEDIUM | …ent-scaffold/part-5/第5-7节:使用AutoGLM-Phone-9B构建手机智能体.md | 23 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-7/images/ai-agent-scaffold-5-7-01.png" | CODE |
| MEDIUM | …d/project/ai-agent-scaffold/part-5/第5-2节:手机网关动作调度设计.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-2/images/ai-agent-scaffold-5-2-01.png" | CODE |
| MEDIUM | …/md/project/ai-agent-scaffold/part-5/第5-5节:智能体工作流设计.md | 23 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-5/images/ai-agent-scaffold-5-5-01.png" | CODE |
| MEDIUM | …s/md/project/ai-agent-scaffold/part-5/第5-1节:初始化工程搭建.md | 19 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-1/images/ai-agent-scaffold-5-1-00.png" | CODE |
| MEDIUM | …/project/ai-agent-scaffold/part-5/第5-8节:多版本安卓版本策略支持.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-8/images/ai-agent-scaffold-5-8-01.png" | CODE |
| MEDIUM | …ect/ai-agent-scaffold/part-5/第5-3节:服务端网络通信设计(Netty).md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-5/5-3/images/ai-agent-scaffold-5-3-01.png" | CODE |
| MEDIUM | …ect/ai-agent-scaffold/part-2/第2-12节:增强装配-RunnerNode.md | 25 | <img src="https://bugstack.cn/images/article/project/ai-agent-scaffold/part-2/2-12/images/ai-agent-scaffold-2-12-01.png | CODE |
| 56 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | docs/md/road-map/a2a.md | 0 | you are a knowledgeable chess coach who helps chess players train and sharpen their chess skills. | STRING |
| HIGH | …project/ai-agent-scaffold/part-2/第2-16节:fix-多模态能力使用.md | 0 | you are a knowledgeable chess coach who helps chess players train and sharpen their chess skills. | STRING |
| HIGH | docs/md/ai/a2a.md | 0 | you are a knowledgeable chess coach who helps chess players train and sharpen their chess skills. | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | build.sh | 1 | # 先切换到指定的 Node.js 版本 sudo n | COMMENT |
| LOW | docs/md/road-map/mysql.md | 101 | - MySQL 8.0.32 - 可使用 Docker 安装,脚本放到本案例仓库了。 | COMMENT |
| LOW | docs/md/road-map/springcloud-stream.md | 101 | ### 2. yml 配置 | COMMENT |
| LOW | …/java/develop-jvm/2019-05-06-用Java实现JVM第五章《指令集和解释器》.md | 181 | return new DLOAD_3(); | COMMENT |
| LOW | …/java/develop-jvm/2019-05-06-用Java实现JVM第五章《指令集和解释器》.md | 261 | // return fastore | COMMENT |
| LOW | …/java/develop-jvm/2019-05-06-用Java实现JVM第五章《指令集和解释器》.md | 441 | return new LOOKUP_SWITCH(); | COMMENT |
| LOW | …/java/develop-jvm/2019-05-06-用Java实现JVM第五章《指令集和解释器》.md | 461 | // return &PUT_FIELD{} | COMMENT |
| LOW | …/java/develop-jvm/2019-05-06-用Java实现JVM第五章《指令集和解释器》.md | 481 | // return athrow | COMMENT |
| LOW | docs/md/bytecode/asm-document/5.0后向兼容.md | 1 | # 5.0 后向兼容 | COMMENT |
| LOW | …develop-mybatis/2022-05-18-第9章:细化XML语句构建器,完善静态SQL解析.md | 241 | // resultMap="personResultMap" | COMMENT |
| LOW | docs/.vuepress/config.js | 101 | // clientId: 'df8beab2190bec20352a',//注册的Client ID | COMMENT |
| LOW | docs/.vuepress/config.js | 121 | // }, | COMMENT |
| LOW | docs/.vuepress/components/LockArticle.vue | 41 | let $article = this.articleObj(); | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 275 | print(f"Error starting server: {e}") | CODE |
| LOW | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 276 | except Exception as e: | CODE |
| MEDIUM | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 293 | print(f"Error starting server: {e}") | CODE |
| LOW | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 294 | except Exception as e: | CODE |
| MEDIUM | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 269 | def start_server(): | CODE |
| MEDIUM | docs/md/algorithm/model/2023-02-18-gpt2-chitchat.md | 287 | def start_server(): | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | docs/.vuepress/config.js | 856 | function genAlgorithmDataStructures() { | CODE |
| LOW | docs/.vuepress/config.js | 1130 | function genBarSpringDevelopMybatis() { | CODE |
| LOW | docs/.vuepress/config.js | 1201 | function genBarSpringDevelopSpring() { | CODE |
| LOW | docs/.vuepress/config.js | 1295 | function genBarDevelopDesignPattern() { | CODE |
| LOW | docs/.vuepress/config.js | 1754 | function genBarBytecodeAsmJavassistByteBuddy() { | CODE |
| LOW | docs/.vuepress/config.js | 2195 | function getBarProjectSpringBootMiddleware() { | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | …ject/group-buy-market/promotion/group-buy-market-v5.md | 148 | "ES_API_KEY": "your-api-key" | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | docs/md/road-map/mysql.md | 128 | # ------------------------------------------------------------ | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | docs/.vuepress/theme/components/AlgoliaSearchBox.vue | 10 | :placeholder="placeholder" | CODE |