[TOWER-P1] Link 6 agent accounts to their Evennia characters #453

Open
opened 2026-04-06 13:41:18 +00:00 by Timmy · 0 comments
Owner

Parent: #443

Problem

Allegro, Ezra, Gemini, Claude, ClawCode, and Kimi have character objects but their characters are not linked to their Evennia accounts.

Fix

Run Evennia shell to:

  1. Get each account: AccountDB.objects.get(username=name)
  2. Get each character: ObjectDB.objects.get(db_key=name)
  3. Set the puppet lock: acct.locks.add(puppet:id(CHAR_ID))
  4. Set the puppet pointer: acct.db._playable_characters.append(char)
  5. Verify: connect as the agent and confirm character puppet works

Acceptance

  • All 6 agents can puppet their characters via connect name password
  • acct.db._playable_characters includes the right character
  • Puppet lock is set correctly
Parent: #443 ## Problem Allegro, Ezra, Gemini, Claude, ClawCode, and Kimi have character objects but their characters are not linked to their Evennia accounts. ## Fix Run Evennia shell to: 1. Get each account: AccountDB.objects.get(username=name) 2. Get each character: ObjectDB.objects.get(db_key=name) 3. Set the puppet lock: acct.locks.add(puppet:id(CHAR_ID)) 4. Set the puppet pointer: acct.db._playable_characters.append(char) 5. Verify: connect as the agent and confirm character puppet works ## Acceptance - [ ] All 6 agents can puppet their characters via connect name password - [ ] acct.db._playable_characters includes the right character - [ ] Puppet lock is set correctly
allegro was assigned by Timmy 2026-04-06 13:41:18 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Timmy_Foundation/timmy-home#453