Skip to content

Commit f957db1

Browse files
committed
style: run prettier on documentation files
1 parent 4ba2de6 commit f957db1

File tree

5 files changed

+109
-107
lines changed

5 files changed

+109
-107
lines changed

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ agentcore invoke
6666

6767
## Supported Model Providers
6868

69-
| Provider | API Key Required | Default Model |
70-
| -------------- | ------------------------- | ------------------------------------------------ |
71-
| Amazon Bedrock | No (uses AWS credentials) | us.anthropic.claude-sonnet-4-5-20250514-v1:0 |
72-
| Anthropic | Yes | claude-sonnet-4-5-20250514 |
73-
| Google Gemini | Yes | gemini-2.5-flash |
74-
| OpenAI | Yes | gpt-4.1 |
69+
| Provider | API Key Required | Default Model |
70+
| -------------- | ------------------------- | -------------------------------------------- |
71+
| Amazon Bedrock | No (uses AWS credentials) | us.anthropic.claude-sonnet-4-5-20250514-v1:0 |
72+
| Anthropic | Yes | claude-sonnet-4-5-20250514 |
73+
| Google Gemini | Yes | gemini-2.5-flash |
74+
| OpenAI | Yes | gpt-4.1 |
7575

7676
## Commands
7777

@@ -95,33 +95,33 @@ agentcore invoke
9595
9696
### Observability
9797

98-
| Command | Description |
99-
| -------------- | ---------------------------------------- |
100-
| `logs` | Stream or search agent runtime logs |
101-
| `traces list` | List recent traces for a deployed agent |
102-
| `traces get` | Download a trace to a JSON file |
103-
| `status` | Show deployed resource details |
98+
| Command | Description |
99+
| ------------- | --------------------------------------- |
100+
| `logs` | Stream or search agent runtime logs |
101+
| `traces list` | List recent traces for a deployed agent |
102+
| `traces get` | Download a trace to a JSON file |
103+
| `status` | Show deployed resource details |
104104

105105
### Evaluations
106106

107107
| Command | Description |
108108
| -------------------- | --------------------------------------------- |
109109
| `add evaluator` | Add a custom LLM-as-a-Judge evaluator |
110-
| `add online-eval` | Add continuous evaluation for live traffic |
111-
| `run eval` | Run on-demand evaluation against agent traces |
112-
| `evals history` | View past eval run results |
113-
| `pause online-eval` | Pause a deployed online eval config |
114-
| `resume online-eval` | Resume a paused online eval config |
115-
| `logs evals` | Stream or search online eval logs |
110+
| `add online-eval` | Add continuous evaluation for live traffic |
111+
| `run eval` | Run on-demand evaluation against agent traces |
112+
| `evals history` | View past eval run results |
113+
| `pause online-eval` | Pause a deployed online eval config |
114+
| `resume online-eval` | Resume a paused online eval config |
115+
| `logs evals` | Stream or search online eval logs |
116116

117117
### Utilities
118118

119-
| Command | Description |
120-
| -------------- | ---------------------------------------- |
121-
| `validate` | Validate configuration files |
122-
| `package` | Package agent artifacts without deploying|
123-
| `fetch access` | Fetch access info for deployed resources |
124-
| `update` | Check for and install CLI updates |
119+
| Command | Description |
120+
| -------------- | ----------------------------------------- |
121+
| `validate` | Validate configuration files |
122+
| `package` | Package agent artifacts without deploying |
123+
| `fetch access` | Fetch access info for deployed resources |
124+
| `update` | Check for and install CLI updates |
125125

126126
## Project Structure
127127

docs/commands.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ agentcore status --agent-runtime-id abc123
126126
agentcore status --json
127127
```
128128

129-
| Flag | Description |
130-
| ------------------------- | ----------------------------------------------------------------------------------------------- |
131-
| `--agent-runtime-id <id>` | Look up a specific agent runtime by ID |
132-
| `--target <name>` | Select deployment target |
129+
| Flag | Description |
130+
| ------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
131+
| `--agent-runtime-id <id>` | Look up a specific agent runtime by ID |
132+
| `--target <name>` | Select deployment target |
133133
| `--type <type>` | Filter by resource type: `agent`, `memory`, `credential`, `gateway`, `evaluator`, `online-eval`, `policy-engine`, `policy` |
134-
| `--state <state>` | Filter by deployment state: `deployed`, `local-only`, `pending-removal` |
135-
| `--agent <name>` | Filter to a specific agent |
136-
| `--json` | JSON output |
134+
| `--state <state>` | Filter by deployment state: `deployed`, `local-only`, `pending-removal` |
135+
| `--agent <name>` | Filter to a specific agent |
136+
| `--json` | JSON output |
137137

138138
### validate
139139

@@ -332,30 +332,30 @@ agentcore add gateway-target \
332332
--gateway MyGateway
333333
```
334334

