@aws/agentcore 0.3.0-preview.6.1 → 0.3.0-preview.7.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/README.md CHANGED
@@ -17,17 +17,21 @@ AgentCore with minimal configuration.
17
17
 
18
18
  ## Installation
19
19
 
20
- ```bash
21
- npm install -g @aws/agentcore
22
- ```
23
-
24
- > **Public Preview**: If you previously used the
25
- > [Bedrock AgentCore Starter Toolkit](https://github.com/aws/bedrock-agentcore-starter-toolkit), uninstall it before
26
- > using this CLI:
20
+ > **Upgrading from the Bedrock AgentCore Starter Toolkit?** The old Python CLI conflicts with this package. If it is
21
+ > still installed, `npm install` will fail with an error telling you which package manager has it. Uninstall it first
22
+ > using whichever tool you originally used:
27
23
  >
28
24
  > ```bash
29
- > pip uninstall bedrock-agentcore-starter-toolkit
25
+ > pip uninstall bedrock-agentcore-starter-toolkit # if installed via pip
26
+ > pipx uninstall bedrock-agentcore-starter-toolkit # if installed via pipx
27
+ > uv tool uninstall bedrock-agentcore-starter-toolkit # if installed via uv
30
28
  > ```
29
+ >
30
+ > If you need to bypass the check (for example, in CI), set `AGENTCORE_SKIP_CONFLICT_CHECK=1` before installing.
31
+
32
+ ```bash
33
+ npm install -g @aws/agentcore
34
+ ```
31
35
 
32
36
  ## Quick Start
33
37
 
@@ -374,6 +374,7 @@ test('AgentCoreStack synthesizes with empty spec', () => {
374
374
  credentials: [],
375
375
  evaluators: [],
376
376
  onlineEvalConfigs: [],
377
+ policyEngines: [],
377
378
  },
378
379
  });
379
380
  const template = Template.fromStack(stack);
@@ -13,6 +13,7 @@ test('AgentCoreStack synthesizes with empty spec', () => {
13
13
  credentials: [],
14
14
  evaluators: [],
15
15
  onlineEvalConfigs: [],
16
+ policyEngines: [],
16
17
  },
17
18
  });
18
19
  const template = Template.fromStack(stack);