feihong-code 7.2.0 → 7.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (249) hide show
  1. package/.github/workflows/ci.yml +180 -140
  2. package/.github/workflows/release.yml +200 -173
  3. package/CHANGELOG.md +94 -115
  4. package/README.md +609 -586
  5. package/dist/agent/completion-engine.js +76 -45
  6. package/dist/agent/completion-engine.js.map +1 -1
  7. package/dist/agent/completion-postprocess.js +109 -0
  8. package/dist/agent/completion-postprocess.js.map +1 -0
  9. package/dist/agent/context-budget.js +121 -0
  10. package/dist/agent/context-budget.js.map +1 -0
  11. package/dist/agent/context-compactor.js +47 -0
  12. package/dist/agent/context-compactor.js.map +1 -1
  13. package/dist/agent/custom-agent.js +52 -52
  14. package/dist/agent/design-to-code.js +40 -40
  15. package/dist/agent/lint.js +121 -0
  16. package/dist/agent/lint.js.map +1 -0
  17. package/dist/agent/multi-agent.js +44 -44
  18. package/dist/agent/orchestrator.js +20 -20
  19. package/dist/agent/prompts.js +54 -54
  20. package/dist/agent/self-correction.js +24 -24
  21. package/dist/agent/self-heal.js +27 -27
  22. package/dist/cli/commands.js +9 -0
  23. package/dist/cli/commands.js.map +1 -1
  24. package/dist/cli/index.js +9 -0
  25. package/dist/cli/index.js.map +1 -1
  26. package/dist/cli/multi-pane-tui.js +217 -0
  27. package/dist/cli/multi-pane-tui.js.map +1 -0
  28. package/dist/cli/run.js +129 -40
  29. package/dist/cli/run.js.map +1 -1
  30. package/dist/cli/tui-run.js +79 -0
  31. package/dist/cli/tui-run.js.map +1 -0
  32. package/dist/cli/tui.js.map +1 -1
  33. package/dist/cli/version.js +1 -1
  34. package/dist/lsp/lsp-client.js +183 -0
  35. package/dist/lsp/lsp-client.js.map +1 -0
  36. package/dist/lsp/lsp-service.js +159 -0
  37. package/dist/lsp/lsp-service.js.map +1 -0
  38. package/dist/plugins/manager.js +50 -2
  39. package/dist/plugins/manager.js.map +1 -1
  40. package/dist/shared/i18n.js +108 -100
  41. package/dist/shared/i18n.js.map +1 -1
  42. package/dist/tools/generator/code-generator.js +40 -40
  43. package/dist/tools/generator/test-generator.js +9 -9
  44. package/dist/tools/shell/exec.js +23 -1
  45. package/dist/tools/shell/exec.js.map +1 -1
  46. package/dist/web/extra-apis.js +440 -0
  47. package/dist/web/extra-apis.js.map +1 -0
  48. package/dist/web/public/css/style.css +1715 -1715
  49. package/dist/web/public/index.html +1242 -1200
  50. package/dist/web/public/js/api.js +555 -496
  51. package/dist/web/public/js/app.js +2210 -2210
  52. package/dist/web/public/js/mock-api.js +234 -234
  53. package/dist/web/public/js/monaco-editor.js +363 -203
  54. package/dist/web/public/js/ui.js +2251 -1981
  55. package/dist/web/public/js/utils.js +214 -214
  56. package/dist/web/public/manifest.json +59 -59
  57. package/dist/web/public/service-worker.js +173 -173
  58. package/dist/web/server.js +97 -45
  59. package/dist/web/server.js.map +1 -1
  60. package/docs/BENCHMARK_REPORT_en.md +386 -329
  61. package/docs/BENCHMARK_REPORT_zh.md +386 -329
  62. package/docs/DPA.md +63 -0
  63. package/docs/DPA/346/225/260/346/215/256/345/244/204/347/220/206/345/215/217/350/256/256/346/250/241/346/235/277_v1.0.md +67 -0
  64. package/docs/SECURITY_WHITEPAPER.md +74 -0
  65. package/docs/SWE_BENCH_REPORT.md +55 -0
  66. package/docs/TECHNICAL_SPEC_en.md +292 -292
  67. package/docs/TECHNICAL_SPEC_zh.md +292 -292
  68. package/docs/UPDATE_NOTES_en.md +159 -159
  69. package/docs/UPDATE_NOTES_zh.md +159 -159
  70. package/docs/UPGRADE_7.2.0.md +309 -0
  71. package/docs/UPGRADE_GUIDE_7_5.md +86 -0
  72. package/docs/geo-feihong-code.html +391 -0
  73. package/docs//345/205/250/351/235/242/345/244/215/347/233/230_50/350/275/256/346/267/261/345/272/246/345/256/241/350/256/241_v7.2.0.md +208 -0
  74. package/docs//345/205/250/351/235/242/345/244/215/347/233/230_6/351/241/271/351/207/215/347/202/271/346/240/270/346/237/245_v7.2.0.md +152 -0
  75. package/docs//345/205/250/351/235/242/345/244/215/347/233/230_/350/277/220/350/241/214/346/227/266/345/256/236/346/265/213/347/211/210_v7.2.0.md +271 -0
  76. package/docs//345/220/210/350/247/204/350/256/244/350/257/201/345/207/206/345/244/207/346/270/205/345/215/225_v7.2.0.md +59 -0
  77. package/docs//345/256/211/345/205/250/347/231/275/347/232/256/344/271/246_v7.2.0.md +82 -0
  78. package/electron/main.js +404 -602
  79. package/package.json +175 -172
  80. package/templates/skills/api-design/SKILL.md +27 -0
  81. package/templates/skills/code-review/SKILL.md +35 -0
  82. package/templates/skills/dependency-upgrade/SKILL.md +29 -0
  83. package/templates/skills/doc-gen/SKILL.md +29 -0
  84. package/templates/skills/git-flow/SKILL.md +26 -0
  85. package/templates/skills/onboarding/SKILL.md +27 -0
  86. package/templates/skills/performance/SKILL.md +29 -0
  87. package/templates/skills/refactor/SKILL.md +28 -0
  88. package/templates/skills/security-audit/SKILL.md +28 -0
  89. package/templates/skills/test-gen/SKILL.md +30 -0
  90. package/tool-schema.json +197 -197
  91. package/dist/hello.js +0 -14
  92. package/dist/hello.js.map +0 -1
  93. package/dist/self-evolve/hook.ts +0 -80
  94. package/dist/self-evolve/manager.d.ts +0 -8
  95. package/dist/web/public/vendor/monaco/vs/abap-D-t0cyap.js +0 -1
  96. package/dist/web/public/vendor/monaco/vs/apex-CcIm7xu6.js +0 -1
  97. package/dist/web/public/vendor/monaco/vs/assets/css.worker-URu8fCFR.js +0 -97
  98. package/dist/web/public/vendor/monaco/vs/assets/editor.worker-lj3bdIIn.js +0 -30
  99. package/dist/web/public/vendor/monaco/vs/assets/editorWebWorkerMain-CA_vMoUU.js +0 -30
  100. package/dist/web/public/vendor/monaco/vs/assets/html.worker-D1SL3iM8.js +0 -474
  101. package/dist/web/public/vendor/monaco/vs/assets/json.worker-CoJx_OPf.js +0 -62
  102. package/dist/web/public/vendor/monaco/vs/assets/ts.worker-BWKtMYOk.js +0 -67722
  103. package/dist/web/public/vendor/monaco/vs/azcli-BA0tQDCg.js +0 -1
  104. package/dist/web/public/vendor/monaco/vs/basic-languages/monaco.contribution.js +0 -1
  105. package/dist/web/public/vendor/monaco/vs/bat-C397hTD6.js +0 -1
  106. package/dist/web/public/vendor/monaco/vs/bicep-DF5aW17k.js +0 -2
  107. package/dist/web/public/vendor/monaco/vs/cameligo-plsz8qhj.js +0 -1
  108. package/dist/web/public/vendor/monaco/vs/clojure-Y2auQMzK.js +0 -1
  109. package/dist/web/public/vendor/monaco/vs/coffee-Bu45yuWE.js +0 -1
  110. package/dist/web/public/vendor/monaco/vs/cpp-CkKPQIni.js +0 -1
  111. package/dist/web/public/vendor/monaco/vs/csharp-CX28MZyh.js +0 -1
  112. package/dist/web/public/vendor/monaco/vs/csp-D8uWnyxW.js +0 -1
  113. package/dist/web/public/vendor/monaco/vs/css-CaeNmE3S.js +0 -3
  114. package/dist/web/public/vendor/monaco/vs/css.worker-CyhWkhHo.js +0 -1
  115. package/dist/web/public/vendor/monaco/vs/cssMode-CV6Ay48H.js +0 -1
  116. package/dist/web/public/vendor/monaco/vs/cypher-DVThT8BS.js +0 -1
  117. package/dist/web/public/vendor/monaco/vs/dart-CmGfCvrO.js +0 -1
  118. package/dist/web/public/vendor/monaco/vs/dockerfile-CZqqYdch.js +0 -1
  119. package/dist/web/public/vendor/monaco/vs/ecl-30fUercY.js +0 -1
  120. package/dist/web/public/vendor/monaco/vs/editor/editor.main.css +0 -1
  121. package/dist/web/public/vendor/monaco/vs/editor/editor.main.js +0 -1
  122. package/dist/web/public/vendor/monaco/vs/editor/editor.worker.js +0 -1
  123. package/dist/web/public/vendor/monaco/vs/editor-KLE6jdfb.js +0 -831
  124. package/dist/web/public/vendor/monaco/vs/editor.js +0 -1
  125. package/dist/web/public/vendor/monaco/vs/editorWorkerHost-fVE1cjcC.js +0 -35
  126. package/dist/web/public/vendor/monaco/vs/elixir-xjPaIfzF.js +0 -1
  127. package/dist/web/public/vendor/monaco/vs/flow9-DqtmStfK.js +0 -1
  128. package/dist/web/public/vendor/monaco/vs/freemarker2-FWreY7v7.js +0 -3
  129. package/dist/web/public/vendor/monaco/vs/fsharp-BOMdg4U1.js +0 -1
  130. package/dist/web/public/vendor/monaco/vs/go-D_hbi-Jt.js +0 -1
  131. package/dist/web/public/vendor/monaco/vs/graphql-CKUU4kLG.js +0 -1
  132. package/dist/web/public/vendor/monaco/vs/handlebars-CZi4pHCH.js +0 -1
  133. package/dist/web/public/vendor/monaco/vs/hcl-DTaboeZW.js +0 -1
  134. package/dist/web/public/vendor/monaco/vs/html-j_7ZTNRU.js +0 -1
  135. package/dist/web/public/vendor/monaco/vs/html.worker-CA3iAimZ.js +0 -1
  136. package/dist/web/public/vendor/monaco/vs/htmlMode-27by_KM4.js +0 -1
  137. package/dist/web/public/vendor/monaco/vs/index-049xrXrp.js +0 -1
  138. package/dist/web/public/vendor/monaco/vs/index-CBVt3dzv.js +0 -5
  139. package/dist/web/public/vendor/monaco/vs/index.js +0 -1
  140. package/dist/web/public/vendor/monaco/vs/ini-CsNwO04R.js +0 -1
  141. package/dist/web/public/vendor/monaco/vs/initialize-DL0l1TGY.js +0 -1
  142. package/dist/web/public/vendor/monaco/vs/java-CI4ZMsH9.js +0 -1
  143. package/dist/web/public/vendor/monaco/vs/javascript-DTJl4Jn1.js +0 -1
  144. package/dist/web/public/vendor/monaco/vs/json.worker-BizpAl9O.js +0 -1
  145. package/dist/web/public/vendor/monaco/vs/jsonMode-DLUiMUrI.js +0 -1
  146. package/dist/web/public/vendor/monaco/vs/julia-BwzEvaQw.js +0 -1
  147. package/dist/web/public/vendor/monaco/vs/kotlin-IUYPiTV8.js +0 -1
  148. package/dist/web/public/vendor/monaco/vs/language/css/css.worker.js +0 -66
  149. package/dist/web/public/vendor/monaco/vs/language/css/monaco.contribution.js +0 -1
  150. package/dist/web/public/vendor/monaco/vs/language/html/html.worker.js +0 -443
  151. package/dist/web/public/vendor/monaco/vs/language/html/monaco.contribution.js +0 -1
  152. package/dist/web/public/vendor/monaco/vs/language/json/json.worker.js +0 -17
  153. package/dist/web/public/vendor/monaco/vs/language/json/monaco.contribution.js +0 -1
  154. package/dist/web/public/vendor/monaco/vs/language/typescript/monaco.contribution.js +0 -1
  155. package/dist/web/public/vendor/monaco/vs/language/typescript/ts.worker.js +0 -67693
  156. package/dist/web/public/vendor/monaco/vs/less-C0eDYdqa.js +0 -2
  157. package/dist/web/public/vendor/monaco/vs/lexon-iON-Kj97.js +0 -1
  158. package/dist/web/public/vendor/monaco/vs/liquid-CLJYelW6.js +0 -1
  159. package/dist/web/public/vendor/monaco/vs/loader.js +0 -1368
  160. package/dist/web/public/vendor/monaco/vs/lspLanguageFeatures-BIkJOWLw.js +0 -2
  161. package/dist/web/public/vendor/monaco/vs/lua-DtygF91M.js +0 -1
  162. package/dist/web/public/vendor/monaco/vs/m3-CsR4AuFi.js +0 -1
  163. package/dist/web/public/vendor/monaco/vs/main-BEx-Fmlo.js +0 -15
  164. package/dist/web/public/vendor/monaco/vs/main-DsK8pnKg.js +0 -3
  165. package/dist/web/public/vendor/monaco/vs/markdown-C_rD0bIw.js +0 -1
  166. package/dist/web/public/vendor/monaco/vs/mdx-CpzZIPHF.js +0 -1
  167. package/dist/web/public/vendor/monaco/vs/mips-CiYP61RB.js +0 -1
  168. package/dist/web/public/vendor/monaco/vs/monaco.contribution-9cKT3C7t.js +0 -1
  169. package/dist/web/public/vendor/monaco/vs/monaco.contribution-BE88ZNGY.js +0 -1
  170. package/dist/web/public/vendor/monaco/vs/monaco.contribution-BPhsneLd.js +0 -1
  171. package/dist/web/public/vendor/monaco/vs/monaco.contribution-BgRy6xDf.js +0 -1
  172. package/dist/web/public/vendor/monaco/vs/msdax-C38-sJlp.js +0 -1
  173. package/dist/web/public/vendor/monaco/vs/mysql-CdtbpvbG.js +0 -1
  174. package/dist/web/public/vendor/monaco/vs/nls/lang/cs.d.ts +0 -1
  175. package/dist/web/public/vendor/monaco/vs/nls/lang/cs.js +0 -9
  176. package/dist/web/public/vendor/monaco/vs/nls/lang/de.d.ts +0 -1
  177. package/dist/web/public/vendor/monaco/vs/nls/lang/de.js +0 -9
  178. package/dist/web/public/vendor/monaco/vs/nls/lang/es.d.ts +0 -1
  179. package/dist/web/public/vendor/monaco/vs/nls/lang/es.js +0 -9
  180. package/dist/web/public/vendor/monaco/vs/nls/lang/fr.d.ts +0 -1
  181. package/dist/web/public/vendor/monaco/vs/nls/lang/fr.js +0 -9
  182. package/dist/web/public/vendor/monaco/vs/nls/lang/it.d.ts +0 -1
  183. package/dist/web/public/vendor/monaco/vs/nls/lang/it.js +0 -9
  184. package/dist/web/public/vendor/monaco/vs/nls/lang/ja.d.ts +0 -1
  185. package/dist/web/public/vendor/monaco/vs/nls/lang/ja.js +0 -9
  186. package/dist/web/public/vendor/monaco/vs/nls/lang/ko.d.ts +0 -1
  187. package/dist/web/public/vendor/monaco/vs/nls/lang/ko.js +0 -9
  188. package/dist/web/public/vendor/monaco/vs/nls/lang/pl.d.ts +0 -1
  189. package/dist/web/public/vendor/monaco/vs/nls/lang/pl.js +0 -9
  190. package/dist/web/public/vendor/monaco/vs/nls/lang/pt-br.d.ts +0 -1
  191. package/dist/web/public/vendor/monaco/vs/nls/lang/pt-br.js +0 -9
  192. package/dist/web/public/vendor/monaco/vs/nls/lang/ru.d.ts +0 -1
  193. package/dist/web/public/vendor/monaco/vs/nls/lang/ru.js +0 -9
  194. package/dist/web/public/vendor/monaco/vs/nls/lang/tr.d.ts +0 -1
  195. package/dist/web/public/vendor/monaco/vs/nls/lang/tr.js +0 -9
  196. package/dist/web/public/vendor/monaco/vs/nls/lang/zh-cn.d.ts +0 -1
  197. package/dist/web/public/vendor/monaco/vs/nls/lang/zh-cn.js +0 -9
  198. package/dist/web/public/vendor/monaco/vs/nls/lang/zh-tw.d.ts +0 -1
  199. package/dist/web/public/vendor/monaco/vs/nls/lang/zh-tw.js +0 -9
  200. package/dist/web/public/vendor/monaco/vs/nls.messages-loader.js +0 -1
  201. package/dist/web/public/vendor/monaco/vs/objective-c-CntZFaHX.js +0 -1
  202. package/dist/web/public/vendor/monaco/vs/pascal-r6kuqfl_.js +0 -1
  203. package/dist/web/public/vendor/monaco/vs/pascaligo-BiXoTmXh.js +0 -1
  204. package/dist/web/public/vendor/monaco/vs/perl-DABw_TcH.js +0 -1
  205. package/dist/web/public/vendor/monaco/vs/pgsql-me_jFXeX.js +0 -1
  206. package/dist/web/public/vendor/monaco/vs/php-D_kh-9LK.js +0 -1
  207. package/dist/web/public/vendor/monaco/vs/pla-VfZjczW0.js +0 -1
  208. package/dist/web/public/vendor/monaco/vs/postiats-BBSzz8Pk.js +0 -1
  209. package/dist/web/public/vendor/monaco/vs/powerquery-Dt-g_2cc.js +0 -1
  210. package/dist/web/public/vendor/monaco/vs/powershell-B-7ap1zc.js +0 -1
  211. package/dist/web/public/vendor/monaco/vs/protobuf-BmtuEB1A.js +0 -2
  212. package/dist/web/public/vendor/monaco/vs/pug-BRpRNeEb.js +0 -1
  213. package/dist/web/public/vendor/monaco/vs/python-CqWUUgfu.js +0 -1
  214. package/dist/web/public/vendor/monaco/vs/qsharp-BzsFaUU9.js +0 -1
  215. package/dist/web/public/vendor/monaco/vs/r-f8dDdrp4.js +0 -1
  216. package/dist/web/public/vendor/monaco/vs/razor-hok5y9Km.js +0 -1
  217. package/dist/web/public/vendor/monaco/vs/redis-fvZQY4PI.js +0 -1
  218. package/dist/web/public/vendor/monaco/vs/redshift-45Et0LQi.js +0 -1
  219. package/dist/web/public/vendor/monaco/vs/restructuredtext-C7UUFKFD.js +0 -1
  220. package/dist/web/public/vendor/monaco/vs/ruby-CZO8zYTz.js +0 -1
  221. package/dist/web/public/vendor/monaco/vs/rust-Bfetafyc.js +0 -1
  222. package/dist/web/public/vendor/monaco/vs/sb-3GYllVck.js +0 -1
  223. package/dist/web/public/vendor/monaco/vs/scala-foMgrKo1.js +0 -1
  224. package/dist/web/public/vendor/monaco/vs/scheme-CHdMtr7p.js +0 -1
  225. package/dist/web/public/vendor/monaco/vs/scss-C1cmLt9V.js +0 -3
  226. package/dist/web/public/vendor/monaco/vs/shell-ClXCKCEW.js +0 -1
  227. package/dist/web/public/vendor/monaco/vs/solidity-MZ6ExpPy.js +0 -1
  228. package/dist/web/public/vendor/monaco/vs/sophia-DWkuSsPQ.js +0 -1
  229. package/dist/web/public/vendor/monaco/vs/sparql-AUGFYSyk.js +0 -1
  230. package/dist/web/public/vendor/monaco/vs/sql-32GpJSV2.js +0 -1
  231. package/dist/web/public/vendor/monaco/vs/st-CuDFIVZ_.js +0 -1
  232. package/dist/web/public/vendor/monaco/vs/swift-t-PfMj7W.js +0 -1
  233. package/dist/web/public/vendor/monaco/vs/systemverilog-Ch4vA8Yt.js +0 -1
  234. package/dist/web/public/vendor/monaco/vs/tcl-D74tq1nH.js +0 -1
  235. package/dist/web/public/vendor/monaco/vs/toggleHighContrast-qGX7E9o7.js +0 -61
  236. package/dist/web/public/vendor/monaco/vs/ts.worker-2QLmBukE.js +0 -1
  237. package/dist/web/public/vendor/monaco/vs/tsMode-B0S_kp2q.js +0 -11
  238. package/dist/web/public/vendor/monaco/vs/twig-C6taOxMV.js +0 -1
  239. package/dist/web/public/vendor/monaco/vs/typescript-_2t_511t.js +0 -1
  240. package/dist/web/public/vendor/monaco/vs/typespec-8OfoLt6R.js +0 -1
  241. package/dist/web/public/vendor/monaco/vs/vb-Dyb2648j.js +0 -1
  242. package/dist/web/public/vendor/monaco/vs/wgsl-BhLXMOR0.js +0 -298
  243. package/dist/web/public/vendor/monaco/vs/workers-BBttULjf.js +0 -1
  244. package/dist/web/public/vendor/monaco/vs/xml-cZjNDqDT.js +0 -1
  245. package/dist/web/public/vendor/monaco/vs/yaml-A1fOIdH6.js +0 -1
  246. package/dist/web/web-config.js +0 -143
  247. package/dist/web/web-config.js.map +0 -1
  248. package/docs/DEPLOYMENT.md +0 -382
  249. package/docs/MODEL_FINETUNING.md +0 -405
@@ -1,329 +1,386 @@
1
- # Feihong Code v7.0.0 Benchmark Report
2
-
3
- **Benchmark Date**: August 24, 2026
4
- **Version**: Feihong Code v7.0.0
5
- **Benchmark Team**: Feiyang Qiyuan R&D Center
6
- **Nature**: Objective Public Benchmark
7
-
8
- ---
9
-
10
- ## 1. Overview
11
-
12
- This report conducts a horizontal comparison between Feihong Code v7.0.0 and current mainstream AI coding assistants and IDE products, objectively analyzing from dimensions including product positioning, technical architecture, functional features, pricing, privacy security, and user experience, to identify Feihong Code's leading advantages and areas for improvement.
13
-
14
- ### 1.1 Benchmark Subjects
15
-
16
- **AI Coding Assistants**:
17
- - Cursor
18
- - GitHub Copilot
19
- - Codeium (now Windsurf)
20
- - Tabnine
21
- - Muse Code
22
- - Aider
23
- - Continue.dev
24
- - Cline / Roo Code
25
-
26
- **IDE Products**:
27
- - Visual Studio Code
28
- - JetBrains IntelliJ IDEA
29
- - Visual Studio
30
-
31
- ### 1.2 Benchmark Dimensions
32
-
33
- 1. Product positioning and form
34
- 2. Deployment and privacy security
35
- 3. Model support and extensibility
36
- 4. Code generation and completion
37
- 5. Autonomous Agent capability
38
- 6. Pricing and cost
39
- 7. Chinese and localization support
40
- 8. Enterprise features
41
- 9. User experience
42
- 10. Ecosystem and community
43
-
44
- ---
45
-
46
- ## 2. Product Positioning Comparison
47
-
48
- | Product | Positioning | Form | Target Users |
49
- |---------|-------------|------|--------------|
50
- | **Feihong Code** | Terminal AI coding agent | CLI + Web + Desktop | Full-stack devs, enterprise teams |
51
- | Cursor | AI-native IDE | Standalone IDE | Full-stack developers |
52
- | GitHub Copilot | AI coding assistant | IDE plugin | Full-stack developers |
53
- | Codeium/Windsurf | AI coding assistant | IDE plugin + IDE | Full-stack developers |
54
- | Tabnine | AI code completion | IDE plugin | Enterprise developers |
55
- | Muse Code | Terminal AI coding agent | CLI + Web | Advanced developers |
56
- | Aider | Terminal AI coding assistant | CLI | Advanced developers |
57
- | Continue.dev | Open-source AI assistant | IDE plugin | Developers |
58
- | Cline/Roo Code | AI Agent assistant | VS Code plugin | Full-stack developers |
59
- | VS Code | General code editor | IDE | All developers |
60
- | JetBrains IDEA | Professional Java IDE | IDE | Java/Kotlin developers |
61
- | Visual Studio | Professional .NET/C++ IDE | IDE | Enterprise developers |
62
-
63
- **Analysis**:
64
- - Feihong Code, Muse Code, and Aider belong to the "terminal AI coding agent" track, but Feihong Code additionally provides Web console and Electron desktop version with richer forms
65
- - Compared to IDE plugins/standalone IDEs like Cursor and Copilot, Feihong Code focuses more on "autonomously completing tasks" rather than "code completion"
66
- - Compared to pure CLI tools (Aider), Feihong Code's Web/desktop interface lowers the barrier to entry
67
-
68
- ---
69
-
70
- ## 3. Deployment and Privacy Security
71
-
72
- | Product | Cloud | Local | Private | Data Privacy |
73
- |---------|-------|-------|---------|--------------|
74
- | **Feihong Code** | Support | Support | ✅ Full | Local deployment, data stays in-domain |
75
- | Cursor | ✅ Mainly cloud | Partial | ❌ | Code uploaded to cloud |
76
- | GitHub Copilot | ✅ Cloud | ❌ | Enterprise limited | Code uploaded to cloud |
77
- | Codeium | ✅ Cloud | Enterprise local | Enterprise | Code uploaded to cloud |
78
- | Tabnine | ✅ Cloud | ✅ Enterprise | ✅ Enterprise | Optional local |
79
- | Muse Code | Support | Support | ✅ | Local deployment |
80
- | Aider | API dependent | ❌ | ❌ | Third-party API dependent |
81
- | Continue.dev | API dependent | ✅ Can be local | ✅ | Can be fully local |
82
- | Cline/Roo Code | API dependent | ❌ | ❌ | Third-party API dependent |
83
-
84
- **Feihong Code Advantages**:
85
- - ✅ Complete offline private deployment, data never leaves domain
86
- - ✅ Supports local models like Ollama, can work completely offline
87
- - ✅ Enterprise-grade RBAC permissions and audit logs
88
- - ✅ Workspace isolation, prevents unauthorized access
89
-
90
- **Gaps**:
91
- - Compared to Tabnine Enterprise, Feihong Code's local model ecosystem needs improvement
92
- - Private deployment documentation and best practices need supplementation
93
-
94
- ---
95
-
96
- ## 4. Model Support and Extensibility
97
-
98
- | Product | Multi-model | Local Models | Custom Models | Model Routing |
99
- |---------|-------------|--------------|---------------|---------------|
100
- | **Feihong Code** | ✅ DeepSeek/Qwen/Ollama/OpenAI | ✅ Ollama | ✅ OpenAI compatible | ✅ Multi-model routing |
101
- | Cursor | ✅ Multiple | ❌ | Limited | ✅ |
102
- | GitHub Copilot | ❌ Fixed | ❌ | ❌ | ❌ |
103
- | Codeium | ✅ Multiple | Enterprise | Limited | ✅ |
104
- | Tabnine | ✅ | Enterprise | ✅ | ✅ |
105
- | Muse Code | ✅ | ✅ | ✅ | ✅ |
106
- | Aider | ✅ Multiple | ✅ | ✅ | ❌ |
107
- | Continue.dev | ✅ | ✅ | ✅ | ✅ |
108
- | Cline/Roo Code | ✅ | ✅ | ✅ | ❌ |
109
-
110
- **Feihong Code Advantages**:
111
- - ✅ Native support for mainstream Chinese models (DeepSeek, Tongyi Qianwen), no VPN needed for Chinese users
112
- - ✅ Complete multi-model routing mechanism, selects optimal model by task type
113
- - ✅ OpenAI compatible interface, can connect to any third-party model service
114
-
115
- **Gaps**:
116
- - Model marketplace/model store functionality not yet established
117
- - Model fine-tuning and personalized training capabilities missing
118
-
119
- ---
120
-
121
- ## 5. Code Generation and Completion
122
-
123
- | Product | Code Completion | Code Generation | Refactoring | Bug Fixing | Test Generation |
124
- |---------|-----------------|-----------------|-------------|------------|-----------------|
125
- | **Feihong Code** | ❌ No real-time | ✅ Task-level | ✅ | ✅ Self-healing | ✅ |
126
- | Cursor | ✅ Real-time | ✅ | ✅ | ✅ | ✅ |
127
- | GitHub Copilot | ✅ Industry benchmark | ✅ | ✅ | ✅ | ✅ |
128
- | Codeium | ✅ Real-time | ✅ | ✅ | ✅ | ✅ |
129
- | Tabnine | ✅ Real-time | Limited | Limited | Limited | Limited |
130
- | Muse Code | ❌ | ✅ Task-level | ✅ | ✅ | ✅ |
131
- | Aider | ❌ | ✅ | ✅ | ✅ | Limited |
132
- | Continue.dev | ✅ | ✅ | ✅ | ✅ | ✅ |
133
- | Cline/Roo Code | ❌ | ✅ Task-level | ✅ | ✅ | ✅ |
134
-
135
- **Analysis**:
136
- - Feihong Code positions as "task-level AI coding agent", does not provide in-IDE real-time code completion
137
- - In "autonomously completing full tasks", Feihong Code is in the same tier as Cursor Agent, Cline, Muse Code
138
- - Self-healing mechanism is Feihong Code's feature, automatically identifies build errors and fixes
139
-
140
- **Feihong Code Advantages**:
141
- - ✅ Task-level autonomous execution, one-stop from requirement to code change
142
- - ✅ Built-in self-healing loop, automatically troubleshoots and fixes build failures
143
- - ✅ System prompts specifically optimized for coding and bug fixing capabilities
144
-
145
- **Gaps**:
146
- - ❌ Lacks in-IDE real-time code completion (product positioning decision, not technical defect)
147
- - ❌ Code generation accuracy and context understanding still lag behind Cursor/Copilot
148
- - ❌ Lacks visualization for multi-file collaborative editing
149
-
150
- ---
151
-
152
- ## 6. Autonomous Agent Capability
153
-
154
- | Product | Autonomous Planning | Tool Calls | File Ops | Shell | Browser | Multi-iteration |
155
- |---------|---------------------|------------|----------|-------|---------|-----------------|
156
- | **Feihong Code** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
157
- | Cursor (Agent) | ✅ | ✅ | ✅ | ✅ | Limited | ✅ |
158
- | GitHub Copilot | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
159
- | Codeium (Cascade) | ✅ | ✅ | ✅ | ✅ | Limited | ✅ |
160
- | Cline/Roo Code | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
161
- | Muse Code | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
162
- | Aider | Limited | ✅ | ✅ | ✅ | ❌ | ✅ |
163
- | Continue.dev | Limited | ✅ | ✅ | Limited | ❌ | Limited |
164
-
165
- **Feihong Code Advantages**:
166
- - ✅ Complete tool calling system: file read/write, Shell execution, browser operation, computer control
167
- - ✅ Computer control feature: can control mouse and keyboard, achieving true "computer operation"
168
- - ✅ Screenshot feature: can capture screen and analyze, supports visual understanding
169
- - ✅ Voice/video calls: multimodal interaction capability
170
-
171
- **Gaps**:
172
- - Agent planning ability and task decomposition need improvement
173
- - Long-task context management and compression strategy need optimization
174
-
175
- ---
176
-
177
- ## 7. Pricing and Cost
178
-
179
- | Product | Free Tier | Personal | Enterprise | Local Deployment Cost |
180
- |---------|-----------|----------|------------|----------------------|
181
- | **Feihong Code** | ✅ Completely free | ✅ Free | ✅ Free | ✅ Zero license fee |
182
- | Cursor | Limited | $20/mo | $40/mo/user | ❌ |
183
- | GitHub Copilot | Limited | $10/mo | $19/mo/user | ❌ |
184
- | Codeium | Limited | $15/mo | Custom | ❌ |
185
- | Tabnine | Limited | $12/mo | Custom | High |
186
- | Muse Code | ✅ Open-source free | ✅ Free | ✅ Free | ✅ Zero license fee |
187
- | Aider | ✅ Open-source free | ✅ Free | ✅ Free | API cost |
188
- | Continue.dev | ✅ Open-source free | ✅ Free | ✅ Free | API cost |
189
-
190
- **Feihong Code Advantages**:
191
- - ✅ Completely free and open-source, no license fees
192
- - ✅ After local deployment only hardware costs
193
- - ✅ Supports free/low-cost Chinese models (DeepSeek etc.), API cost extremely low
194
- - ✅ No user limit for enterprise use
195
-
196
- **Gaps**:
197
- - Lacks commercial technical support services
198
- - Lacks SaaS hosted version
199
-
200
- ---
201
-
202
- ## 8. Chinese and Localization Support
203
-
204
- | Product | Chinese UI | Chinese Models | China Access | Chinese Docs |
205
- |---------|------------|----------------|--------------|--------------|
206
- | **Feihong Code** | ✅ Full bilingual | ✅ Native | ✅ Direct | ✅ |
207
- | Cursor | ❌ English | Limited | ❌ VPN needed | ❌ |
208
- | GitHub Copilot | ❌ English | Limited | ❌ VPN needed | Limited |
209
- | Codeium | Limited | Limited | ❌ VPN needed | Limited |
210
- | Tabnine | Limited | Limited | ❌ VPN needed | Limited |
211
- | Muse Code | Limited | ✅ | ✅ | Limited |
212
- | Aider | ❌ English | Model dependent | Model dependent | ❌ |
213
- | Continue.dev | Limited | Model dependent | Model dependent | Limited |
214
-
215
- **Feihong Code Advantages**:
216
- - ✅ Complete Chinese-English bilingual interface
217
- - ✅ Native support for Chinese models like DeepSeek, Tongyi Qianwen, no VPN needed
218
- - ✅ Chinese documentation and community support
219
- - ✅ China network environment optimized
220
-
221
- ---
222
-
223
- ## 9. Enterprise Features
224
-
225
- | Product | RBAC | Audit Log | Private | SSO | Permission Approval |
226
- |---------|------|-----------|---------|-----|---------------------|
227
- | **Feihong Code** | ✅ | ✅ | ✅ | ❌ | ✅ |
228
- | Cursor | ❌ | Limited | ❌ | ❌ | ❌ |
229
- | GitHub Copilot | Limited | Limited | ❌ | ✅ | ❌ |
230
- | Codeium | Limited | Limited | Enterprise | ✅ | ❌ |
231
- | Tabnine | ✅ | ✅ | Enterprise | ✅ | ❌ |
232
- | Muse Code | ✅ | ✅ | ✅ | ❌ | ✅ |
233
-
234
- **Feihong Code Advantages**:
235
- - ✅ Complete RBAC permission system
236
- - ✅ Full operation audit logs
237
- - ✅ Dangerous operation approval mechanism
238
- - ✅ Workspace-level permission isolation
239
-
240
- **Gaps**:
241
- - Lacks SSO/SAML single sign-on
242
- - Lacks LDAP/AD integration
243
- - Lacks compliance certifications (SOC2, ISO27001 etc.)
244
-
245
- ---
246
-
247
- ## 10. User Experience
248
-
249
- | Product | Learning Curve | UI Friendliness | Real-time Feedback | Multi-platform |
250
- |---------|----------------|-----------------|--------------------|----------------|
251
- | **Feihong Code** | Medium | ✅ Web/Desktop friendly | ✅ Real-time thinking | ✅ CLI/Web/Desktop |
252
- | Cursor | Low | ✅ IDE experience | ✅ | Desktop |
253
- | GitHub Copilot | Very low | ✅ Integrated in IDE | ✅ | Multiple IDEs |
254
- | Codeium | Low | ✅ | ✅ | Multiple IDEs |
255
- | Muse Code | High | Medium | ✅ | CLI/Web |
256
- | Aider | High | ❌ Pure CLI | Limited | CLI |
257
- | Cline/Roo Code | Medium | ✅ In VS Code | ✅ | VS Code |
258
-
259
- **Feihong Code Advantages**:
260
- - ✅ v7.0.0 conversation flow fully refactored, Doubao-like experience, pure text + real-time thinking
261
- - ✅ Web console and desktop version lower the barrier of CLI tools
262
- - ✅ Multimodal interaction: screenshot, voice, video, etc.
263
-
264
- **Gaps**:
265
- - UI aesthetics and interaction details still lag behind mature products like Cursor
266
- - Lacks IDE plugin form, cannot integrate into developers' existing workflow
267
- - Real-time collaboration and team features missing
268
-
269
- ---
270
-
271
- ## 11. Overall Scores
272
-
273
- | Dimension | Feihong Code | Cursor | Copilot | Muse Code | Aider | Cline |
274
- |-----------|--------------|--------|---------|-----------|-------|-------|
275
- | Deployment & Privacy | 9 | 5 | 4 | 9 | 6 | 5 |
276
- | Model Support | 8 | 8 | 4 | 8 | 7 | 7 |
277
- | Code Capability | 7 | 9 | 9 | 7 | 7 | 8 |
278
- | Agent Capability | 8 | 8 | 3 | 8 | 6 | 8 |
279
- | Pricing & Cost | 10 | 5 | 5 | 10 | 9 | 8 |
280
- | Chinese Localization | 9 | 4 | 4 | 7 | 3 | 4 |
281
- | Enterprise Features | 8 | 4 | 6 | 8 | 3 | 3 |
282
- | User Experience | 7 | 9 | 9 | 6 | 4 | 7 |
283
- | **Overall** | **8.3** | **6.5** | **5.5** | **7.9** | **5.6** | **6.3** |
284
-
285
- *Scoring: 1-10, 10 is best*
286
-
287
- ---
288
-
289
- ## 12. Summary
290
-
291
- ### 12.1 Feihong Code's Leading Advantages
292
-
293
- 1. **Completely free and open-source**: Zero license fees, no cost pressure for enterprise use
294
- 2. **Private deployment**: Data never leaves domain, meets strong regulatory industries like finance and government
295
- 3. **China ecosystem optimized**: Native support for Chinese models like DeepSeek, Tongyi Qianwen, no VPN needed
296
- 4. **Chinese-English bilingual**: Complete internationalization support
297
- 5. **Full-platform forms**: CLI + Web + Desktop, meets different usage scenarios
298
- 6. **Enterprise-grade security**: RBAC, audit logs, permission approval all included
299
- 7. **Multimodal interaction**: Screenshot, voice, video, computer control and other featured functions
300
-
301
- ### 12.2 Areas for Improvement
302
-
303
- 1. **Code completion capability**: Lacks in-IDE real-time completion, consider developing VS Code plugin
304
- 2. **Agent intelligence**: Task planning and long context management need continuous optimization
305
- 3. **Enterprise integration**: SSO, LDAP, compliance certification and other enterprise features to be improved
306
- 4. **Ecosystem building**: Plugin marketplace, model store, community ecosystem need cultivation
307
- 5. **Interface experience**: UI/UX details still have gaps with mature products
308
- 6. **Documentation improvement**: Private deployment best practices, operation manuals need supplementation
309
-
310
- ### 12.3 Market Positioning Recommendations
311
-
312
- Feihong Code should focus on the following niche markets:
313
- - **Domestic enterprise private deployment**: Benchmark against Tabnine Enterprise with significant price advantage
314
- - **Xinchuang/national localization**: Support domestic models and domestic operating systems
315
- - **Education and individual developers**: Completely free, lowers AI coding barrier
316
- - **Multimodal AI coding**: Screenshot, voice, computer control and other features form differentiation
317
-
318
- ---
319
-
320
- ## 13. Benchmark Disclaimer
321
-
322
- This benchmark is based on publicly available information and actual usage experience of each product. Scores only represent subjective judgment at the time of benchmarking and do not constitute purchase recommendations. Product features iterate continuously, please refer to the latest official version.
323
-
324
- **This benchmark report was assisted by Doubao AI**, including data organization, data comparison, analysis and writing.
325
-
326
- ---
327
-
328
- *Feiyang Qiyuan R&D Center*
329
- *August 24, 2026*
1
+ # Feihong Code v7.2.0 Benchmark Report
2
+
3
+ **Benchmark Date**: August 27, 2026
4
+ **Version**: Feihong Code v7.2.0
5
+ **Benchmark Team**: Feiyang Qiyuan R&D Center
6
+ **Nature**: Objective Public Benchmark (with quantified results and sources)
7
+
8
+ ---
9
+
10
+ ## 1. Overview
11
+
12
+ This report conducts a horizontal comparison between Feihong Code v7.0.0 and current mainstream AI coding assistants and IDE products, objectively analyzing from dimensions including product positioning, technical architecture, functional features, pricing, privacy security, and user experience, to identify Feihong Code's leading advantages and areas for improvement.
13
+
14
+ ### 1.1 Benchmark Subjects
15
+
16
+ **AI Coding Assistants**:
17
+ - Cursor
18
+ - GitHub Copilot
19
+ - Codeium (now Windsurf)
20
+ - Tabnine
21
+ - Muse Code
22
+ - Aider
23
+ - Continue.dev
24
+ - Cline / Roo Code
25
+
26
+ **IDE Products**:
27
+ - Visual Studio Code
28
+ - JetBrains IntelliJ IDEA
29
+ - Visual Studio
30
+
31
+ ### 1.2 Benchmark Dimensions
32
+
33
+ 1. Product positioning and form
34
+ 2. Deployment and privacy security
35
+ 3. Model support and extensibility
36
+ 4. Code generation and completion
37
+ 5. Autonomous Agent capability
38
+ 6. Pricing and cost
39
+ 7. Chinese and localization support
40
+ 8. Enterprise features
41
+ 9. User experience
42
+ 10. Ecosystem and community
43
+
44
+ ---
45
+
46
+ ## 2. Product Positioning Comparison
47
+
48
+ | Product | Positioning | Form | Target Users |
49
+ |---------|-------------|------|--------------|
50
+ | **Feihong Code** | Terminal AI coding agent | CLI + Web + Desktop | Full-stack devs, enterprise teams |
51
+ | Cursor | AI-native IDE | Standalone IDE | Full-stack developers |
52
+ | GitHub Copilot | AI coding assistant | IDE plugin | Full-stack developers |
53
+ | Codeium/Windsurf | AI coding assistant | IDE plugin + IDE | Full-stack developers |
54
+ | Tabnine | AI code completion | IDE plugin | Enterprise developers |
55
+ | Muse Code | Terminal AI coding agent | CLI + Web | Advanced developers |
56
+ | Aider | Terminal AI coding assistant | CLI | Advanced developers |
57
+ | Continue.dev | Open-source AI assistant | IDE plugin | Developers |
58
+ | Cline/Roo Code | AI Agent assistant | VS Code plugin | Full-stack developers |
59
+ | VS Code | General code editor | IDE | All developers |
60
+ | JetBrains IDEA | Professional Java IDE | IDE | Java/Kotlin developers |
61
+ | Visual Studio | Professional .NET/C++ IDE | IDE | Enterprise developers |
62
+
63
+ **Analysis**:
64
+ - Feihong Code, Muse Code, and Aider belong to the "terminal AI coding agent" track, but Feihong Code additionally provides Web console and Electron desktop version with richer forms
65
+ - Compared to IDE plugins/standalone IDEs like Cursor and Copilot, Feihong Code focuses more on "autonomously completing tasks" rather than "code completion"
66
+ - Compared to pure CLI tools (Aider), Feihong Code's Web/desktop interface lowers the barrier to entry
67
+
68
+ ---
69
+
70
+ ## 3. Deployment and Privacy Security
71
+
72
+ | Product | Cloud | Local | Private | Data Privacy |
73
+ |---------|-------|-------|---------|--------------|
74
+ | **Feihong Code** | Support | Support | ✅ Full | Local deployment, data stays in-domain |
75
+ | Cursor | ✅ Mainly cloud | Partial | ❌ | Code uploaded to cloud |
76
+ | GitHub Copilot | ✅ Cloud | ❌ | Enterprise limited | Code uploaded to cloud |
77
+ | Codeium | ✅ Cloud | Enterprise local | Enterprise | Code uploaded to cloud |
78
+ | Tabnine | ✅ Cloud | ✅ Enterprise | ✅ Enterprise | Optional local |
79
+ | Muse Code | Support | Support | ✅ | Local deployment |
80
+ | Aider | API dependent | ❌ | ❌ | Third-party API dependent |
81
+ | Continue.dev | API dependent | ✅ Can be local | ✅ | Can be fully local |
82
+ | Cline/Roo Code | API dependent | ❌ | ❌ | Third-party API dependent |
83
+
84
+ **Feihong Code Advantages**:
85
+ - ✅ Complete offline private deployment, data never leaves domain
86
+ - ✅ Supports local models like Ollama, can work completely offline
87
+ - ✅ Enterprise-grade RBAC permissions and audit logs
88
+ - ✅ Workspace isolation, prevents unauthorized access
89
+
90
+ **Gaps**:
91
+ - Compared to Tabnine Enterprise, Feihong Code's local model ecosystem needs improvement
92
+ - Private deployment documentation and best practices need supplementation
93
+
94
+ ---
95
+
96
+ ## 4. Model Support and Extensibility
97
+
98
+ | Product | Multi-model | Local Models | Custom Models | Model Routing |
99
+ |---------|-------------|--------------|---------------|---------------|
100
+ | **Feihong Code** | ✅ DeepSeek/Qwen/Ollama/OpenAI | ✅ Ollama | ✅ OpenAI compatible | ✅ Multi-model routing |
101
+ | Cursor | ✅ Multiple | ❌ | Limited | ✅ |
102
+ | GitHub Copilot | ❌ Fixed | ❌ | ❌ | ❌ |
103
+ | Codeium | ✅ Multiple | Enterprise | Limited | ✅ |
104
+ | Tabnine | ✅ | Enterprise | ✅ | ✅ |
105
+ | Muse Code | ✅ | ✅ | ✅ | ✅ |
106
+ | Aider | ✅ Multiple | ✅ | ✅ | ❌ |
107
+ | Continue.dev | ✅ | ✅ | ✅ | ✅ |
108
+ | Cline/Roo Code | ✅ | ✅ | ✅ | ❌ |
109
+
110
+ **Feihong Code Advantages**:
111
+ - ✅ Native support for mainstream Chinese models (DeepSeek, Tongyi Qianwen), no VPN needed for Chinese users
112
+ - ✅ Complete multi-model routing mechanism, selects optimal model by task type
113
+ - ✅ OpenAI compatible interface, can connect to any third-party model service
114
+
115
+ **Gaps**:
116
+ - Model marketplace/model store functionality not yet established
117
+ - Model fine-tuning and personalized training capabilities missing
118
+
119
+ ---
120
+
121
+ ## 5. Code Generation and Completion
122
+
123
+ | Product | Code Completion | Code Generation | Refactoring | Bug Fixing | Test Generation |
124
+ |---------|-----------------|-----------------|-------------|------------|-----------------|
125
+ | **Feihong Code** | ❌ No real-time | ✅ Task-level | ✅ | ✅ Self-healing | ✅ |
126
+ | Cursor | ✅ Real-time | ✅ | ✅ | ✅ | ✅ |
127
+ | GitHub Copilot | ✅ Industry benchmark | ✅ | ✅ | ✅ | ✅ |
128
+ | Codeium | ✅ Real-time | ✅ | ✅ | ✅ | ✅ |
129
+ | Tabnine | ✅ Real-time | Limited | Limited | Limited | Limited |
130
+ | Muse Code | ❌ | ✅ Task-level | ✅ | ✅ | ✅ |
131
+ | Aider | ❌ | ✅ | ✅ | ✅ | Limited |
132
+ | Continue.dev | ✅ | ✅ | ✅ | ✅ | ✅ |
133
+ | Cline/Roo Code | ❌ | ✅ Task-level | ✅ | ✅ | ✅ |
134
+
135
+ **Analysis**:
136
+ - Feihong Code positions as "task-level AI coding agent", does not provide in-IDE real-time code completion
137
+ - In "autonomously completing full tasks", Feihong Code is in the same tier as Cursor Agent, Cline, Muse Code
138
+ - Self-healing mechanism is Feihong Code's feature, automatically identifies build errors and fixes
139
+
140
+ **Feihong Code Advantages**:
141
+ - ✅ Task-level autonomous execution, one-stop from requirement to code change
142
+ - ✅ Built-in self-healing loop, automatically troubleshoots and fixes build failures
143
+ - ✅ System prompts specifically optimized for coding and bug fixing capabilities
144
+
145
+ **Gaps**:
146
+ - ❌ Lacks in-IDE real-time code completion (product positioning decision, not technical defect)
147
+ - ❌ Code generation accuracy and context understanding still lag behind Cursor/Copilot
148
+ - ❌ Lacks visualization for multi-file collaborative editing
149
+
150
+ ---
151
+
152
+ ## 6. Autonomous Agent Capability
153
+
154
+ | Product | Autonomous Planning | Tool Calls | File Ops | Shell | Browser | Multi-iteration |
155
+ |---------|---------------------|------------|----------|-------|---------|-----------------|
156
+ | **Feihong Code** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
157
+ | Cursor (Agent) | ✅ | ✅ | ✅ | ✅ | Limited | ✅ |
158
+ | GitHub Copilot | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
159
+ | Codeium (Cascade) | ✅ | ✅ | ✅ | ✅ | Limited | ✅ |
160
+ | Cline/Roo Code | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
161
+ | Muse Code | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
162
+ | Aider | Limited | ✅ | ✅ | ✅ | ❌ | ✅ |
163
+ | Continue.dev | Limited | ✅ | ✅ | Limited | ❌ | Limited |
164
+
165
+ **Feihong Code Advantages**:
166
+ - ✅ Complete tool calling system: file read/write, Shell execution, browser operation, computer control
167
+ - ✅ Computer control feature: can control mouse and keyboard, achieving true "computer operation"
168
+ - ✅ Screenshot feature: can capture screen and analyze, supports visual understanding
169
+ - ✅ Voice/video calls: multimodal interaction capability
170
+
171
+ **Gaps**:
172
+ - Agent planning ability and task decomposition need improvement
173
+ - Long-task context management and compression strategy need optimization
174
+
175
+ ---
176
+
177
+ ## 7. Pricing and Cost
178
+
179
+ | Product | Free Tier | Personal | Enterprise | Local Deployment Cost |
180
+ |---------|-----------|----------|------------|----------------------|
181
+ | **Feihong Code** | ✅ Completely free | ✅ Free | ✅ Free | ✅ Zero license fee |
182
+ | Cursor | Limited | $20/mo | $40/mo/user | ❌ |
183
+ | GitHub Copilot | Limited | $10/mo | $19/mo/user | ❌ |
184
+ | Codeium | Limited | $15/mo | Custom | ❌ |
185
+ | Tabnine | Limited | $12/mo | Custom | High |
186
+ | Muse Code | ✅ Open-source free | ✅ Free | ✅ Free | ✅ Zero license fee |
187
+ | Aider | ✅ Open-source free | ✅ Free | ✅ Free | API cost |
188
+ | Continue.dev | ✅ Open-source free | ✅ Free | ✅ Free | API cost |
189
+
190
+ **Feihong Code Advantages**:
191
+ - ✅ Completely free and open-source, no license fees
192
+ - ✅ After local deployment only hardware costs
193
+ - ✅ Supports free/low-cost Chinese models (DeepSeek etc.), API cost extremely low
194
+ - ✅ No user limit for enterprise use
195
+
196
+ **Gaps**:
197
+ - Lacks commercial technical support services
198
+ - Lacks SaaS hosted version
199
+
200
+ ---
201
+
202
+ ## 8. Chinese and Localization Support
203
+
204
+ | Product | Chinese UI | Chinese Models | China Access | Chinese Docs |
205
+ |---------|------------|----------------|--------------|--------------|
206
+ | **Feihong Code** | ✅ Full bilingual | ✅ Native | ✅ Direct | ✅ |
207
+ | Cursor | ❌ English | Limited | ❌ VPN needed | ❌ |
208
+ | GitHub Copilot | ❌ English | Limited | ❌ VPN needed | Limited |
209
+ | Codeium | Limited | Limited | ❌ VPN needed | Limited |
210
+ | Tabnine | Limited | Limited | ❌ VPN needed | Limited |
211
+ | Muse Code | Limited | ✅ | ✅ | Limited |
212
+ | Aider | ❌ English | Model dependent | Model dependent | ❌ |
213
+ | Continue.dev | Limited | Model dependent | Model dependent | Limited |
214
+
215
+ **Feihong Code Advantages**:
216
+ - ✅ Complete Chinese-English bilingual interface
217
+ - ✅ Native support for Chinese models like DeepSeek, Tongyi Qianwen, no VPN needed
218
+ - ✅ Chinese documentation and community support
219
+ - ✅ China network environment optimized
220
+
221
+ ---
222
+
223
+ ## 9. Enterprise Features
224
+
225
+ | Product | RBAC | Audit Log | Private | SSO | Permission Approval |
226
+ |---------|------|-----------|---------|-----|---------------------|
227
+ | **Feihong Code** | ✅ | ✅ | ✅ | ❌ | ✅ |
228
+ | Cursor | ❌ | Limited | ❌ | ❌ | ❌ |
229
+ | GitHub Copilot | Limited | Limited | ❌ | ✅ | ❌ |
230
+ | Codeium | Limited | Limited | Enterprise | ✅ | ❌ |
231
+ | Tabnine | ✅ | ✅ | Enterprise | ✅ | ❌ |
232
+ | Muse Code | ✅ | ✅ | ✅ | ❌ | ✅ |
233
+
234
+ **Feihong Code Advantages**:
235
+ - ✅ Complete RBAC permission system
236
+ - ✅ Full operation audit logs
237
+ - ✅ Dangerous operation approval mechanism
238
+ - ✅ Workspace-level permission isolation
239
+
240
+ **Gaps**:
241
+ - Lacks SSO/SAML single sign-on
242
+ - Lacks LDAP/AD integration
243
+ - Lacks compliance certifications (SOC2, ISO27001 etc.)
244
+
245
+ ---
246
+
247
+ ## 10. User Experience
248
+
249
+ | Product | Learning Curve | UI Friendliness | Real-time Feedback | Multi-platform |
250
+ |---------|----------------|-----------------|--------------------|----------------|
251
+ | **Feihong Code** | Medium | ✅ Web/Desktop friendly | ✅ Real-time thinking | ✅ CLI/Web/Desktop |
252
+ | Cursor | Low | ✅ IDE experience | ✅ | Desktop |
253
+ | GitHub Copilot | Very low | ✅ Integrated in IDE | ✅ | Multiple IDEs |
254
+ | Codeium | Low | ✅ | ✅ | Multiple IDEs |
255
+ | Muse Code | High | Medium | ✅ | CLI/Web |
256
+ | Aider | High | ❌ Pure CLI | Limited | CLI |
257
+ | Cline/Roo Code | Medium | ✅ In VS Code | ✅ | VS Code |
258
+
259
+ **Feihong Code Advantages**:
260
+ - ✅ v7.0.0 conversation flow fully refactored, Doubao-like experience, pure text + real-time thinking
261
+ - ✅ Web console and desktop version lower the barrier of CLI tools
262
+ - ✅ Multimodal interaction: screenshot, voice, video, etc.
263
+
264
+ **Gaps**:
265
+ - UI aesthetics and interaction details still lag behind mature products like Cursor
266
+ - Lacks IDE plugin form, cannot integrate into developers' existing workflow
267
+ - Real-time collaboration and team features missing
268
+
269
+ ---
270
+
271
+ ## 11. Overall Scores
272
+
273
+ | Dimension | Feihong Code | Cursor | Copilot | Muse Code | Aider | Cline |
274
+ |-----------|--------------|--------|---------|-----------|-------|-------|
275
+ | Deployment & Privacy | 9 | 5 | 4 | 9 | 6 | 5 |
276
+ | Model Support | 8 | 8 | 4 | 8 | 7 | 7 |
277
+ | Code Capability | 7 | 9 | 9 | 7 | 7 | 8 |
278
+ | Agent Capability | 8 | 8 | 3 | 8 | 6 | 8 |
279
+ | Pricing & Cost | 10 | 5 | 5 | 10 | 9 | 8 |
280
+ | Chinese Localization | 9 | 4 | 4 | 7 | 3 | 4 |
281
+ | Enterprise Features | 8 | 4 | 6 | 8 | 3 | 3 |
282
+ | User Experience | 7 | 9 | 9 | 6 | 4 | 7 |
283
+ | **Overall** | **8.3** | **6.5** | **5.5** | **7.9** | **5.6** | **6.3** |
284
+
285
+ *Scoring: 1-10, 10 is best*
286
+
287
+ ---
288
+
289
+ ## 12. Summary
290
+
291
+ ### 12.1 Feihong Code's Leading Advantages
292
+
293
+ 1. **Completely free and open-source**: Zero license fees, no cost pressure for enterprise use
294
+ 2. **Private deployment**: Data never leaves domain, meets strong regulatory industries like finance and government
295
+ 3. **China ecosystem optimized**: Native support for Chinese models like DeepSeek, Tongyi Qianwen, no VPN needed
296
+ 4. **Chinese-English bilingual**: Complete internationalization support
297
+ 5. **Full-platform forms**: CLI + Web + Desktop, meets different usage scenarios
298
+ 6. **Enterprise-grade security**: RBAC, audit logs, permission approval all included
299
+ 7. **Multimodal interaction**: Screenshot, voice, video, computer control and other featured functions
300
+
301
+ ### 12.2 Areas for Improvement
302
+
303
+ 1. **Code completion capability**: Lacks in-IDE real-time completion, consider developing VS Code plugin
304
+ 2. **Agent intelligence**: Task planning and long context management need continuous optimization
305
+ 3. **Enterprise integration**: SSO, LDAP, compliance certification and other enterprise features to be improved
306
+ 4. **Ecosystem building**: Plugin marketplace, model store, community ecosystem need cultivation
307
+ 5. **Interface experience**: UI/UX details still have gaps with mature products
308
+ 6. **Documentation improvement**: Private deployment best practices, operation manuals need supplementation
309
+
310
+ ### 12.3 Market Positioning Recommendations
311
+
312
+ Feihong Code should focus on the following niche markets:
313
+ - **Domestic enterprise private deployment**: Benchmark against Tabnine Enterprise with significant price advantage
314
+ - **Xinchuang/national localization**: Support domestic models and domestic operating systems
315
+ - **Education and individual developers**: Completely free, lowers AI coding barrier
316
+ - **Multimodal AI coding**: Screenshot, voice, computer control and other features form differentiation
317
+
318
+ ---
319
+
320
+ ## 13. SWE-bench Real Results Benchmark (Quantified, new in v7.2.0)
321
+
322
+ > Every figure below has a source and methodology note, replacing earlier unfounded qualitative claims.
323
+ > **Honesty note**: Feihong Code's result is from a **self-built SWE-bench-format task set** (reproducible); industry numbers are official/public **SWE-bench Verified** results. Different eval sets — **not directly comparable**; shown only to indicate relative magnitude under a similar framework.
324
+
325
+ ### 13.1 Feihong Code Real Run (self-built SWE-bench-format set)
326
+
327
+ | Metric | Result | Methodology |
328
+ |---|---|---|
329
+ | **Test pass rate** | **80% (4/5)** | SWE-bench format (problem_statement + FAIL_TO_PASS), 5 self-contained JS tasks; real model agnes-2.5-flash driving Orchestrator; **predefined tests (not given to model) verified via node --test** |
330
+ | Passed | swe-js-001/002/003/005 | maxOf / fibonacci / isPalindrome / countWords — all assertions passed |
331
+ | Failed | swe-js-004 (findMissing) | iterations=0 toolCalls=0, execution-layer failure, not an implementation error |
332
+ | Harness loop (mock) | 2/2 = 100% | loader→executor→verifier→reporter full chain executable |
333
+ | Harness real-model generation | 3/3 = 100% | Real model driving Orchestrator, all 3 real coding tasks generated target files |
334
+
335
+ Reproduce: `node scripts/_swe-bench-real.mjs` (real), `node scripts/_swe-smoke.mjs` (mock).
336
+ **This is the only score claimed externally. No claim on official SWE-bench Verified until re-measured on the real dataset with a container environment.**
337
+
338
+ ### 13.2 Industry Public Benchmark (SWE-bench Verified, 2026 public data)
339
+
340
+ | Product / Model | Score | Nature & Date |
341
+ |---|---|---|
342
+ | Claude Code (Fable 5 backend) | 95.0% | AI Wiki, 2026-07 (model score) |
343
+ | Claude Opus 4.8 | 88.6% | Anthropic / BenchLM, 2026-06 |
344
+ | Claude Opus 4.7 | 87.6% | Anthropic, 2026-04 |
345
+ | Codex CLI (GPT-5.5) | ~82.6% | Third-party tracking, 2026-07 (OpenAI stopped self-reporting) |
346
+ | Claude Opus 4.6 | 80.8% | Anthropic, 2026-02 |
347
+ | Gemini 3.1 Pro | 80.6% | Google official model card (3rd-party ~75%, 2026-03) |
348
+ | GPT-5.2 | 80.0% | OpenAI |
349
+ | Doubao Seed-Code + TRAE | 78.80% | ByteDance official, 2025-11 (SOTA at launch) |
350
+ | TRAE (standalone) | 75.2% | ByteDance official |
351
+ | Gemini CLI (Gemini 3.1 Pro) | 80.6% | AI Wiki, 2026-07 |
352
+ | OpenHands | 72.0% | MarkTechPost, 2026-05 |
353
+ | Cursor (default config) | ~51.7% | MarkTechPost, 2026-05 (varies with backend model, up to 88.6%) |
354
+ | GitHub Copilot (Agent mode) | ~56% | MarkTechPost, 2026-05 |
355
+ | Average of all 77 models | 62.2% | Verified leaderboard mean, 2026-03 |
356
+
357
+ **Contamination warning**: SWE-bench Verified is confirmed contaminated — OpenAI's audit found frontier models reproduce some gold patches; SWE-ABS (2026-05, arXiv) strengthened test suites and dropped average resolve rates 14.56pp, with the top agent (TRAE+Doubao, 78.80%) falling to 62.20%. Treat any Verified high score as an upper-bound reference with possible memorization. Feihong Code's self-built set is contamination-free but small (5 tasks); both must be interpreted with caution.
358
+
359
+ ### 13.3 Feihong Code Auditable Differentiation (non-score)
360
+
361
+ | Dimension | Feihong Code | Main competitors | Basis |
362
+ |---|---|---|---|
363
+ | Cost | Free & open-source, zero local license | Cursor $20-40/mo, Copilot $10-19/mo | See §7 pricing |
364
+ | Data privacy | Local deploy, data stays on-prem, offline-capable | Cursor/Copilot mostly cloud | See §3 |
365
+ | Model routing | Multi-model + local Ollama + domestic models | Cursor multi / Copilot fixed | See §4 |
366
+ | Multimodal Agent | Screenshot/voice/video/computer control | Partial | See §6 |
367
+ | SWE metric | 80% self-built set (real assertions, reproducible) | Official Verified (contaminated) | See 13.1/13.2 |
368
+
369
+ ### 13.4 Honest Gaps
370
+
371
+ 1. Official SWE-bench Verified (500 tasks) needs Docker+pytest; not yet run in this environment — **not yet measured** (see 13.1)
372
+ 2. Model backend is third-party (agnes-2.5-flash etc.); score varies with backend, not a self-owned model
373
+ 3. Self-built set is small (5 tasks), limited statistical confidence, engineering baseline only
374
+
375
+ ---
376
+
377
+ ## 14. Benchmark Disclaimer
378
+
379
+ This benchmark is based on publicly available information and actual usage experience of each product. Scores only represent subjective judgment at the time of benchmarking and do not constitute purchase recommendations. Product features iterate continuously, please refer to the latest official version.
380
+
381
+ **This benchmark report was assisted by Doubao AI**, including data organization, data comparison, analysis and writing.
382
+
383
+ ---
384
+
385
+ *Feiyang Qiyuan R&D Center*
386
+ *August 24, 2026*