dsh-plugin-t-expert 0.2.3 → 0.2.5
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.
- package/README.md +33 -16
- package/THIRD-PARTY-NOTICES +23 -17
- package/data/source.json +3 -88
- package/data/t-team.config.json +1226 -381
- package/data/team-profiles.py +1 -1
- package/data/teams.json +625 -285
- package/data/teams.resolved.json +1279 -456
- package/data/zh/COVERAGE.json +1 -1
- package/lib/catalog.js +206 -42
- package/lib/client.js +458 -10
- package/lib/i18n.js +37 -5
- package/lib/index.js +315 -22
- package/lib/remote.js +173 -1
- package/lib/squads.js +9 -2
- package/package.json +2 -4
- package/vendor/dsh-agent-teams/VENDOR.md +0 -53
package/data/team-profiles.py
CHANGED
|
@@ -42,7 +42,7 @@ DEFAULT_PATCH = os.environ.get("T_TEAM_PATCH", os.path.join(HOME, ".dsh", "profi
|
|
|
42
42
|
MARKER_START = "# >>> t-team teams(由 team-profiles.py 生成,勿手改;改 teams.json 后重跑)"
|
|
43
43
|
MARKER_END = "# <<< t-team teams"
|
|
44
44
|
|
|
45
|
-
MAX_PROFILES = 48 #
|
|
45
|
+
MAX_PROFILES = 48 # 引擎侧 lib/teams/profiles.js 已把 MAX_TEAM_PROFILES 调到 48(原默认 16)
|
|
46
46
|
MAX_MEMBERS = 8 # 一个 profile 的成员数上限(经验值:队长上下文压力)
|
|
47
47
|
MAX_SEED_TASKS = 32 # AgentTeams: MAX_PROFILE_TASKS
|
|
48
48
|
PROFILE_KEY_RE = re.compile(r"^[a-z0-9]+(?:-[a-z0-9]+)*$")
|