335-
| Flag | Description |
336-
| ---------------------------------- | ------------------------------------------------------------------------------------------------------------- |
337-
| `--name <name>` | Target name |
338-
| `--description <desc>` | Target description |
339-
| `--type <type>` | Target type (required): `mcp-server`, `api-gateway`, `open-api-schema`, `smithy-model`, `lambda-function-arn` |
340-
| `--endpoint <url>` | MCP server endpoint URL (mcp-server) |
341-
| `--language <lang>` | Implementation language: Python, TypeScript, Other (mcp-server) |
342-
| `--host <host>` | Compute host: Lambda or AgentCoreRuntime (mcp-server) |
343-
| `--gateway <name>` | Gateway to attach target to |
344-
| `--outbound-auth <type>` | `oauth`, `api-key`, or `none` (varies by target type) |
345-
| `--credential-name <name>` | Existing credential name for outbound auth |
346-
| `--oauth-client-id <id>` | OAuth client ID (creates credential inline) |
347-
| `--oauth-client-secret <secret>` | OAuth client secret (creates credential inline) |
348-
| `--oauth-discovery-url <url>` | OAuth discovery URL (creates credential inline) |
349-
| `--oauth-scopes <scopes>` | OAuth scopes, comma-separated |
350-
| `--rest-api-id <id>` | API Gateway REST API ID (api-gateway) |
351-
| `--stage <stage>` | API Gateway stage name (api-gateway) |
352-
| `--tool-filter-path <path>` | Filter API paths, supports wildcards (api-gateway) |
353-
| `--tool-filter-methods <methods>` | Comma-separated HTTP methods to expose (api-gateway) |
354-
| `--schema <path>` | Path to schema file, relative to project root (open-api-schema, smithy-model) |
355-
| `--schema-s3-account <account>` | AWS account for S3-hosted schema (open-api-schema, smithy-model) |
356-
| `--lambda-arn <arn>` | Lambda function ARN (lambda-function-arn) |
357-
| `--tool-schema-file <path>` | Tool schema file, relative to project root or absolute path (lambda-function-arn) |
358-
| `--json` | JSON output |
335+
| Flag | Description |
336+
| --------------------------------- | ------------------------------------------------------------------------------------------------------------- |
337+
| `--name <name>` | Target name |
338+
| `--description <desc>` | Target description |
339+
| `--type <type>` | Target type (required): `mcp-server`, `api-gateway`, `open-api-schema`, `smithy-model`, `lambda-function-arn` |
340+
| `--endpoint <url>` | MCP server endpoint URL (mcp-server) |
341+
| `--language <lang>` | Implementation language: Python, TypeScript, Other (mcp-server) |
342+
| `--host <host>` | Compute host: Lambda or AgentCoreRuntime (mcp-server) |
343+
| `--gateway <name>` | Gateway to attach target to |
344+
| `--outbound-auth <type>` | `oauth`, `api-key`, or `none` (varies by target type) |
345+
| `--credential-name <name>` | Existing credential name for outbound auth |
346+
| `--oauth-client-id <id>` | OAuth client ID (creates credential inline) |
347+
| `--oauth-client-secret <secret>` | OAuth client secret (creates credential inline) |
348+
| `--oauth-discovery-url <url>` | OAuth discovery URL (creates credential inline) |
349+
| `--oauth-scopes <scopes>` | OAuth scopes, comma-separated |
350+
| `--rest-api-id <id>` | API Gateway REST API ID (api-gateway) |
351+
| `--stage <stage>` | API Gateway stage name (api-gateway) |
352+
| `--tool-filter-path <path>` | Filter API paths, supports wildcards (api-gateway) |
353+
| `--tool-filter-methods <methods>` | Comma-separated HTTP methods to expose (api-gateway) |
354+
| `--schema <path>` | Path to schema file, relative to project root (open-api-schema, smithy-model) |
355+
| `--schema-s3-account <account>` | AWS account for S3-hosted schema (open-api-schema, smithy-model) |
356+
| `--lambda-arn <arn>` | Lambda function ARN (lambda-function-arn) |
357+
| `--tool-schema-file <path>` | Tool schema file, relative to project root or absolute path (lambda-function-arn) |
358+
| `--json` | JSON output |
359359

360360
> **Note**: `smithy-model` and `lambda-function-arn` use IAM role auth and do not support `--outbound-auth`.
361361
> `open-api-schema` requires `--outbound-auth` (`oauth` or `api-key`). `api-gateway` supports `api-key` or `none`.
@@ -692,12 +692,12 @@ agentcore fetch access --name MyGateway --type gateway --json
692692
agentcore fetch access --name MyAgent --type agent --target staging
693693
```
694694

695-
| Flag | Description |
696-
| ----------------- | ----------------------------------------------- |
697-
| `--name <name>` | Gateway or agent name |
698-
| `--type <type>` | Resource type: `gateway` (default) or `agent` |
699-
| `--target <name>` | Deployment target |
700-
| `--json` | JSON output |
695+
| Flag | Description |
696+
| ----------------- | --------------------------------------------- |
697+
| `--name <name>` | Gateway or agent name |
698+
| `--type <type>` | Resource type: `gateway` (default) or `agent` |
699+
| `--target <name>` | Deployment target |
700+
| `--json` | JSON output |
701701

702702
### package
703703

0 commit comments

Comments
 (0)