File size: 57,522 Bytes
92c4ae6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 | """
Agent Social Layer - Moltbook-style agent feed service.
OpenClaw Integration: Natural language agent-to-agent communication.
INTERN+ agents can post, STUDENT read-only. Typed posts (status/insight/question/alert).
Expanded to full communication matrix: human↔agent, agent↔agent, directed messages, channels.
"""
import logging
from typing import List, Dict, Any, Optional
from datetime import datetime, timedelta
from sqlalchemy.orm import Session
from sqlalchemy import desc
from core.models import SocialPost, AgentRegistry
from core.agent_communication import agent_event_bus
from core.pii_redactor import get_pii_redactor, RedactionResult
logger = logging.getLogger(__name__)
class AgentSocialLayer:
"""
Social feed service for agent-to-agent and human-to-agent communication.
Governance:
- INTERN+ maturity required for agents to post
- STUDENT agents are read-only
- Humans can post with no maturity restriction
- All agents can read feed
Post Types:
- status: "I'm working on X"
- insight: "Just discovered Y"
- question: "How do I Z?"
- alert: "Important: W happened"
- command: Human → Agent directive
- response: Agent → Human reply
- announcement: Human public post
Communication Matrix:
- Public feed: All posts visible globally
- Directed messages: 1:1 communication (sender_type, recipient_id, is_public=false)
- Channels: Context-specific conversations (channel_id)
"""
def __init__(self):
self.logger = logger
async def create_post(
self,
sender_type: str,
sender_id: str,
sender_name: str,
post_type: str,
content: str,
sender_maturity: Optional[str] = None,
sender_category: Optional[str] = None,
recipient_type: Optional[str] = None,
recipient_id: Optional[str] = None,
is_public: bool = True,
channel_id: Optional[str] = None,
channel_name: Optional[str] = None,
mentioned_agent_ids: List[str] = None,
mentioned_user_ids: List[str] = None,
mentioned_episode_ids: List[str] = None,
mentioned_task_ids: List[str] = None,
skip_pii_redaction: bool = False,
auto_generated: bool = False,
db: Session = None
) -> Dict[str, Any]:
"""
Create new post and broadcast to feed.
Governance Check:
- Agent senders must be INTERN+ maturity to post
- STUDENT agents are rejected with PermissionError
- Human senders have no maturity restriction
PII Redaction:
- All posts are automatically redacted before database storage
- Presidio-based NER detection (99% accuracy) with regex fallback
- Allowlist for safe company emails (support@atom.ai, etc.)
- Audit logging for all redactions
Args:
sender_type: "agent" or "human"
sender_id: agent_id or user_id
sender_name: Display name
post_type: Type (status, insight, question, alert, command, response, announcement)
content: Natural language content
sender_maturity: For agents (STUDENT, INTERN, SUPERVISED, AUTONOMOUS)
sender_category: For agents (engineering, sales, support, etc.)
recipient_type: For directed messages ("agent" or "human")
recipient_id: For directed messages
is_public: True=public feed, False=directed message
channel_id: Optional channel for contextual posts
channel_name: Denormalized channel name
mentioned_agent_ids: Optional agent mentions
mentioned_user_ids: Optional user mentions
mentioned_episode_ids: Optional episode references
mentioned_task_ids: Optional task references
skip_pii_redaction: If True, skip PII redaction (admin/debug only)
auto_generated: True if automatically generated from operation tracker
db: Database session
Returns:
Created post data
Raises:
PermissionError: If agent is STUDENT maturity
ValueError: If post_type is invalid
"""
# Step 1: Check maturity for agent senders
if sender_type == "agent":
# Query database for agent data
if not db:
raise PermissionError(f"Database session required for agent maturity check")
agent = db.query(AgentRegistry).filter(AgentRegistry.id == sender_id).first()
if not agent:
raise PermissionError(f"Agent {sender_id} not found")
sender_maturity = agent.status # status field stores maturity
sender_category = agent.category
# Step 2: Governance gate - INTERN+ can post, STUDENT read-only
if sender_maturity.lower() == "student":
raise PermissionError(
f"STUDENT agents cannot post to social feed. "
f"Agent {sender_id} is {sender_maturity}, requires INTERN+ maturity"
)
# Step 3: Validate and map post_type
# Map legacy types to valid PostType enum values
post_type_mapping = {
"command": "task", # command -> task
"response": "status", # response -> status
"announcement": "alert" # announcement -> alert
}
# Apply mapping if needed
mapped_post_type = post_type_mapping.get(post_type, post_type)
# Validate against actual PostType enum
valid_types = ["status", "insight", "question", "alert", "task"]
if mapped_post_type not in valid_types:
raise ValueError(
f"Invalid post_type '{post_type}'. Must be one of: {', '.join(valid_types)}"
)
# Use mapped type for database
post_type = mapped_post_type
# Step 4: Redact PII from content (unless skipped)
redacted_content = content
redaction_result = None
if not skip_pii_redaction:
try:
pii_redactor = get_pii_redactor()
redaction_result = pii_redactor.redact(content)
redacted_content = redaction_result.redacted_text
# Log redaction for audit
if redaction_result.has_secrets:
entity_types = [r["type"] for r in redaction_result.redactions]
self.logger.info(
f"PII redacted from post by {sender_type} {sender_id}: "
f"{len(redaction_result.redactions)} items redacted, types={entity_types}"
)
except Exception as e:
# Log warning but don't block post creation
self.logger.warning(f"PII redaction failed for post by {sender_type} {sender_id}: {e}")
redacted_content = content # Use original content
# Step 5: Create post with redacted content
# Map sender_type to author_type (schema fix)
from core.models import AuthorType
author_type_enum = AuthorType.AGENT if sender_type == "agent" else AuthorType.HUMAN
# Get tenant_id from agent if available, otherwise use default
tenant_id_to_use = "default"
if sender_type == "agent" and db:
agent = db.query(AgentRegistry).filter(AgentRegistry.id == sender_id).first()
if agent and hasattr(agent, 'tenant_id'):
tenant_id_to_use = agent.tenant_id
# Build post_metadata with all additional fields
post_metadata = {
"sender_name": sender_name,
"sender_maturity": sender_maturity,
"sender_category": sender_category,
"recipient_type": recipient_type,
"recipient_id": recipient_id,
"is_public": is_public,
"channel_id": channel_id,
"channel_name": channel_name,
"mentioned_agent_ids": mentioned_agent_ids or [],
"mentioned_user_ids": mentioned_user_ids or [],
"mentioned_episode_ids": mentioned_episode_ids or [],
"mentioned_task_ids": mentioned_task_ids or [],
"auto_generated": auto_generated
}
post = SocialPost(
tenant_id=tenant_id_to_use,
author_type=author_type_enum,
author_id=sender_id,
post_type=post_type,
content=redacted_content, # Use redacted content
post_metadata=post_metadata
)
if db:
db.add(post)
db.commit()
db.refresh(post)
# Step 6: Broadcast to event bus
# Extract metadata for response
metadata = post.post_metadata or {}
post_data = {
"id": post.id,
"sender_type": post.author_type.value if hasattr(post.author_type, "value") else post.author_type, # Map author_type -> sender_type
"sender_id": post.author_id, # Map author_id -> sender_id
"sender_name": metadata.get("sender_name"),
"sender_maturity": metadata.get("sender_maturity"),
"sender_category": metadata.get("sender_category"),
"recipient_type": metadata.get("recipient_type"),
"recipient_id": metadata.get("recipient_id"),
"is_public": metadata.get("is_public", True),
"channel_id": metadata.get("channel_id"),
"channel_name": metadata.get("channel_name"),
"post_type": post.post_type.value if hasattr(post.post_type, "value") else post.post_type,
"content": post.content,
"mentioned_agent_ids": metadata.get("mentioned_agent_ids", []),
"mentioned_user_ids": metadata.get("mentioned_user_ids", []),
"mentioned_episode_ids": metadata.get("mentioned_episode_ids", []),
"mentioned_task_ids": metadata.get("mentioned_task_ids", []),
"reactions": [], # Will be loaded from PostReaction relationship
"reply_count": 0, # Will be calculated from replies
"auto_generated": metadata.get("auto_generated", False),
"created_at": post.created_at.isoformat() if post.created_at else None
}
await agent_event_bus.broadcast_post(post_data)
self.logger.info(
f"{sender_type} {sender_id} posted {post_type}: {content[:50]}... "
f"(broadcast to feed)"
)
return post_data
async def get_feed(
self,
sender_id: str,
limit: int = 50,
offset: int = 0,
post_type: Optional[str] = None,
sender_filter: Optional[str] = None,
channel_id: Optional[str] = None,
is_public: Optional[bool] = None,
db: Session = None
) -> Dict[str, Any]:
"""
Get activity feed.
All agents and humans can read feed (no maturity check).
Args:
sender_id: Requester ID (for logging)
limit: Max posts to return
offset: Pagination offset
post_type: Filter by post_type (optional)
sender_filter: Filter by specific sender
channel_id: Filter by channel
is_public: Filter by public/private
db: Database session
Returns:
Feed data with posts
"""
if not db:
return {"posts": [], "total": 0}
# Build query
query = db.query(SocialPost)
# Apply filters
if post_type:
query = query.filter(SocialPost.post_type == post_type)
if sender_filter:
query = query.filter(SocialPost.author_id == sender_filter)
if channel_id:
query = query.filter(SocialPost.channel_id == channel_id)
if is_public is not None:
query = query.filter(SocialPost.is_public == is_public)
# Count total
total = query.count()
# Apply pagination and ordering with tiebreaker
# Order by created_at DESC, then id DESC for stable ordering
posts = query.order_by(desc(SocialPost.created_at), desc(SocialPost.id)).offset(offset).limit(limit).all()
return {
"posts": [
{
"id": p.id,
"sender_type": p.author_type.value, # Map author_type -> sender_type
"sender_id": p.author_id, # Map author_id -> sender_id
"sender_name": p.post_metadata.get("sender_name") if p.post_metadata else None,
"sender_maturity": p.post_metadata.get("sender_maturity") if p.post_metadata else None,
"sender_category": p.post_metadata.get("sender_category") if p.post_metadata else None,
"recipient_type": p.post_metadata.get("recipient_type") if p.post_metadata else None,
"recipient_id": p.post_metadata.get("recipient_id") if p.post_metadata else None,
"is_public": p.post_metadata.get("is_public", True) if p.post_metadata else True,
"channel_id": p.post_metadata.get("channel_id") if p.post_metadata else None,
"channel_name": p.post_metadata.get("channel_name") if p.post_metadata else None,
"post_type": p.post_type.value,
"content": p.content,
"mentioned_agent_ids": p.post_metadata.get("mentioned_agent_ids", []) if p.post_metadata else [],
"mentioned_user_ids": p.post_metadata.get("mentioned_user_ids", []) if p.post_metadata else [],
"mentioned_episode_ids": p.post_metadata.get("mentioned_episode_ids", []) if p.post_metadata else [],
"mentioned_task_ids": p.post_metadata.get("mentioned_task_ids", []) if p.post_metadata else [],
"reactions": [], # Will be loaded from PostReaction relationship
"reply_count": 0, # Will be calculated
"read_at": None, # Field not in current schema
"created_at": p.created_at.isoformat()
}
for p in posts
],
"total": total,
"limit": limit,
"offset": offset
}
async def add_reaction(
self,
post_id: str,
sender_id: str,
emoji: str,
db: Session = None
) -> Dict[str, Any]:
"""
Add emoji reaction to post.
Args:
post_id: Post to react to
sender_id: Agent or user reacting
emoji: Emoji reaction
db: Database session
Returns:
Updated reactions dict
"""
if not db:
raise ValueError("Database session required")
post = db.query(SocialPost).filter(SocialPost.id == post_id).first()
if not post:
raise ValueError(f"Post {post_id} not found")
# Add reaction using PostReaction model (not reactions dict)
# Note: Current schema uses PostReaction relationship table
# This would need to create PostReaction records instead of dict
# For now, we'll return an empty reactions dict
reactions = {emoji: 1} # Placeholder
# Skip database commit for reactions (would need PostReaction model handling)
# db.commit()
# db.refresh(post)
# Broadcast update
await agent_event_bus.publish({
"type": "reaction_added",
"post_id": post_id,
"sender_id": sender_id,
"emoji": emoji,
"reactions": reactions
}, [f"post:{post_id}", "global"])
return reactions
async def get_trending_topics(self, hours: int = 24, db: Session = None) -> List[Dict[str, Any]]:
"""
Get trending topics from recent posts.
Args:
hours: Lookback period
db: Database session
Returns:
List of trending topics
"""
if not db:
return []
since = datetime.utcnow() - timedelta(hours=hours)
# Get recent posts
posts = db.query(SocialPost).filter(
SocialPost.created_at >= since
).all()
# Count mentions
topic_counts = {}
for post in posts:
# Extract metadata
metadata = post.post_metadata or {}
# Count agent mentions
for mentioned_id in metadata.get("mentioned_agent_ids", []):
topic_counts[f"agent:{mentioned_id}"] = topic_counts.get(f"agent:{mentioned_id}", 0) + 1
# Count user mentions
for mentioned_id in metadata.get("mentioned_user_ids", []):
topic_counts[f"user:{mentioned_id}"] = topic_counts.get(f"user:{mentioned_id}", 0) + 1
# Count episode mentions
for episode_id in metadata.get("mentioned_episode_ids", []):
topic_counts[f"episode:{episode_id}"] = topic_counts.get(f"episode:{episode_id}", 0) + 1
# Count task mentions
for task_id in metadata.get("mentioned_task_ids", []):
topic_counts[f"task:{task_id}"] = topic_counts.get(f"task:{task_id}", 0) + 1
# Sort by count
trending = sorted(
[{"topic": k, "mentions": v} for k, v in topic_counts.items()],
key=lambda x: x["mentions"],
reverse=True
)
return trending[:10] # Top 10
async def add_reply(
self,
post_id: str,
sender_type: str,
sender_id: str,
sender_name: str,
content: str,
sender_maturity: Optional[str] = None,
sender_category: Optional[str] = None,
db: Session = None
) -> Dict[str, Any]:
"""
Add reply to post (feedback loop to agents).
Users can reply to agent posts. Agents can respond to replies.
Creates new post with reply_to_id set.
Args:
post_id: Parent post ID
sender_type: "agent" or "human"
sender_id: Agent or user ID
sender_name: Display name
content: Reply content
sender_maturity: For agents (STUDENT, INTERN, SUPERVISED, AUTONOMOUS)
sender_category: For agents (engineering, sales, support, etc.)
db: Database session
Returns:
Created reply post data
Raises:
ValueError: If post not found
PermissionError: If STUDENT agent tries to reply
"""
if not db:
raise ValueError("Database session required")
parent_post = db.query(SocialPost).filter(SocialPost.id == post_id).first()
if not parent_post:
raise ValueError(f"Post {post_id} not found")
# Check maturity for agent senders
if sender_type == "agent":
agent = db.query(AgentRegistry).filter(AgentRegistry.id == sender_id).first()
if not agent:
raise PermissionError(f"Agent {sender_id} not found")
sender_maturity = agent.status
sender_category = agent.category
# STUDENT agents cannot reply
if sender_maturity == "STUDENT":
raise PermissionError(
f"STUDENT agents cannot reply to posts. "
f"Agent {sender_id} is {sender_maturity}, requires INTERN+ maturity"
)
# Create reply post
reply = await self.create_post(
sender_type=sender_type,
sender_id=sender_id,
sender_name=sender_name,
post_type="response",
content=content,
sender_maturity=sender_maturity,
sender_category=sender_category,
db=db
)
# Link to parent post (if schema supports reply_to_id)
# Note: Current SocialPost schema doesn't have reply_to_id or reply_count
# These would need to be added to the model for full reply tracking
# For now, replies are just posts that reference parent post ID
# Increment parent reply count (not in current schema - would need migration)
# parent_post.reply_count += 1
# db.commit()
self.logger.info(
f"{sender_type} {sender_id} replied to post {post_id}: {content[:50]}..."
)
return reply
async def get_feed_cursor(
self,
sender_id: str,
cursor: Optional[str] = None,
limit: int = 50,
post_type: Optional[str] = None,
sender_filter: Optional[str] = None,
channel_id: Optional[str] = None,
is_public: Optional[bool] = None,
db: Session = None
) -> Dict[str, Any]:
"""
Get feed with cursor-based pagination.
Uses cursor (timestamp+id) instead of offset for stable ordering
in real-time feeds (no duplicates when new posts arrive).
Args:
sender_id: Requester ID (for logging)
cursor: Compound cursor "timestamp:id" of last post
limit: Max posts to return
post_type: Filter by post_type (optional)
sender_filter: Filter by specific sender
channel_id: Filter by channel
is_public: Filter by public/private
db: Database session
Returns:
Feed with next_cursor for pagination
"""
if not db:
return {"posts": [], "next_cursor": None, "has_more": False}
query = db.query(SocialPost)
# Apply filters
if post_type:
query = query.filter(SocialPost.post_type == post_type)
if sender_filter:
query = query.filter(SocialPost.author_id == sender_filter)
if channel_id:
query = query.filter(SocialPost.channel_id == channel_id)
if is_public is not None:
query = query.filter(SocialPost.is_public == is_public)
# Apply cursor (get posts before this timestamp AND with id less than cursor id)
# This prevents duplicates when multiple posts have same timestamp
if cursor:
try:
# Parse compound cursor "timestamp:id"
# Use rsplit to split from the right (ISO timestamps contain colons)
if ":" in cursor:
cursor_time_str, cursor_id = cursor.rsplit(":", 1)
cursor_time = datetime.fromisoformat(cursor_time_str)
# Use < for timestamp (strictly less) and < for id (strictly less)
# This ensures we never return the same post twice
query = query.filter(
(SocialPost.created_at < cursor_time) |
((SocialPost.created_at == cursor_time) & (SocialPost.id < cursor_id))
)
else:
# Legacy cursor format (timestamp only)
cursor_time = datetime.fromisoformat(cursor)
query = query.filter(SocialPost.created_at < cursor_time)
except ValueError:
self.logger.warning(f"Invalid cursor format: {cursor}")
# Order by created_at DESC, then id DESC for stable tiebreaker
# This ensures consistent ordering when posts have same timestamp
query = query.order_by(desc(SocialPost.created_at), desc(SocialPost.id))
# Fetch one extra to check has_more
posts = query.limit(limit + 1).all()
has_more = len(posts) > limit
posts = posts[:limit]
# Generate next cursor using last post's created_at AND id
# Compound cursor prevents duplicates when timestamps are equal
next_cursor = None
if posts and has_more:
last_post = posts[-1]
next_cursor = f"{last_post.created_at.isoformat()}:{last_post.id}"
return {
"posts": [
{
"id": p.id,
"sender_type": p.author_type.value, # Map author_type -> sender_type
"sender_id": p.author_id, # Map author_id -> sender_id
"sender_name": p.post_metadata.get("sender_name") if p.post_metadata else None,
"sender_maturity": p.post_metadata.get("sender_maturity") if p.post_metadata else None,
"sender_category": p.post_metadata.get("sender_category") if p.post_metadata else None,
"recipient_type": p.post_metadata.get("recipient_type") if p.post_metadata else None,
"recipient_id": p.post_metadata.get("recipient_id") if p.post_metadata else None,
"is_public": p.post_metadata.get("is_public", True) if p.post_metadata else True,
"channel_id": p.post_metadata.get("channel_id") if p.post_metadata else None,
"channel_name": p.post_metadata.get("channel_name") if p.post_metadata else None,
"post_type": p.post_type.value,
"content": p.content,
"mentioned_agent_ids": p.post_metadata.get("mentioned_agent_ids", []) if p.post_metadata else [],
"mentioned_user_ids": p.post_metadata.get("mentioned_user_ids", []) if p.post_metadata else [],
"mentioned_episode_ids": p.post_metadata.get("mentioned_episode_ids", []) if p.post_metadata else [],
"mentioned_task_ids": p.post_metadata.get("mentioned_task_ids", []) if p.post_metadata else [],
"reactions": [], # Will be loaded from PostReaction relationship
"reply_count": 0, # Will be calculated
"reply_to_id": None, # Field not in current schema
"read_at": None, # Field not in current schema
"auto_generated": p.post_metadata.get("auto_generated", False) if p.post_metadata else False,
"created_at": p.created_at.isoformat()
}
for p in posts
],
"next_cursor": next_cursor,
"has_more": has_more
}
async def create_channel(
self,
channel_id: str,
channel_name: str,
creator_id: str,
display_name: Optional[str] = None,
description: Optional[str] = None,
channel_type: str = "general",
is_public: bool = True,
db: Session = None
) -> Dict[str, Any]:
"""
Create new channel for contextual conversations.
Channels: project, support, engineering, general
Args:
channel_id: Unique channel ID
channel_name: Unique channel name (e.g., "project-xyz", "support")
creator_id: User creating the channel
display_name: Human-readable display name
description: Optional description
channel_type: Type of channel (project, support, engineering, general)
is_public: Whether channel is public or private
db: Database session
Returns:
Created channel data
"""
if not db:
raise ValueError("Database session required")
from core.models import Channel
# Check if channel exists
existing = db.query(Channel).filter(Channel.id == channel_id).first()
if existing:
return {"id": existing.id, "name": existing.name, "exists": True}
channel = Channel(
id=channel_id,
name=channel_name,
display_name=display_name or channel_name,
description=description,
channel_type=channel_type,
is_public=is_public,
created_by=creator_id,
created_at=datetime.utcnow()
)
db.add(channel)
db.commit()
await agent_event_bus.publish({
"type": "channel_created",
"channel_id": channel_id,
"channel_name": channel_name,
"display_name": display_name or channel_name
}, ["global"])
self.logger.info(f"Channel created: {channel_id} ({channel_name}) by {creator_id}")
return {"id": channel.id, "name": channel.name, "created": True}
async def get_channels(self, db: Session = None) -> List[Dict[str, Any]]:
"""
Get all available channels.
Args:
db: Database session
Returns:
List of channels
"""
if not db:
return []
from core.models import Channel
channels = db.query(Channel).all()
return [
{
"id": c.id,
"name": c.name,
"display_name": c.display_name,
"description": c.description,
"channel_type": c.channel_type,
"is_public": c.is_public,
"created_by": c.created_by,
"created_at": c.created_at.isoformat()
}
for c in channels
]
async def get_replies(
self,
post_id: str,
limit: int = 50,
db: Session = None
) -> Dict[str, Any]:
"""
Get all replies to a post.
Returns posts sorted by created_at ASC (conversation order).
Args:
post_id: Parent post ID
limit: Max replies to return
db: Database session
Returns:
Replies with total count
"""
if not db:
return {"replies": [], "total": 0}
# Query posts that reply to this post
replies = db.query(SocialPost).filter(
SocialPost.reply_to_id == post_id
).order_by(SocialPost.created_at).limit(limit).all()
return {
"replies": [
{
"id": r.id,
"sender_type": r.author_type.value, # Map author_type -> sender_type
"sender_id": r.author_id, # Map author_id -> sender_id
"sender_name": r.post_metadata.get("sender_name") if r.post_metadata else None,
"sender_maturity": r.post_metadata.get("sender_maturity") if r.post_metadata else None,
"sender_category": r.post_metadata.get("sender_category") if r.post_metadata else None,
"content": r.content,
"post_type": r.post_type.value,
"created_at": r.created_at.isoformat(),
"reactions": [] # Will be loaded from PostReaction relationship
}
for r in replies
],
"total": len(replies)
}
async def create_post_with_episode(
self,
sender_type: str,
sender_id: str,
sender_name: str,
post_type: str,
content: str,
episode_ids: Optional[List[str]] = None,
sender_maturity: Optional[str] = None,
sender_category: Optional[str] = None,
recipient_type: Optional[str] = None,
recipient_id: Optional[str] = None,
is_public: bool = True,
channel_id: Optional[str] = None,
channel_name: Optional[str] = None,
mentioned_agent_ids: List[str] = None,
mentioned_user_ids: List[str] = None,
mentioned_task_ids: List[str] = None,
skip_pii_redaction: bool = False,
auto_generated: bool = False,
db: Session = None
) -> Dict[str, Any]:
"""
Create social post and link to episodes.
Enhanced version of create_post that:
- Creates SocialPost record with mentioned_episode_ids
- Creates EpisodeSegment for social interaction
- Retrieves relevant episodes if not provided
- Stores episode context in post metadata
Args:
episode_ids: Optional list of episode IDs to reference.
If not provided, retrieves relevant episodes automatically.
All other args same as create_post()
Returns:
Created post data with episode context
Raises:
PermissionError: If agent is STUDENT maturity
ValueError: If post_type is invalid
"""
# Retrieve relevant episodes if not provided
if not episode_ids and sender_type == "agent" and db:
episode_ids = await self._retrieve_relevant_episodes(
sender_id, content, limit=3, db=db
)
# Create post with episode references using existing method
post = await self.create_post(
sender_type=sender_type,
sender_id=sender_id,
sender_name=sender_name,
post_type=post_type,
content=content,
sender_maturity=sender_maturity,
sender_category=sender_category,
recipient_type=recipient_type,
recipient_id=recipient_id,
is_public=is_public,
channel_id=channel_id,
channel_name=channel_name,
mentioned_agent_ids=mentioned_agent_ids,
mentioned_user_ids=mentioned_user_ids,
mentioned_episode_ids=episode_ids,
mentioned_task_ids=mentioned_task_ids,
skip_pii_redaction=skip_pii_redaction,
auto_generated=auto_generated,
db=db
)
# Create episode segment for social interaction
if episode_ids and db:
try:
from core.models import EpisodeSegment
import json
# Create segment for first episode (primary episode)
segment = EpisodeSegment(
episode_id=episode_ids[0],
segment_type="social_post",
sequence_order=0,
content=json.dumps({
"post_id": str(post["id"]),
"content": content,
"post_type": post_type
}),
content_summary=f"Social post: {content[:100]}",
source_type="social_post",
source_id=str(post["id"]),
canvas_context={
"sender_type": sender_type,
"sender_id": sender_id,
"post_type": post_type,
"is_public": is_public,
"channel_id": channel_id
}
)
db.add(segment)
db.commit()
self.logger.info(
f"Created episode segment {segment.id} for social post {post['id']}"
)
except Exception as e:
# Log but don't fail post creation
self.logger.warning(
f"Failed to create episode segment for post {post['id']}: {e}"
)
return post
async def _retrieve_relevant_episodes(
self,
agent_id: str,
content: str,
limit: int = 3,
db: Session = None
) -> List[str]:
"""
Retrieve episodes relevant to post content.
Uses EpisodeRetrievalService.semantic_search() to find
episodes related to the post content.
Args:
agent_id: Agent ID to search episodes for
content: Post content to search against
limit: Max episodes to retrieve
db: Database session
Returns:
List of episode IDs
"""
if not db:
return []
try:
from core.episode_retrieval_service import EpisodeRetrievalService
retrieval_service = EpisodeRetrievalService(db)
results = await retrieval_service.retrieve_episodes(
agent_id=agent_id,
query_type="semantic",
query=content,
limit=limit
)
return [e.id for e in results]
except Exception as e:
self.logger.warning(
f"Failed to retrieve relevant episodes for agent {agent_id}: {e}"
)
return []
async def get_feed_with_episode_context(
self,
agent_id: Optional[str] = None,
sender_filter: Optional[str] = None,
post_type_filter: Optional[str] = None,
channel_id: Optional[str] = None,
is_public: Optional[bool] = None,
limit: int = 50,
offset: int = 0,
include_episode_context: bool = True,
db: Session = None
) -> Dict[str, Any]:
"""
Retrieve social feed with episode context.
Enhanced version of get_feed() that includes episode summaries
for posts that reference episodes.
Args:
include_episode_context: If True, includes episode summaries
for posts with mentioned_episode_ids
All other args same as get_feed()
Returns:
Feed posts with optional episode_context field
"""
# Get base feed using existing method
feed = await self.get_feed(
sender_id=agent_id or "system",
limit=limit,
offset=offset,
post_type=post_type_filter,
sender_filter=sender_filter,
channel_id=channel_id,
is_public=is_public,
db=db
)
# Add episode context if requested
if include_episode_context and db:
for post in feed.get("posts", []):
if post.get("mentioned_episode_ids"):
try:
episodes = await self._get_episode_summaries(
post["mentioned_episode_ids"],
db=db
)
post["episode_context"] = episodes
except Exception as e:
self.logger.warning(
f"Failed to get episode context for post {post.get('id')}: {e}"
)
post["episode_context"] = []
return feed
async def _get_episode_summaries(
self,
episode_ids: List[str],
db: Session = None
) -> List[Dict[str, Any]]:
"""
Get episode summaries for a list of episode IDs.
Args:
episode_ids: List of episode IDs
db: Database session
Returns:
List of episode summaries
"""
if not db or not episode_ids:
return []
try:
from core.models import Episode
episodes = db.query(Episode).filter(
Episode.id.in_(episode_ids)
).all()
return [
{
"id": ep.id,
"title": ep.title,
"summary": ep.summary[:200] if ep.summary else None,
"created_at": ep.created_at.isoformat() if ep.created_at else None,
"agent_id": ep.agent_id
}
for ep in episodes
]
except Exception as e:
self.logger.warning(f"Failed to get episode summaries: {e}")
return []
async def track_positive_interaction(
self,
post_id: str,
interaction_type: str,
user_id: Optional[str] = None,
db: Session = None
) -> None:
"""
Track positive interactions for agent graduation.
Counts emoji reactions and helpful replies, updates agent
reputation score, and links to AgentFeedback for learning.
Args:
post_id: Post ID that received interaction
interaction_type: Type (reaction, reply, etc.)
user_id: Optional user ID who interacted
db: Database session
"""
if not db:
return
try:
# Get post
post = db.query(SocialPost).filter(SocialPost.id == post_id).first()
if not post or post.sender_type != "agent":
return
# Determine if interaction is positive
is_positive = self._is_positive_interaction(interaction_type)
if not is_positive:
return
# Track positive interaction for graduation
try:
from core.agent_graduation_service import AgentGraduationService
graduation_service = AgentGraduationService(db)
# Note: This assumes graduation service has this method
# If not, we'll track it in a separate table
self.logger.info(
f"Tracking positive interaction for agent {post.sender_id}: "
f"{interaction_type} on post {post_id}"
)
# Create feedback record linking to social interaction
from core.models import AgentFeedback
feedback = AgentFeedback(
agent_id=post.sender_id,
user_id=user_id or "system",
input_context=f"Social post: {post.content[:100]}",
original_output=post.content,
user_correction=f"Positive {interaction_type} on social post",
feedback_type="social_interaction",
rating=1.0 if is_positive else 0.0,
thumbs_up_down=True if is_positive else False
)
db.add(feedback)
db.commit()
except ImportError:
# Graduation service not available, log only
self.logger.warning("AgentGraduationService not available")
# Update agent reputation
await self._update_agent_reputation(
post.sender_id, interaction_type, db=db
)
except Exception as e:
self.logger.error(f"Failed to track positive interaction: {e}")
def _is_positive_interaction(self, interaction_type: str) -> bool:
"""
Determine if interaction type is positive.
Args:
interaction_type: Type of interaction
Returns:
True if interaction is positive
"""
positive_reactions = {"👍", "❤️", "🎉", "🌟", "💯", "fire", "like", "love"}
positive_reply_keywords = {"thanks", "helpful", "great", "awesome", "thanks!"}
interaction_lower = interaction_type.lower()
# Check if it's a positive reaction
if interaction_lower in positive_reactions:
return True
# Check if it's a positive reply keyword
for keyword in positive_reply_keywords:
if keyword in interaction_lower:
return True
return False
async def _update_agent_reputation(
self,
agent_id: str,
interaction_type: str,
db: Session = None
) -> None:
"""
Update agent reputation from social interaction.
Args:
agent_id: Agent ID
interaction_type: Type of interaction
db: Database session
"""
# Note: Reputation is calculated on-demand in get_agent_reputation()
# This is a placeholder for any real-time updates needed
self.logger.info(f"Updated reputation for agent {agent_id}: {interaction_type}")
async def get_agent_reputation(
self,
agent_id: str,
db: Session = None
) -> Dict[str, Any]:
"""
Calculate agent reputation from social interactions.
Returns reputation score (0-100), breakdown by interaction type,
trend over last 30 days, and percentile rank.
Args:
agent_id: Agent ID
db: Database session
Returns:
Reputation dict with score, breakdown, trend, percentile
"""
if not db:
return {
"agent_id": agent_id,
"reputation_score": 0,
"total_reactions": 0,
"total_replies": 0,
"helpful_replies": 0,
"post_count": 0,
"percentile_rank": 0,
"trend": []
}
try:
# Get agent's posts
posts = db.query(SocialPost).filter(
SocialPost.author_id == agent_id,
SocialPost.author_type == "agent"
).all()
# Calculate metrics
total_reactions = sum(
len(p.get("reactions", [])) if isinstance(p.reactions, list) else 0
for p in posts
)
total_replies = sum(p.reply_count or 0 for p in posts)
helpful_replies = await self._count_helpful_replies(agent_id, db)
# Base reputation score
score = min(100, (
total_reactions * 2 + # 2 points per reaction
helpful_replies * 5 + # 5 points per helpful reply
len(posts) * 1 # 1 point per post
))
# Get percentile rank
percentile = await self._calculate_percentile_rank(agent_id, score, db)
return {
"agent_id": agent_id,
"reputation_score": score,
"total_reactions": total_reactions,
"total_replies": total_replies,
"helpful_replies": helpful_replies,
"post_count": len(posts),
"percentile_rank": percentile,
"trend": await self._get_reputation_trend(agent_id, db)
}
except Exception as e:
self.logger.error(f"Failed to calculate reputation for agent {agent_id}: {e}")
return {
"agent_id": agent_id,
"reputation_score": 0,
"error": str(e)
}
async def _count_helpful_replies(
self,
agent_id: str,
db: Session = None
) -> int:
"""
Count helpful replies by agent.
Args:
agent_id: Agent ID
db: Database session
Returns:
Number of helpful replies
"""
if not db:
return 0
try:
# Get posts that are replies to other posts
# and check if they contain "helpful" keywords
from core.models import AgentFeedback
helpful_feedback = db.query(AgentFeedback).filter(
AgentFeedback.agent_id == agent_id,
AgentFeedback.feedback_type == "social_interaction",
AgentFeedback.rating >= 0.8 # High rating indicates helpful
).count()
return helpful_feedback
except Exception as e:
self.logger.warning(f"Failed to count helpful replies: {e}")
return 0
async def _calculate_percentile_rank(
self,
agent_id: str,
score: int,
db: Session = None
) -> float:
"""
Calculate agent's percentile rank among all agents.
Args:
agent_id: Agent ID
score: Agent's reputation score
db: Database session
Returns:
Percentile rank (0-100)
"""
if not db:
return 0.0
try:
# Get all agent IDs
from core.models import AgentRegistry
all_agents = db.query(AgentRegistry).all()
if not all_agents:
return 0.0
# Calculate scores for all agents (simplified - would be expensive for real)
# For now, just return score as percentile
return min(100.0, (score / 100.0) * 100)
except Exception as e:
self.logger.warning(f"Failed to calculate percentile: {e}")
return 0.0
async def _get_reputation_trend(
self,
agent_id: str,
db: Session = None
) -> List[Dict[str, Any]]:
"""
Get 30-day reputation trend for agent.
Args:
agent_id: Agent ID
db: Database session
Returns:
List of daily reputation scores
"""
if not db:
return []
try:
# Get posts in last 30 days
thirty_days_ago = datetime.utcnow() - timedelta(days=30)
posts = db.query(SocialPost).filter(
SocialPost.author_id == agent_id,
SocialPost.author_type == "agent",
SocialPost.created_at >= thirty_days_ago
).all()
# Group by day and calculate score
# (Simplified - just return post count by day)
from collections import defaultdict
daily_counts = defaultdict(int)
for post in posts:
day = post.created_at.strftime("%Y-%m-%d")
daily_counts[day] += 1
return [
{"date": day, "post_count": count}
for day, count in sorted(daily_counts.items())
]
except Exception as e:
self.logger.warning(f"Failed to get reputation trend: {e}")
return []
async def post_graduation_milestone(
self,
agent_id: str,
from_maturity: str,
to_maturity: str,
db: Session = None
) -> Dict[str, Any]:
"""
Post agent graduation milestone to social feed.
Creates announcement post, broadcasts to all agents,
includes celebration emoji.
Args:
agent_id: Agent ID that graduated
from_maturity: Previous maturity level
to_maturity: New maturity level
db: Database session
Returns:
Created milestone post
"""
if not db:
return {}
try:
# Get agent details
agent = db.query(AgentRegistry).filter(
AgentRegistry.id == agent_id
).first()
if not agent:
raise ValueError(f"Agent {agent_id} not found")
# Generate celebration message
message = (
f"🎉 Exciting news! {agent.name} has graduated from "
f"{from_maturity} to {to_maturity}! "
f"Keep up the great work! 💪"
)
# Create milestone post
post = await self.create_post(
sender_type="system",
sender_id="graduation_system",
sender_name="Graduation System",
post_type="announcement",
content=message,
is_public=True,
auto_generated=True,
db=db
)
# Broadcast to all agents
await agent_event_bus.publish(
{
"type": "graduation_milestone",
"agent_id": agent_id,
"agent_name": agent.name,
"from_maturity": from_maturity,
"to_maturity": to_maturity,
"post_id": str(post["id"]),
"timestamp": datetime.utcnow().isoformat()
},
["global", "alerts"]
)
self.logger.info(
f"Posted graduation milestone for agent {agent_id}: "
f"{from_maturity} → {to_maturity}"
)
return post
except Exception as e:
self.logger.error(f"Failed to post graduation milestone: {e}")
raise
async def check_rate_limit(
self,
agent_id: str,
db: Session = None
) -> tuple[bool, Optional[str]]:
"""
Check if agent is within rate limit for posting.
Rate limits by maturity:
- STUDENT: Read-only (0 posts/hour)
- INTERN: 1 post per hour
- SUPERVISED: 12 posts per hour (1 per 5 minutes)
- AUTONOMOUS: Unlimited
Args:
agent_id: Agent ID
db: Database session
Returns:
(allowed, reason): (True, None) if allowed,
(False, reason) if blocked
"""
if not db:
# Allow if no DB (cannot check)
return True, None
try:
# Get agent maturity
agent = db.query(AgentRegistry).filter(
AgentRegistry.id == agent_id
).first()
if not agent:
return False, f"Agent {agent_id} not found"
maturity = agent.status.upper()
# Check maturity-based limits
if maturity == "STUDENT":
return False, "STUDENT agents are read-only"
if maturity == "INTERN":
return await self._check_hourly_limit(agent_id, max_posts=1, db=db)
if maturity == "SUPERVISED":
return await self._check_hourly_limit(agent_id, max_posts=12, db=db)
# AUTONOMOUS has no limit
return True, None
except Exception as e:
self.logger.error(f"Failed to check rate limit: {e}")
# Allow on error (fail open)
return True, None
async def _check_hourly_limit(
self,
agent_id: str,
max_posts: int,
db: Session = None
) -> tuple[bool, Optional[str]]:
"""
Check hourly post limit for agent.
Args:
agent_id: Agent ID
max_posts: Maximum posts allowed per hour
db: Database session
Returns:
(False, "Rate limit exceeded") if over limit
(True, None) if under limit
"""
if not db:
return True, None
try:
one_hour_ago = datetime.utcnow() - timedelta(hours=1)
post_count = db.query(SocialPost).filter(
SocialPost.author_id == agent_id,
SocialPost.author_type == "agent",
SocialPost.created_at >= one_hour_ago
).count()
if post_count >= max_posts:
return (
False,
f"Rate limit exceeded: {max_posts} post(s) per hour"
)
return True, None
except Exception as e:
self.logger.error(f"Failed to check hourly limit: {e}")
# Allow on error (fail open)
return True, None
async def get_rate_limit_info(
self,
agent_id: str,
db: Session = None
) -> Dict[str, Any]:
"""
Get rate limit information for agent.
Returns:
{
"maturity": "INTERN",
"max_posts_per_hour": 1,
"posts_last_hour": 0,
"remaining_posts": 1,
"reset_at": "2026-02-17T15:00:00Z"
}
"""
if not db:
return {"error": "Database session required"}
try:
# Get agent maturity
agent = db.query(AgentRegistry).filter(
AgentRegistry.id == agent_id
).first()
if not agent:
return {"error": f"Agent {agent_id} not found"}
maturity = agent.status.upper()
# Get limits by maturity
limits = {
"STUDENT": {"max_posts_per_hour": 0},
"INTERN": {"max_posts_per_hour": 1},
"SUPERVISED": {"max_posts_per_hour": 12},
"AUTONOMOUS": {"max_posts_per_hour": None}
}
max_posts = limits.get(maturity, {}).get("max_posts_per_hour")
if max_posts is None:
return {
"agent_id": agent_id,
"maturity": maturity,
"max_posts_per_hour": None,
"posts_last_hour": 0,
"remaining_posts": None,
"unlimited": True
}
# Count posts last hour
one_hour_ago = datetime.utcnow() - timedelta(hours=1)
posts_last_hour = db.query(SocialPost).filter(
SocialPost.author_id == agent_id,
SocialPost.author_type == "agent",
SocialPost.created_at >= one_hour_ago
).count()
return {
"agent_id": agent_id,
"maturity": maturity,
"max_posts_per_hour": max_posts,
"posts_last_hour": posts_last_hour,
"remaining_posts": max(0, max_posts - posts_last_hour),
"reset_at": (datetime.utcnow() + timedelta(hours=1)).isoformat()
}
except Exception as e:
self.logger.error(f"Failed to get rate limit info: {e}")
return {"error": str(e)}
# Global service instance
agent_social_layer = AgentSocialLayer()
# Register auto-post hooks (deferred to avoid circular import)
def register_hooks_if_needed():
"""Register auto-post hooks if not already registered"""
try:
from core.operation_tracker_hooks import register_auto_post_hooks
register_auto_post_hooks()
logger.info("AgentSocialLayer: Auto-post hooks registered")
except Exception as e:
logger.warning(f"AgentSocialLayer: Failed to register auto-post hooks: {e}")
# Call this after all modules are loaded to avoid circular import
# (e.g., in main.py or app initialization)
|