This commit is contained in:
Neo
2026-03-15 10:15:02 +08:00
parent 2dd217522c
commit 72bb11b34f
916 changed files with 65306 additions and 16102803 deletions

11
scripts/ops/_find.py Normal file
View File

@@ -0,0 +1,11 @@
path = 'c:/NeoZQYY/docs/h5_ui/compare/ORCHESTRATION-PLAN.md'
with open(path, 'rb') as f:
raw = f.read()
crlf = b'\r\n' in raw
lines = raw.decode('utf-8').replace('\r\n', '\n').split('\n')
print(f'Total: {len(lines)}')
# Show first 6 lines and lines around 28-45 (main agent section)
print('--- HEAD ---')
for i in range(0, 6): print(f'{i+1}: {repr(lines[i])}')
print('--- LINES 28-50 ---')
for i in range(27, 50): print(f'{i+1}: {repr(lines[i])}')