untracked files on main: dceb101 feat(#63): IMP-34 R1 donor capacity measured bound (u1+u2)

This commit is contained in:
2026-05-21 22:07:41 +09:00
commit 8f085a28d3
3220 changed files with 985495 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import json
with open(".orchestrator/tmp/issue7_comments.json","r",encoding="utf-8") as f:
data = json.load(f)
print("count=", len(data))
# Print the last 5 comments (likely closing comments)
for c in data[-8:]:
print("---")
print("id=", c.get("id"))
print("created=", c.get("created_at"))
body = c.get("body","")
print("body_len=", len(body))
print(body[:1500])