@intentius/chant-lexicon-aws 0.0.14 → 0.0.15
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/dist/integrity.json +6 -5
- package/dist/manifest.json +1 -1
- package/dist/meta.json +744 -16
- package/dist/rules/waw030.ts +55 -0
- package/dist/rules/waw031.ts +66 -0
- package/dist/types/index.d.ts +773 -34
- package/package.json +29 -26
- package/src/codegen/docs.ts +11 -1
- package/src/generated/index.d.ts +773 -34
- package/src/generated/index.ts +62 -3
- package/src/generated/lexicon-aws.json +744 -16
- package/src/lint/post-synth/waw030.test.ts +209 -1
- package/src/lint/post-synth/waw030.ts +55 -0
- package/src/lint/post-synth/waw031.test.ts +273 -0
- package/src/lint/post-synth/waw031.ts +66 -0
- package/src/plugin.ts +2 -1
- package/src/serializer.test.ts +40 -0
- package/src/serializer.ts +6 -1
package/package.json
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"files": [
|
|
6
|
+
"files": [
|
|
7
|
+
"src/",
|
|
8
|
+
"dist/"
|
|
9
|
+
],
|
|
7
10
|
"publishConfig": {
|
|
8
|
-
|
|
9
|
-
},
|
|
10
|
-
"exports": {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
|
|
31
|
-
}
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./src/index.ts",
|
|
15
|
+
"./*": "./src/*.ts",
|
|
16
|
+
"./manifest": "./dist/manifest.json",
|
|
17
|
+
"./meta": "./dist/meta.json",
|
|
18
|
+
"./types": "./dist/types/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"generate": "bun run src/codegen/generate-cli.ts",
|
|
22
|
+
"bundle": "bun run src/package-cli.ts",
|
|
23
|
+
"validate": "bun run src/validate-cli.ts",
|
|
24
|
+
"docs": "bun src/codegen/docs-cli.ts",
|
|
25
|
+
"prepack": "bun run bundle && bun run validate"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@intentius/chant": "0.0.15",
|
|
29
|
+
"fflate": "^0.8.2",
|
|
30
|
+
"js-yaml": "^4.1.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
|
+
}
|
|
32
35
|
}
|
package/src/codegen/docs.ts
CHANGED
|
@@ -823,6 +823,16 @@ Flags DynamoDB tables without \`PointInTimeRecoverySpecification.PointInTimeReco
|
|
|
823
823
|
|
|
824
824
|
Flags EBS volumes without \`Encrypted: true\`. All EBS volumes should encrypt data at rest for compliance and security.
|
|
825
825
|
|
|
826
|
+
### WAW031 — EKS Addon Missing ServiceAccountRoleArn
|
|
827
|
+
|
|
828
|
+
**Severity:** warning | **Category:** correctness
|
|
829
|
+
|
|
830
|
+
Flags EKS addons that require an IRSA role but don't have \`ServiceAccountRoleArn\` set. Without an IRSA role, the addon pods can't authenticate to AWS APIs and the addon hangs in CREATING status. Known addons that require IRSA: \`aws-ebs-csi-driver\`, \`aws-efs-csi-driver\`, \`adot\`, \`amazon-cloudwatch-observability\`.
|
|
831
|
+
|
|
832
|
+
\`\`\`
|
|
833
|
+
WAW031: EKS Addon "EbsCsiAddon" (aws-ebs-csi-driver) has no ServiceAccountRoleArn — it needs an IRSA role for EBS API access
|
|
834
|
+
\`\`\`
|
|
835
|
+
|
|
826
836
|
## Running lint
|
|
827
837
|
|
|
828
838
|
\`\`\`bash
|
|
@@ -1053,7 +1063,7 @@ Skills are structured markdown documents bundled with a lexicon. When an AI agen
|
|
|
1053
1063
|
|
|
1054
1064
|
## Installation
|
|
1055
1065
|
|
|
1056
|
-
When you scaffold a new project with \`chant init --lexicon aws\`, the skill is installed to
|
|
1066
|
+
When you scaffold a new project with \`chant init --lexicon aws\`, the skill is installed to \`skills/chant-aws/SKILL.md\` for automatic discovery by Claude Code.
|
|
1057
1067
|
|
|
1058
1068
|
For existing projects, create the file manually:
|
|
1059
1069
|
|