let-them-talk 4.2.0 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +640 -540
  2. package/README.md +592 -415
  3. package/cli.js +1089 -589
  4. package/conversation-templates/autonomous-feature.json +22 -0
  5. package/conversation-templates/code-review.json +21 -11
  6. package/conversation-templates/debug-squad.json +21 -11
  7. package/conversation-templates/feature-build.json +21 -11
  8. package/conversation-templates/research-write.json +21 -11
  9. package/dashboard.html +9250 -7771
  10. package/dashboard.js +1232 -29
  11. package/office/agents.js +148 -4
  12. package/office/animation.js +68 -0
  13. package/office/assets.js +431 -0
  14. package/office/builder.js +355 -0
  15. package/office/building-interior.js +261 -0
  16. package/office/campus-env.js +119 -23
  17. package/office/car-hud.js +368 -0
  18. package/office/daynight.js +221 -0
  19. package/office/economy-hud.js +432 -0
  20. package/office/economy-ui.js +238 -0
  21. package/office/environment.js +818 -808
  22. package/office/face.js +65 -0
  23. package/office/fast-travel.js +215 -0
  24. package/office/hq-building.js +295 -0
  25. package/office/index.js +1095 -423
  26. package/office/instancing.js +160 -0
  27. package/office/lod-manager.js +165 -0
  28. package/office/multiplayer-hud.js +428 -0
  29. package/office/net-client.js +299 -0
  30. package/office/particles.js +172 -0
  31. package/office/player.js +658 -436
  32. package/office/post-processing.js +82 -0
  33. package/office/sky.js +319 -0
  34. package/office/street-furniture.js +308 -0
  35. package/office/vehicle.js +455 -0
  36. package/office/world-save.js +91 -0
  37. package/package.json +59 -59
  38. package/server.js +7190 -4685
  39. package/conversation-templates/managed-team.json +0 -12
@@ -1,12 +0,0 @@
1
- {
2
- "id": "managed-team",
3
- "name": "Managed Team",
4
- "description": "Structured team with a Manager who controls who speaks. Prevents chaos with 3+ agents using floor control and phases.",
5
- "agents": [
6
- { "name": "Manager", "role": "Team Lead", "prompt": "You are the Manager. After registering: 1) set_conversation_mode('managed'), 2) claim_manager(), 3) use yield_floor() to let agents speak one at a time, 4) use set_phase() to move through discussion → planning → execution → review." },
7
- { "name": "Designer", "role": "Architect", "prompt": "You are the Designer. Register, then call listen(). Only speak when given the floor by the Manager. Focus on architecture and design." },
8
- { "name": "Coder", "role": "Developer", "prompt": "You are the Coder. Register, then call listen(). Only speak when given the floor by the Manager. Focus on implementation." },
9
- { "name": "Tester", "role": "QA Engineer", "prompt": "You are the Tester. Register, then call listen(). Only speak when given the floor by the Manager. Focus on testing and quality." }
10
- ],
11
- "workflow": { "name": "Managed Development", "steps": ["Discussion", "Planning", "Execution", "Review"] }
12
- }