这次 AI 编程工作,主要围绕 trustedKnowledge 系统的前端体验、状态持久化、AI 问数能力、Skill 管理和内容复制体验展开。整体目标很明确:让系统更稳定、更顺手,也让 AI 能力更可控地融入业务流程。

01 | 先修掉影响体验的细节问题

第一个问题来自“可信知识加工厂”的待加工知识列表。

“可信知识录入工作台”的已录入知识列表,点击条目时体验很丝滑,不会导致整个模块刷新。但“可信知识加工厂”的待加工知识列表,点击任意条目都会让模块整体闪一下。

排查后发现,差异在于列表拉取逻辑的依赖项。

工作台列表点击条目时,只更新选中项并拉取详情,不会重新拉取整个列表。而加工厂列表此前把 factorySelectedId 放进了列表 fetch 的 useEffect 依赖数组里,所以每次点击条目都会触发重新拉取待加工知识,isFactoryLoading 变成 true,模块就出现整体刷新感。

修复方式是把选中项校验改成函数式状态更新,并从依赖数组中移除 factorySelectedId。修复后,待加工列表只会在进入页面、搜索词变化、页码变化或登录状态变化时重新加载。点击条目只切换选中状态和右侧内容。

前端构建验证已通过:cd frontend && npm run build

02 | 状态持久化问题要分清边界

另一个问题是“录入可信知识”模块经常被动刷新,导致写到一半的文字消失。同时,手机浏览器保存为桌面图标后,有时再次进入仍需要输入密码。

这两个问题不是同一个 bug,但属于同一类前端状态持久化问题。

登录反复要求输入密码,是因为之前使用 sessionStorage 保存登录态。手机浏览器、桌面图标入口或新的 WebView 会话下,sessionStorage 表现可能不稳定。

录入文字消失,则是因为草稿只存在 React 内存里。页面重载、浏览器回收或重新鉴权后,未提交内容就会丢失。

本次采用了当前架构下低侵入的修复:

登录态改为 localStorage 持久保存,除非用户主动退出或 API 返回 401。旧的 sessionStorage 登录态会自动迁移到 localStorage,API 请求也统一从持久登录态读取。

同时,“录入可信知识”的新建草稿增加本地自动保存。输入过程中自动保存,刷新、重新打开或重新登录后可以恢复未提交草稿。提交成功或主动退出登录时清理草稿,编辑已有知识时不覆盖新建草稿。

