| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(api): add QueryRunner.probe_transcript static method ADR-003 §3.3 specified a resume-reachability probe on QueryRunner so orchestrators (notably orchestratord-clawcodex) can short-circuit a resume call when the target session is gone without burning the full run_timeout_s budget waiting for a guaranteed failure. The spec landed in docs but the implementation never did, leaving orchestratord to swallow AttributeError and return REJECTED for every probe. This commit adds QueryRunner.probe_transcript(session_id, *, workspace=None) -> bool as a static method that mirrors the CLI's --resume validation (clawcodex_ext/cli/dispatch.py): 1. Direct directory hit at resolve_sessions_dir() / session_id → True. 2. Tag-prefix fallback via SessionStorage.list_sessions(tag_filter=session_id, limit=1) → True if any session matches. 3. Otherwise False. 4. Empty / whitespace-only session_id short-circuits to False without touching the filesystem. 5. All exceptions (import error, I/O, malformed metadata) are swallowed and reported as False so the probe never raises into the caller. 6. workspace is accepted for orchestrator API compatibility but currently advisory — clawcodex session storage is global (overridable via CLAWCODEX_SESSIONS_DIR), not per-workspace. Callers needing isolation should scope CLAWCODEX_SESSIONS_DIR themselves. Tests in tests/api/test_query_probe_transcript.py pin the swallow-on-exception contract, the direct + tag fallback paths, the empty/whitespace short-circuit, the staticmethod form, and the workspace advisory. Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 4 天前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(gateway): Agent交互提醒和架构优化 Co-authored-by: Gideon_Zhao<Gideon_Zhao@noreply.gitcode.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(orchestrator): F-118 task decomposition and F-124 issue clarifier MVP Co-authored-by: yeyunyao<yeyunyao@huawei.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
feat(SOP):OpenAPI Spec to Agent Conversion with HTTP Tools Co-authored-by: gkawuiq8<zhuyikun@huawei.com> | 1 个月前 | |
feat(goal): 完善目标生命周期、模型运行时与 Demo Factory Co-authored-by: doufangcheng<doufangcheng@huawei.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(tests): 将 tests/ 根目录 287 个测试文件分类到 38 个子目录 将平铺在 tests/ 根目录的 ~287 个 test_*.py 文件按主题分类归入各自 子目录,消除组织结构混乱。 新增 21 个子目录 (advisor, bash, cache, cli, command_system, compact, config, cost_tracker, f43, fast, file_ops, git, ide, image, input, message, misc, model, orchestrator, provider, query, repl, sessions, snapshot, state, streaming, system_prompt, token, tool, voice); 合并到 6 个已有子目录 (agent, auth, bridge, integration, services, tasks)。 总计: 287 个文件从根目录迁出,0 个文件遗留于根目录。 2,822 passed, 63 failed (全部预存失败,无关移动), 无新增错误。 Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 3 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
style(codestyle): 统一代码风格修复 - 格式化多行字典推导式为单行以保持一致性 - 添加缺失的换行符以改善代码可读性 - 统一字符串引号使用双引号格式 - 修复长字符串连接的换行格式 - 移除列表末尾多余逗号保持格式一致 - 格式化长函数调用参数的换行对齐 - 添加必要的换行以符合代码风格指南 | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(sop): F-55/56/57/157 转换、资源目录与可执行宏 Co-authored-by: gkawuiq8<zhuyikun@huawei.com> | 1 个月前 | |
feat(gateway): Agent交互提醒和架构优化 Co-authored-by: Gideon_Zhao<Gideon_Zhao@noreply.gitcode.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(freeze-detection): 补齐 F-108 FreezeDetector 入口集成 - 在 init()、headless 入口、orchestrator daemon 入口调用 FreezeDetector.maybe_start_from_env(),使 CLAWCODEX_FREEZE_DIAG=1 真正启用冻结检测 watchdog。 - 删除 clawcodex_ext/settings/types.py 中重复的 FreezeSettings 定义。 - 新增 init 与 entrypoint 集成测试,修复 test_init.py 中一处已失效的 mock 路径。 - 更新 f-108-freeze-detection.md 状态与进度跟踪。 Co-Authored-By: kimi-code <MoonshotAI@claude-code-best.win> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(tests): 将 tests/ 根目录 287 个测试文件分类到 38 个子目录 将平铺在 tests/ 根目录的 ~287 个 test_*.py 文件按主题分类归入各自 子目录,消除组织结构混乱。 新增 21 个子目录 (advisor, bash, cache, cli, command_system, compact, config, cost_tracker, f43, fast, file_ops, git, ide, image, input, message, misc, model, orchestrator, provider, query, repl, sessions, snapshot, state, streaming, system_prompt, token, tool, voice); 合并到 6 个已有子目录 (agent, auth, bridge, integration, services, tasks)。 总计: 287 个文件从根目录迁出,0 个文件遗留于根目录。 2,822 passed, 63 failed (全部预存失败,无关移动), 无新增错误。 Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 3 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(intent_forecast): 新增recent_commits信号用于下一步预测 意图识别的目标是准确预测用户下一步计划。自动 forecast 之前在 "工作区安静"场景(无活跃对话、无未提交改动、测试未失败)下会 被 no_suggestion_gate 无差别抑制,导致 "Forecast: no suggestions right now." 高频出现。本次新增 git 最近提交作为强信号来源。 改动: - context.py: _workspace_signals() 采集 recent_commits 字段 - 5 次独立 git log 调用分别取 %H/%h/%s/%an/%at,避免 subject 或 author 中的 '|' 字符污染其他字段 - 非 git 仓库/空仓库/_run_git 失败时返回 [],不抛异常 - service.py: no_suggestion_gate 的 strong_signal 集合增加 recent_commits — 工作区有最近 commit 时自动 forecast 不再抑制 - prompt.py: FORECAST_INSTRUCTIONS 增加 2 条 recent_commits 指引, 让 LLM 把 commit 主题作为"下一步预测"的核心信号 - fallback.py: 新增 _recent_commits rule,注册到 fallback_rules() - 当 LLM 没给建议但有 commit 时,基于最近 commit 主题生成 "基于最近提交继续" fallback,confidence=0.58 - intent_stage=pause 时仍被 fallback_suggestions 开头拦截 测试: - test_workspace_signals.py: 采集逻辑 / 非 git / pipe 污染回归 - test_service.py: gate 信号 / 弱信号仍抑制 / end-to-end fallback - test_fallback_rules.py: rule 触发 / 沉默时无建议 73 个 intent_forecast 测试全绿,75 个含 TUI forecast 显示全绿, 真实 git repo smoke test 验证 10 条 commit 完整采集,中文 subject 无失真。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat: latent_memory记忆系统代码合入 Co-authored-by: cxjjj<chenxujie4@huawei.com> | 12 天前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat: latent_memory记忆系统代码合入 Co-authored-by: cxjjj<chenxujie4@huawei.com> | 12 天前 | |
feat(goal): 完善目标生命周期、模型运行时与 Demo Factory Co-authored-by: doufangcheng<doufangcheng@huawei.com> | 1 个月前 | |
fix(gateway): 稳定 orchestrator 的 review、rebase、retry 及飞书 delivery 工作流 Co-authored-by: Gideon_Zhao<Gideon_Zhao@noreply.gitcode.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
feat(orchestrator): filter issues by title prefix | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
style(codestyle): 统一代码风格修复 - 格式化多行字典推导式为单行以保持一致性 - 添加缺失的换行符以改善代码可读性 - 统一字符串引号使用双引号格式 - 修复长字符串连接的换行格式 - 移除列表末尾多余逗号保持格式一致 - 格式化长函数调用参数的换行对齐 - 添加必要的换行以符合代码风格指南 | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
feat(sop): F-55/56/57/157 转换、资源目录与可执行宏 Co-authored-by: gkawuiq8<zhuyikun@huawei.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(orchestrator): F-129 人机协同闭环 — pause/stop/resume/inject/takeover 五条命令完整实现 Co-authored-by: evanTang<tangcanhui@huawei.com> | 1 个月前 | |
feat(sop): F-55/56/57/157 转换、资源目录与可执行宏 Co-authored-by: gkawuiq8<zhuyikun@huawei.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
merge(upstream): refresh 398b44f team target Co-authored-by: yeyunyao<yeyunyao@huawei.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
feat(sop): F-55/56/57/157 转换、资源目录与可执行宏 Co-authored-by: gkawuiq8<zhuyikun@huawei.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
feat(telemetry): 添加回合和用量记录功能 - 在 telemetry 模块中新增 record_turn 和 record_usage 函数 - 在聚合器中添加回合、用量和生命周期指标统计 - 更新桥接逻辑以将 turn_end 映射为回合事件 - 在成本跟踪器中集成用量记录功能 - 扩展事件类型支持 TURN 和 USAGE 类型 - 更新测试用例验证新的指标收集功能 | 26 天前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
merge(upstream): refresh 398b44f team target Co-authored-by: yeyunyao<yeyunyao@huawei.com> | 1 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(lkb): 逻辑看板 Plan Graph 链路收敛与宿主集成,及版本问题统一修复 Co-authored-by: Gideon_Zhao<Gideon_Zhao@noreply.gitcode.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
feat: latent_memory记忆系统代码合入 Co-authored-by: cxjjj<chenxujie4@huawei.com> | 12 天前 | |
feat(tests): 增强测试配置以提供全面的隔离保证 - 添加了 src 子模块重新绑定功能,确保 monkeypatch.setattr 在测试后仍能解析 - 实现了内存密钥环后端以防止 MCP 令牌存储测试泄露到真实操作系统密钥链 - 引入了 isolated_tmp_repo 固定装置用于初始化确定性 git 仓库 - 为 patched-path 子模块创建了数据驱动的自动加载机制 - 添加了带有详细错误信息的辅助函数 _git 用于运行 git 命令 - 扩展了密钥环后端实现以支持更多凭证操作方法 - 增强了自动应用密钥环隔离以提供防御深度保护 | 1 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 | |
style(codestyle): 统一代码风格修复 - 格式化多行字典推导式为单行以保持一致性 - 添加缺失的换行符以改善代码可读性 - 统一字符串引号使用双引号格式 - 修复长字符串连接的换行格式 - 移除列表末尾多余逗号保持格式一致 - 格式化长函数调用参数的换行对齐 - 添加必要的换行以符合代码风格指南 | 2 个月前 | |
chore(gitattributes): 统一行尾为 LF(除 Windows 脚本)+ 批量规范化 4155 个文件 扩展 .gitattributes 覆盖 Python/JS/TS/JSON/Markdown/YAML/TOML/HTML/CSS 等文本 文件,统一为 LF;Windows 原生脚本(.ps1/.bat/.cmd)保持 CRLF;二进制资源 (图片/字体/音视频/压缩包)显式标记为 binary。 应用新规则后批量规范化 4155 个文件 — 全部为纯行尾变更(CRLF→LF),无任何 内容改动。差异统计:2586 .py、1159 .patch、160 .md、59 .json、52 .jsx、 25 .html、20 .tsx、16 .css、15 .js、13 .ts、8 .yml、7 .txt、7 .j2、 3 .raw、2 .yaml、2 .list、2 .example、1 .toml、1 .theme、1 .template, 外加 install.ps1(blob 从 CRLF 改为 LF,working tree 保持 CRLF 不变)。 后续建议开发者本地设置 core.autocrlf=input,让提交时自动规范化。 Co-Authored-By: MiniMax-M3 <MiniMax-AI@claude-code-best.win> | 2 个月前 | |
refactor(project): replace feature-number references with direct descriptions Remove references to the deleted docs/FEATURE_PLAN.md and docs/PROGRESS.md and rewrite F-N / SR-AR feature-number mentions in code, templates and tests into plain feature descriptions, so the codebase no longer depends on the removed planning documents. - drop FEATURE_PLAN.md / PROGRESS.md doc references across src, extensions, clawcodex_ext, telemetry, tests, docs and templates - rewrite F-N / SR-N.N / AR-N references in comments, docstrings, CLI help, tool descriptions and templates into direct feature descriptions - keep test fixture strings (e.g. id "F-40") and spec_audit protocol IDs (F-001 / S-001 / C-001) untouched - add layer-1 / layer-2 migration analysis docs and split upstream patch Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com> | 1 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 4 天前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 3 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 3 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 12 天前 | ||
| 2 个月前 | ||
| 12 天前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 26 天前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 12 天前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 |