From 8f78d22cccd451b57373fe4544487568becf978e Mon Sep 17 00:00:00 2001 From: csh Date: Mon, 22 Dec 2025 14:28:47 +0800 Subject: [PATCH] :bug: fix(sync_standards): generate minimal AGENTS.md --- scripts/sync_standards.bat | 1 - scripts/sync_standards.ps1 | 1 - scripts/sync_standards.sh | 1 - 3 files changed, 3 deletions(-) diff --git a/scripts/sync_standards.bat b/scripts/sync_standards.bat index b4d0c6c..6504abb 100644 --- a/scripts/sync_standards.bat +++ b/scripts/sync_standards.bat @@ -126,7 +126,6 @@ if not exist "%ROOT%\AGENTS.md" ( >> "%ROOT%\AGENTS.md" echo 请以 `.agents/` 下的规则为准: >> "%ROOT%\AGENTS.md" echo. >> "%ROOT%\AGENTS.md" echo - 入口:`.agents/index.md` - >> "%ROOT%\AGENTS.md" echo - 语言规则:`.agents/tsl/index.md`、`.agents/cpp/index.md`、`.agents/python/index.md` echo Created AGENTS.md ) diff --git a/scripts/sync_standards.ps1 b/scripts/sync_standards.ps1 index 716612b..e62eb71 100644 --- a/scripts/sync_standards.ps1 +++ b/scripts/sync_standards.ps1 @@ -129,7 +129,6 @@ if (-not (Test-Path $AgentsMd)) { 请以 `.agents/` 下的规则为准: - 入口:`.agents/index.md` -- 语言规则:`.agents/tsl/index.md`、`.agents/cpp/index.md`、`.agents/python/index.md` '@ | Set-Content -Path $AgentsMd -Encoding UTF8 Write-Host "Created AGENTS.md" } diff --git a/scripts/sync_standards.sh b/scripts/sync_standards.sh index 0053404..674e875 100644 --- a/scripts/sync_standards.sh +++ b/scripts/sync_standards.sh @@ -133,7 +133,6 @@ if [ ! -f "$AGENTS_MD" ]; then 请以 `.agents/` 下的规则为准: - 入口:`.agents/index.md` -- 语言规则:`.agents/tsl/index.md`、`.agents/cpp/index.md`、`.agents/python/index.md` EOF echo "Created AGENTS.md" fi