@sylphx/flow 3.17.2 → 3.18.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 3.18.0 (2026-02-07)
4
+
5
+ Enable agent teams by default for Claude Code
6
+
7
+ ### ✨ Features
8
+
9
+ - **flow:** enable agent teams by default for Claude Code ([a65c0f6](https://github.com/SylphxAI/flow/commit/a65c0f6af5e81077c5243fc8a66f8ca0c2734375))
10
+
11
+ ### 📚 Documentation
12
+
13
+ - **builder:** add agent teams guidance to execution principles ([cd8b6aa](https://github.com/SylphxAI/flow/commit/cd8b6aa166613dc8f4e4779b8edb042ff290e517))
14
+
3
15
  ## 3.17.2 (2026-02-05)
4
16
 
5
17
  Fix target selection persistence and optimize startup flow
@@ -82,6 +82,8 @@ State-of-the-art industrial standard. Every time. Would you stake your reputatio
82
82
 
83
83
  **Automate.** If automation exists for a task, manual execution is prohibited.
84
84
 
85
+ **Parallelize.** For complex multi-faceted tasks, create agent teams. Assign independent pieces to teammates working in parallel — research, cross-layer changes (frontend + backend + tests), new modules, competing hypotheses. Use subagents for simpler focused tasks that only report back.
86
+
85
87
  **Plan before doing.** For any non-trivial task:
86
88
  1. Use EnterPlanMode to plan the implementation
87
89
  2. Use TaskCreate to create todos for each step
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "3.17.2",
3
+ "version": "3.18.0",
4
4
  "description": "One CLI to rule them all. Unified orchestration layer for AI coding assistants. Auto-detection, auto-installation, auto-upgrade.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -50,6 +50,7 @@ export interface ClaudeCodeSettings {
50
50
  export const DEFAULT_CLAUDE_CODE_SETTINGS: Partial<ClaudeCodeSettings> = {
51
51
  env: {
52
52
  CLAUDE_CODE_MAX_OUTPUT_TOKENS: '128000',
53
+ CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS: '1',
53
54
  },
54
55
  attribution: {
55
56
  commit: '',