diff --git a/scripts/sync_standards.bat b/scripts/sync_standards.bat index 7532e55..c09aa14 100644 --- a/scripts/sync_standards.bat +++ b/scripts/sync_standards.bat @@ -155,6 +155,7 @@ 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`、`.agents/markdown/index.md` echo Created AGENTS.md ) diff --git a/scripts/sync_standards.ps1 b/scripts/sync_standards.ps1 index 6dc642d..b563cc7 100644 --- a/scripts/sync_standards.ps1 +++ b/scripts/sync_standards.ps1 @@ -148,6 +148,7 @@ if (-not (Test-Path $AgentsMd)) { 请以 `.agents/` 下的规则为准: - 入口:`.agents/index.md` +- 语言规则:`.agents/tsl/index.md`、`.agents/cpp/index.md`、`.agents/python/index.md`、`.agents/markdown/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 0d73026..144dfca 100644 --- a/scripts/sync_standards.sh +++ b/scripts/sync_standards.sh @@ -154,6 +154,7 @@ if [ ! -f "$AGENTS_MD" ]; then 请以 `.agents/` 下的规则为准: - 入口:`.agents/index.md` +- 语言规则:`.agents/tsl/index.md`、`.agents/cpp/index.md`、`.agents/python/index.md`、`.agents/markdown/index.md` EOF echo "Created AGENTS.md" fi