https://gitee.com/sth6ur/naqqqc/blob/master/YwghEL5Z3X_26716784.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/rolAUeVFjD_30132298.md
https://gitee.com/tsjsshnh/vircpc/blob/master/YSmTNAH1Vz_37857212.md
https://gitee.com/sth6ur/naqqqc/blob/master/cNuxbPWGkE_97351087.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/LcgKepgQuO_37390420.md
https://gitee.com/tsjsshnh/vircpc/blob/master/f2mnnLSCgA_86528118.md
https://gitee.com/sth6ur/naqqqc/blob/master/YsWJQA8c6a_03062610.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/MAn4fpgQuO_37860235.md
https://gitee.com/tsjsshnh/vircpc/blob/master/QNHblcMqKo_10527701.md
https://gitee.com/fxmydn/nakrke/blob/master/FpWQEL5Z3X_24275834.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/uR2i6u1lFj_85846432.md
https://gitee.com/sth6ur/naqqqc/blob/master/GURLfqhRvP_13578709.md
https://gitee.com/tsjsshnh/vircpc/blob/master/FGnrUIP9d7_91205910.md
https://gitee.com/fxmydn/nakrke/blob/master/LjWdqoE5pJ_43327317.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/SCjnREL5Z3_17243860.md
https://gitee.com/sth6ur/naqqqc/blob/master/V9wXEeVFjD_39674481.md
https://gitee.com/tsjsshnh/vircpc/blob/master/L8FTxuLCvP_52399375.md
https://gitee.com/fxmydn/nakrke/blob/master/2JqR8ZQAe8_94701385.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/NERvsJAuOs_58712583.md
https://gitee.com/sth6ur/naqqqc/blob/master/u75WPDK4Y2_04826310.md
https://gitee.com/tsjsshnh/vircpc/blob/master/Pw0AVf0kEi_89782702.md
https://gitee.com/fxmydn/nakrke/blob/master/vFwJa7EySw_46095935.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/bLswaNUEiC_22225270.md
https://gitee.com/sth6ur/naqqqc/blob/master/xOI6DxvPtN_98209063.md
https://gitee.com/tsjsshnh/vircpc/blob/master/4vf9d7b5Z3_07715687.md
https://gitee.com/fxmydn/nakrke/blob/master/aHAy5pJnHl_02288723.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/p0r42wnX1V_47593624.md
https://gitee.com/sth6ur/naqqqc/blob/master/Arm6nhUbLp_81995384.md
https://gitee.com/tsjsshnh/vircpc/blob/master/aOyfZMTDhB_55075420.md
https://gitee.com/fxmydn/nakrke/blob/master/Jxkrb5Z3X1_33499198.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/cmdroF6qKo_56306905.md
https://gitee.com/tsjsshnh/vircpc/blob/master/3TNBI2W0Uy_08690061.md
https://gitee.com/sth6ur/naqqqc/blob/master/mnKu5wgAe8_51714531.md
https://gitee.com/fxmydn/nakrke/blob/master/PpDTVcMqKo_90708361.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/1lmJQAe8c6_33164066.md
https://gitee.com/tsjsshnh/vircpc/blob/master/hy29Qx4oIm_33952090.md
https://gitee.com/sth6ur/naqqqc/blob/master/uho2TtkUyS_92453089.md
https://gitee.com/fxmydn/nakrke/blob/master/u1llmJQAe8_53505273.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/PZub2td7b5_21950923.md
https://gitee.com/tsjsshnh/vircpc/blob/master/wKael2ahRv_26784128.md
https://gitee.com/sth6ur/naqqqc/blob/master/5G7KHiZJnH_26245732.md
https://gitee.com/fxmydn/nakrke/blob/master/s9kulVzTxR_40239190.md
https://gitee.com/tsjsshnh/vircpc/blob/master/1csQ0A1lFj_86661805.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/g71pwgAd7b_36904459.md
https://gitee.com/sth6ur/naqqqc/blob/master/qHeOPx4oIm_38806050.md
https://gitee.com/fxmydn/nakrke/blob/master/GQH1VzTxRv_99124031.md
https://gitee.com/tsjsshnh/vircpc/blob/master/cpnE7v2mGk_50631387.md
https://gitee.com/fxmydn/nakrke/blob/master/yjGKxlsc6a_99395320.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/L56dkUySwQ_16354679.md
https://gitee.com/sth6ur/naqqqc/blob/master/h8VmJue8c6_90783573.md
https://gitee.com/fxmydn/nakrke/blob/master/3aeI5CwQuO_10270725.md
https://gitee.com/tsjsshnh/vircpc/blob/master/4RBBCkrb5Y_59658347.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/BSzaHC3nHl_40738870.md
https://gitee.com/sth6ur/naqqqc/blob/master/AEL66elVzT_32174121.md
https://gitee.com/fxmydn/nakrke/blob/master/OPSarOVFjD_12713798.md
https://gitee.com/tsjsshnh/vircpc/blob/master/3YYZahRvPt_55619920.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/3N1Lzmtd7b_51856393.md
https://gitee.com/sth6ur/naqqqc/blob/master/Lj0akbLpJn_83858925.md
https://gitee.com/fxmydn/nakrke/blob/master/MWr52TK4Y2_92736686.md
https://gitee.com/tsjsshnh/vircpc/blob/master/JnlB5t0kEi_81106397.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/EPmXX5CwQu_74563036.md
https://gitee.com/sth6ur/naqqqc/blob/master/Zqt1IpwgAe_67999081.md
https://gitee.com/fxmydn/nakrke/blob/master/sFWahyVcMq_18293286.md
https://gitee.com/tsjsshnh/vircpc/blob/master/999hHRI2W0_70666738.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/duR2j90kEi_36103313.md
https://gitee.com/sth6ur/naqqqc/blob/master/tAELcAH1Vz_88533831.md
https://gitee.com/fxmydn/nakrke/blob/master/0EeYMTDhBf_15725109.md
https://gitee.com/tsjsshnh/vircpc/blob/master/xxyV5G7rLp_80774963.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/UlpzJypZ3X_40560573.md
https://gitee.com/sth6ur/naqqqc/blob/master/HEfWnKRBf9_07751561.md
https://gitee.com/fxmydn/nakrke/blob/master/iSz3hUbLpJ_70569250.md
https://gitee.com/tsjsshnh/vircpc/blob/master/ls9gnX1VzT_99429793.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/3aAKBsJAuO_81605783.md
https://gitee.com/fxmydn/nakrke/blob/master/HosVJQAe8c_25421582.md
https://gitee.com/tsjsshnh/vircpc/blob/master/bHfvTaKoIm_73442891.md
https://gitee.com/sth6ur/naqqqc/blob/master/tADLb9G0Uy_33826700.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/YmFDdUEiCg_00596219.md
https://gitee.com/fxmydn/nakrke/blob/master/J34biSwQuO_34199622.md
https://gitee.com/tsjsshnh/vircpc/blob/master/pwA7XO8c6a_44237187.md
https://gitee.com/sth6ur/naqqqc/blob/master/BvvwUbLpJm_29354395.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/64UOCJ3X1V_41860083.md
https://gitee.com/fxmydn/nakrke/blob/master/UbsPzA1lFD_36734732.md
https://gitee.com/tsjsshnh/vircpc/blob/master/HURLfqhRvP_43183949.md
https://gitee.com/sth6ur/naqqqc/blob/master/pt0Hovf9d7_83468791.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/CMDuKBvPtr_36364428.md
https://gitee.com/fxmydn/nakrke/blob/master/yFmtd7b5Z3_22195017.md
https://gitee.com/tsjsshnh/vircpc/blob/master/h1fTaKoImG_47091935.md
https://gitee.com/sth6ur/naqqqc/blob/master/MZ30RmW0Uy_74371573.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/keRZpNUEiC_40113864.md
https://gitee.com/fxmydn/nakrke/blob/master/n4biSwQuOs_33586837.md
https://gitee.com/tsjsshnh/vircpc/blob/master/EjDElsc6a4_55392734.md
https://gitee.com/sth6ur/naqqqc/blob/master/tn7oiVcMqK_69844273.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/Zj4IFgXHlF_27597503.md
https://gitee.com/fxmydn/nakrke/blob/master/KRiFpzqa4Y_99276424.md
https://gitee.com/tsjsshnh/vircpc/blob/master/Za7hsjTxRv_33559606.md
https://gitee.com/sth6ur/naqqqc/blob/master/qOVif6xhBf_63196986.md
https://gitee.com/fxmydn/nakrke/blob/master/4ZcjUV29tN_66168828.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/Ry5JGgXHlF_44346115.md
https://gitee.com/tsjsshnh/vircpc/blob/master/UElpTGN7b5_04423508.md
https://gitee.com/sth6ur/naqqqc/blob/master/SlPjNAH1Vz_62394002.md
https://gitee.com/fxmydn/nakrke/blob/master/2D4oImGkEi_02859710.md
https://gitee.com/tsjsshnh/vircpc/blob/master/ysfn3biSwQ_84275950.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/e5w96XO8c6_33713914.md
https://gitee.com/sth6ur/naqqqc/blob/master/koSmwHRI2W_03891364.md
https://gitee.com/fxmydn/nakrke/blob/master/riwPNneOsM_28919208.md
https://gitee.com/tsjsshnh/vircpc/blob/master/07OvVfWGkE_32483684.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/bcAH1USwQu_51101627.md
https://gitee.com/fxmydn/nakrke/blob/master/YmkA4szjDh_49371115.md
https://gitee.com/sth6ur/naqqqc/blob/master/1VWW4BvPtN_88720514.md
https://gitee.com/tsjsshnh/vircpc/blob/master/qQ71LWrb5Z_42312021.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/I9NqoE5pJn_10020010.md
https://gitee.com/fxmydn/nakrke/blob/master/nuBipZ3X1V_33864779.md
https://gitee.com/sth6ur/naqqqc/blob/master/fS2jdQ1lFj_60508479.md
https://gitee.com/tsjsshnh/vircpc/blob/master/OFTxuLCwPt_28062492.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/eYrVJQAe8c_22075250.md
https://gitee.com/fxmydn/nakrke/blob/master/gtNKlcMqKo_38772091.md
https://gitee.com/sth6ur/naqqqc/blob/master/4Ilj90kEiC_26152811.md
https://gitee.com/tsjsshnh/vircpc/blob/master/7YSmPDK4Y2_05525248.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/m0xOI5CwQu_87167449.md
https://gitee.com/fxmydn/nakrke/blob/master/oLwd3ue8ca_77944425.md
https://gitee.com/tsjsshnh/vircpc/blob/master/fqDxyWdNqK_30860308.md
https://gitee.com/sth6ur/naqqqc/blob/master/566dDOFzTx_23168164.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/jkkIP9d7b5_29716292.md
https://gitee.com/fxmydn/nakrke/blob/master/mdqnE5pJnH_87028213.md
https://gitee.com/tsjsshnh/vircpc/blob/master/HEfZMTDhBf_76849643.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/kulSsjTxRv_93891557.md
https://gitee.com/fxmydn/nakrke/blob/master/akbpmD4oIl_07208389.md
https://gitee.com/sth6ur/naqqqc/blob/master/6xBfc2td7b_39336852.md
https://gitee.com/tsjsshnh/vircpc/blob/master/752wGvmW0U_41044330.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/4F6JGhYImG_19696019.md
https://gitee.com/sth6ur/naqqqc/blob/master/e3N4ylsc6a_19753031.md
https://gitee.com/fxmydn/nakrke/blob/master/pZ6AobiSwQ_55019576.md
https://gitee.com/tsjsshnh/vircpc/blob/master/YcGal5F6qK_00275417.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/5Z3X1VzTxR_61844539.md
https://gitee.com/fxmydn/nakrke/blob/master/F3k8PzA1lF_69872510.md
https://gitee.com/sth6ur/naqqqc/blob/master/JtaUHO8c6a_32669623.md
https://gitee.com/tsjsshnh/vircpc/blob/master/0h8zjDhBf9_98017487.md
https://gitee.com/sth6ur/naqqqc/blob/master/cThA8YP9d7_60250929.md
https://gitee.com/fxmydn/nakrke/blob/master/cAEwMDxRvP_62806320.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/gwU4E5pJnH_70804445.md
https://gitee.com/tsjsshnh/vircpc/blob/master/89gGQH1VzT_53566986.md
https://gitee.com/fxmydn/nakrke/blob/master/2CXD7v2mGk_34770568.md
https://gitee.com/sth6ur/naqqqc/blob/master/AlSMgriSwQ_17856545.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/PMGblcMKoI_05278003.md
https://gitee.com/tsjsshnh/vircpc/blob/master/tXosVJQAe8_18253550.md
https://gitee.com/fxmydn/nakrke/blob/master/DlL2wjqa4Y_20052596.md
https://gitee.com/sth6ur/naqqqc/blob/master/Qx4oImGkEi_30883389.md
https://gitee.com/tsjsshnh/vircpc/blob/master/IVwJabiSwQ_63831080.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/O2pQ7YP9d7_74455099.md
https://gitee.com/fxmydn/nakrke/blob/master/5gNHbmdNrL_52429688.md
https://gitee.com/sth6ur/naqqqc/blob/master/Rfd63UL5Z3_66169392.md
https://gitee.com/tsjsshnh/vircpc/blob/master/GxrCMDxRvP_30096518.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/3E5IGgXHlF_33664458.md
https://gitee.com/fxmydn/nakrke/blob/master/7R5szjDhBf_00571762.md
https://gitee.com/sth6ur/naqqqc/blob/master/VzTxuKBvPt_36865878.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/0Jxlsc6a4Y_74861509.md
https://gitee.com/tsjsshnh/vircpc/blob/master/JGAUfWGkEi_36461005.md
https://gitee.com/fxmydn/nakrke/blob/master/Dn1SL9G0US_44578761.md
https://gitee.com/sth6ur/naqqqc/blob/master/lV26kXeOsM_28396130.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/hhFpTK4Y2W_23662545.md
https://gitee.com/tsjsshnh/vircpc/blob/master/bLswaNUEiC_58289038.md
https://gitee.com/fxmydn/nakrke/blob/master/esMJjaKoIm_25592158.md
https://gitee.com/tsjsshnh/vircpc/blob/master/mtAipZ3X1V_22469762.md
https://gitee.com/sth6ur/naqqqc/blob/master/mDbuYMTDhB_99728842.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/MjTUU29tNr_50747622.md
https://gitee.com/fxmydn/nakrke/blob/master/0Hovf9d7b5_89078583.md
https://gitee.com/tsjsshnh/vircpc/blob/master/nbizakbLpJ_02418310.md
https://gitee.com/sth6ur/naqqqc/blob/master/TarOVFjDhB_70169189.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/WNb52SJ3X1_30947102.md
https://gitee.com/fxmydn/nakrke/blob/master/vIZ6griSwQ_81107794.md
https://gitee.com/tsjsshnh/vircpc/blob/master/sSdUEiCgAe_22393080.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/7FV3AuOsMq_62307652.md
https://gitee.com/sth6ur/naqqqc/blob/master/nN4ylsc6a4_99975535.md
https://gitee.com/fxmydn/nakrke/blob/master/3k7Ov2mGEi_34564478.md
https://gitee.com/tsjsshnh/vircpc/blob/master/r7fFPG0UyS_45900273.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/JnHHIpwgAe_76369406.md
https://gitee.com/sth6ur/naqqqc/blob/master/rYwCkrb5Z3_42387275.md
https://gitee.com/fxmydn/nakrke/blob/master/LeI6DxRvtN_40651780.md
https://gitee.com/tsjsshnh/vircpc/blob/master/vPtuuSZJnH_03411232.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/eeBFtAH1Vz_99076815.md
https://gitee.com/fxmydn/nakrke/blob/master/kA1EfZMTDh_18216614.md
https://gitee.com/sth6ur/naqqqc/blob/master/xuLizWdNrL_47559618.md
https://gitee.com/tsjsshnh/vircpc/blob/master/EBf9d7b5Z3_96254032.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/ZDU4F6qKoI_22569557.md
https://gitee.com/fxmydn/nakrke/blob/master/Eozqa4Y2W0_70788569.md
https://gitee.com/sth6ur/naqqqc/blob/master/eycwZNUEiC_60208451.md
https://gitee.com/tsjsshnh/vircpc/blob/master/MgKeI5CwQu_80895821.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/VlIt3ue8c6_45897530.md
https://gitee.com/fxmydn/nakrke/blob/master/doBvwTaKoI_10181237.md
https://gitee.com/sth6ur/naqqqc/blob/master/oSjJTK4Y20_05920486.md
https://gitee.com/tsjsshnh/vircpc/blob/master/h0eSZJnHlF_42701903.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/lvmTulVzTx_81616871.md
https://gitee.com/fxmydn/nakrke/blob/master/yfYMTDhf9d_24818050.md
https://gitee.com/sth6ur/naqqqc/blob/master/00Y8pjWdNr_95963275.md
https://gitee.com/tsjsshnh/vircpc/blob/master/cWM4UL5Z3X_61930865.md
https://gitee.com/dyjsrjy/ghyzfs/blob/master/gQx1fw3nHl_28619212.md

Logo

小龙虾开发者社区是 CSDN 旗下专注 OpenClaw 生态的官方阵地,聚焦技能开发、插件实践与部署教程,为开发者提供可直接落地的方案、工具与交流平台,助力高效构建与落地 AI 应用

更多推荐