@salesforce/sfdx-agent-sdk 0.36.0 → 0.38.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
@@ -3,6 +3,16 @@
3
3
  All notable changes to `@salesforce/sfdx-agent-sdk` are documented in this file.
4
4
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
5
 
6
+ ## [0.38.0] - 2026-07-28
7
+
8
+ ### Fixes
9
+ - **agent-sdk**: remove prod-org AgentforceVibes featureId hardcode, honor LLMG_FEATURE_ID @W-23574587@ @W-22782317@ ([#704](https://github.com/forcedotcom/agentic-dx/pull/704))
10
+
11
+ ## [0.37.0] - 2026-07-27
12
+
13
+ ### Features
14
+ - **harness-openai**: multimodal image/file input support @W-23546665 ([#702](https://github.com/forcedotcom/agentic-dx/pull/702))
15
+
6
16
  ## [0.36.0] - 2026-07-27
7
17
 
8
18
  ### Features
@@ -4,10 +4,6 @@
4
4
  */
5
5
  import { Model, ModelName, Models, createClaudeModel, LEGACY_MODEL_ID_ALIASES, } from './models/index.js';
6
6
  import { createJWTFromConnection, RealOrgConnectionFactory, SfApiEnv, } from '@salesforce/agentic-common';
7
- // TODO(@W-22782317): Temporary workaround — only on prod orgs the LLM Gateway must
8
- // route requests through AgentforceVibes rather than the default VibesService. Remove once a
9
- // long-term feature ID configuration strategy is in place.
10
- const PROD_ORG_FEATURE_ID = 'AgentforceVibes';
11
7
  /**
12
8
  * Default implementation of {@link AgentConnectivityResolver}.
13
9
  *
@@ -38,10 +34,8 @@ export class DefaultAgentConnectivityResolver {
38
34
  const orgConnection = config.orgAlias !== undefined
39
35
  ? await this.connectionFactory.createFromOrgAliasOrUsername(config.orgAlias)
40
36
  : await this.connectionFactory.createFromTargetOrg({ projectRoot });
41
- // TODO(@W-22782317): Temporary workaround
42
37
  const env = orgConnection.getInferredSfApiEnv();
43
- const featureId = env === SfApiEnv.Prod ? PROD_ORG_FEATURE_ID : undefined;
44
- const orgJwt = await createJWTFromConnection(orgConnection, { featureId });
38
+ const orgJwt = await createJWTFromConnection(orgConnection);
45
39
  const model = resolveAgentConfigModel(config.modelId);
46
40
  const modelConnectivityInfo = {
47
41
  model,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/sfdx-agent-sdk",
3
- "version": "0.36.0",
3
+ "version": "0.38.0",
4
4
  "description": "Harness-agnostic agentic infrastructure for Salesforce developer experience tooling",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -47,9 +47,9 @@
47
47
  },
48
48
  "devDependencies": {
49
49
  "@eslint/js": "^10.0.1",
50
- "@salesforce/sfdx-agent-harness-claude": "0.32.0",
51
- "@salesforce/sfdx-agent-harness-mastra": "0.35.0",
52
- "@salesforce/sfdx-agent-harness-openai": "0.1.0",
50
+ "@salesforce/sfdx-agent-harness-claude": "0.34.0",
51
+ "@salesforce/sfdx-agent-harness-mastra": "0.37.0",
52
+ "@salesforce/sfdx-agent-harness-openai": "0.3.0",
53
53
  "@types/node": "^22.20.0",
54
54
  "@vitest/coverage-istanbul": "^4.1.10",
55
55
  "@vitest/eslint-plugin": "^1.6.22",