@team-agent/installer 0.3.32 → 0.3.33

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/Cargo.lock CHANGED
@@ -566,7 +566,7 @@ dependencies = [
566
566
 
567
567
  [[package]]
568
568
  name = "team-agent"
569
- version = "0.3.32"
569
+ version = "0.3.33"
570
570
  dependencies = [
571
571
  "anyhow",
572
572
  "chrono",
package/Cargo.toml CHANGED
@@ -9,7 +9,7 @@ members = ["crates/team-agent"]
9
9
 
10
10
  [workspace.package]
11
11
  edition = "2021"
12
- version = "0.3.32"
12
+ version = "0.3.33"
13
13
  license = "AGPL-3.0"
14
14
  rust-version = "1.95"
15
15
 
@@ -157,7 +157,9 @@ fn prepare_profile_launch(
157
157
  let mut claude_projects_root = None;
158
158
  let mut managed_mcp_config = false;
159
159
 
160
- if matches!(agent.provider, Provider::Claude | Provider::ClaudeCode) {
160
+ if matches!(agent.provider, Provider::Claude | Provider::ClaudeCode)
161
+ && agent.auth_mode == AuthMode::CompatibleApi
162
+ {
161
163
  let dir = compatible_claude_config_dir(workspace, &agent.id)?;
162
164
  if let Some(config) = mcp_config {
163
165
  ensure_compatible_claude_mcp_config(&dir, workspace, config)?;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-agent/installer",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "description": "npx installer for Team Agent",
5
5
  "keywords": [
6
6
  "codex",
@@ -20,9 +20,9 @@
20
20
  "team-agent-installer": "npm/install.mjs"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@team-agent/cli-darwin-arm64": "0.3.32",
24
- "@team-agent/cli-darwin-x64": "0.3.32",
25
- "@team-agent/cli-linux-x64": "0.3.32"
23
+ "@team-agent/cli-darwin-arm64": "0.3.33",
24
+ "@team-agent/cli-darwin-x64": "0.3.33",
25
+ "@team-agent/cli-linux-x64": "0.3.33"
26
26
  },
27
27
  "scripts": {
28
28
  "postinstall": "node npm/bincheck.mjs",