Skip to content

Commit 7006f18

Browse files
committed
resolve comments
1 parent a6ce222 commit 7006f18

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/prompts/infrastructure-tester.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@ export const schema = {
66
iac_path: z
77
.string()
88
.min(1)
9-
.describe("Path to the IaC root directory, e.g. ./infra, ./cdk, or ./terraform."),
9+
.describe("Where is the IaC project? Example: ./infra, ./cdk, or ./terraform."),
1010
iac_type: z
1111
.string()
1212
.optional()
13-
.describe("IaC framework: cdk, terraform, sam, cloudformation, or auto. Defaults to auto."),
13+
.describe("What IaC framework is it? Use auto, cdk, terraform, sam, or cloudformation."),
1414
test_language: z
1515
.string()
1616
.optional()
17-
.describe("Language for generated integration tests. Defaults to typescript."),
17+
.describe("What language should the integration tests use? Defaults to typescript."),
1818
test_framework: z
1919
.string()
2020
.optional()
21-
.describe("Test framework. Defaults from the test language, e.g. jest or pytest."),
21+
.describe("What test framework should be used? Defaults from the test language."),
2222
mode: z
2323
.string()
2424
.optional()
25-
.describe("validate-only runs deployment validation only; full also writes and runs tests."),
25+
.describe("Run validation only, or also write and run tests? Use 'validate-only' or 'full'."),
2626
services_focus: z
2727
.string()
2828
.optional()
29-
.describe("Comma-separated AWS services to focus on. Empty means all discovered services."),
29+
.describe("Which AWS services should get extra attention? Example: s3,lambda,dynamodb."),
3030
user_focus: z
3131
.string()
3232
.optional()
3333
.describe(
34-
"What should this test run focus on? For example: a service, resource path, workflow, or concern to prioritize. Optional."
34+
"Anything specific to focus on? Example: a resource path, workflow, service, or bug."
3535
),
3636
};
3737

0 commit comments

Comments
 (0)