You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementation Plan - Component 7: Terminology & Documentation Updates
Objective:
Remove or rename any “agent” references to preserve the pure session/branch model, and ensure all official docs reflect the new multi-branch approach.
Key Tasks
Codebase-Wide Terminology Sweep
Search for references to “Agent” or “agent.”
Replace with “Branch,” “BranchProfile,” or “Session/branch participant” as appropriate.
Update Code Comments & Docstrings
In branch.py, session.py, actions, tools modules, etc.
Clarify that each “participant” or “role” is just a specialized Branch.
Rework Documentation
docs/ folder:
Replace “agent” with “branch.”
Reposition “multi-agent” references to “multi-branch” or “multi-participant” as suits your brand identity.
Cookbook Overhaul
Where you had “Agent Recipes,” rename to “Branch Collaboration Recipes.”
Show examples of multi-branch usage flows in a single Session.
Deprecation Warnings (optional)
If you have public classes with “agent” in the name, add a short bridging period with deprecation warnings, then rename them in the next major release.
Implementation Steps
Global Find & Replace
Carefully rename classes, methods, doc references from AgentX to BranchX.
Make sure not to break public APIs if you maintain semver.
Docstring Overhaul
Focus on big items like “You are an agent => You are a branch participant.”
Also fix any confusion about “agent function calls” vs. “branch calls.”
Testing
Basic smoke tests ensure that new naming does not break any dynamic imports or references.
Docs
docs/*: comb through, remove “agent” language, re-center everything on branches.
End of plans/07_terminology_documentation.md
The text was updated successfully, but these errors were encountered:
File: plans/07_terminology_documentation.md
Implementation Plan - Component 7: Terminology & Documentation Updates
Objective:
Remove or rename any “agent” references to preserve the pure session/branch model, and ensure all official docs reflect the new multi-branch approach.
Key Tasks
Codebase-Wide Terminology Sweep
Update Code Comments & Docstrings
branch.py
,session.py
,actions
,tools
modules, etc.Rework Documentation
docs/
folder:Cookbook Overhaul
Deprecation Warnings (optional)
Implementation Steps
Global Find & Replace
AgentX
toBranchX
.Docstring Overhaul
Testing
Docs
docs/*
: comb through, remove “agent” language, re-center everything on branches.End of
plans/07_terminology_documentation.md
The text was updated successfully, but these errors were encountered: