AutoFix Bot
|
9fd1da8fb7
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-03-03 06:03:38 +08:00 |
|
AutoFix Bot
|
2a0ed6af4d
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题 (816+ 处)
- 添加缺失的导入 (json, re)
- 统一SQL查询格式
- 修复赋值语句空格问题
修复文件:
- db_manager.py (96处)
- search_manager.py (77处)
- ops_manager.py (66处)
- developer_ecosystem_manager.py (68处)
- growth_manager.py (60处)
- enterprise_manager.py (61处)
- tenant_manager.py (57处)
- plugin_manager.py (48处)
- subscription_manager.py (46处)
- security_manager.py (29处)
- workflow_manager.py (32处)
- localization_manager.py (31处)
- api_key_manager.py (20处)
- ai_manager.py (23处)
- performance_manager.py (24处)
- neo4j_manager.py (25处)
- collaboration_manager.py (33处)
- test_phase8_task8.py (16处)
- test_phase8_task6.py (4处)
- knowledge_reasoner.py (添加import json)
- llm_client.py (添加import json)
|
2026-03-03 00:11:51 +08:00 |
|
AutoFix Bot
|
98527c4de4
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-03-02 12:14:39 +08:00 |
|
AutoFix Bot
|
e23f1fec08
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 修复语法错误(运算符空格问题)
- 修复类型注解格式
|
2026-03-02 06:09:49 +08:00 |
|
AutoFix Bot
|
e46c938b40
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题 (E302, E305, E501)
- 修复行长度超过100字符的问题
- 修复F821未定义名称错误
|
2026-03-01 18:19:06 +08:00 |
|
OpenClaw Bot
|
ea58b6fe43
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-03-01 00:08:06 +08:00 |
|
OpenClaw Bot
|
1a9b5391f7
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 09:15:51 +08:00 |
|
OpenClaw Bot
|
74c2daa5ef
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 09:11:38 +08:00 |
|
OpenClaw Bot
|
fe3d64a1d2
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
- 修复缺失的urllib.parse导入
|
2026-02-28 06:03:09 +08:00 |
|
OpenClaw Bot
|
7853b2392b
|
fix: auto-fix code issues - duplicate imports and unused imports
- 移除函数内部的重复 import re
- 移除函数内部的重复 import csv
- 移除函数内部的重复 import random
- 移除未使用的 urllib.request 导入
- 添加缺失的 time 导入到 ai_manager.py
|
2026-02-28 03:05:42 +08:00 |
|
OpenClaw Bot
|
33555642db
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 03:03:50 +08:00 |
|
OpenClaw Bot
|
8c80399c9d
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 03:03:08 +08:00 |
|
OpenClaw Bot
|
d767f0dddc
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-27 21:12:04 +08:00 |
|
OpenClaw Bot
|
17bda3dbce
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-27 18:09:24 +08:00 |
|
OpenClaw Bot
|
646b64daf7
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理 (BaseException -> 具体异常类型)
- 修复PEP8格式问题
- 添加类型注解
- 修复tingwu_client.py缩进错误
|
2026-02-27 15:20:03 +08:00 |
|
OpenClaw Bot
|
96f08b8bb9
|
fix: auto-fix code issues (cron)
- 修复裸异常捕获 (E722) - 改为具体异常类型
- 修复重复导入/字段定义问题
- 修复PEP8格式问题 (W291 trailing whitespace, E226, E741)
- 修复未使用变量 (F841)
- 修复变量名遮蔽 (F402)
- 修复未定义名称 (F821) - 添加 urllib.parse 导入
- 修复 f-string 缺少占位符 (F541)
- 修复模块级导入位置 (E402)
- 修复行尾空白和空行问题
- 优化代码结构,提升可读性
|
2026-02-27 12:10:56 +08:00 |
|
OpenClaw Bot
|
be22b763fa
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
- 修复重复函数定义 (health_check, create_webhook_endpoint, etc)
- 修复未定义名称 (SearchOperator, TenantTier, Query, Body, logger)
- 修复 workflow_manager.py 的类定义重复问题
- 添加缺失的导入
|
2026-02-27 09:18:58 +08:00 |
|
OpenClaw Bot
|
9dd54b3a38
|
Phase 5: 知识推理与问答增强
- 新增 knowledge_reasoner.py 推理引擎
- 支持因果/对比/时序/关联四种推理类型
- 智能项目总结 API (全面/高管/技术/风险)
- 实体关联路径发现功能
- 前端推理面板 UI 和交互
- 更新 API 端点和健康检查
Refs: Phase 5 开发任务
|
2026-02-19 18:07:00 +08:00 |
|