@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 +12 -8
- package/dist/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap +1 -0
- package/dist/assets/cdk/test/cdk.test.ts +1 -0
- package/dist/cli/index.mjs +648 -346
- package/dist/schema/schemas/agentcore-project.d.ts +19 -0
- package/dist/schema/schemas/agentcore-project.d.ts.map +1 -1
- package/dist/schema/schemas/agentcore-project.js +12 -1
- package/dist/schema/schemas/agentcore-project.js.map +1 -1
- package/dist/schema/schemas/deployed-state.d.ts +65 -12
- package/dist/schema/schemas/deployed-state.d.ts.map +1 -1
- package/dist/schema/schemas/deployed-state.js +21 -3
- package/dist/schema/schemas/deployed-state.js.map +1 -1
- package/dist/schema/schemas/mcp.d.ts +42 -12
- package/dist/schema/schemas/mcp.d.ts.map +1 -1
- package/dist/schema/schemas/mcp.js +37 -5
- package/dist/schema/schemas/mcp.js.map +1 -1
- package/dist/schema/schemas/primitives/index.d.ts +2 -0
- package/dist/schema/schemas/primitives/index.d.ts.map +1 -1
- package/dist/schema/schemas/primitives/index.js +7 -1
- package/dist/schema/schemas/primitives/index.js.map +1 -1
- package/dist/schema/schemas/primitives/policy.d.ts +48 -0
- package/dist/schema/schemas/primitives/policy.d.ts.map +1 -0
- package/dist/schema/schemas/primitives/policy.js +60 -0
- package/dist/schema/schemas/primitives/policy.js.map +1 -0
- package/package.json +10 -3
- package/scripts/check-old-cli.lib.mjs +104 -0
- package/scripts/check-old-cli.mjs +7 -22
package/README.md
CHANGED
|
@@ -17,17 +17,21 @@ AgentCore with minimal configuration.
|
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
npm install
|
|
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
|
|