@intentius/chant-lexicon-aws 0.0.14 → 0.0.16

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/package.json CHANGED
@@ -1,32 +1,35 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-aws",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
- "files": ["src/", "dist/"],
6
+ "files": [
7
+ "src/",
8
+ "dist/"
9
+ ],
7
10
  "publishConfig": {
8
- "access": "public"
9
- },
10
- "exports": {
11
- ".": "./src/index.ts",
12
- "./*": "./src/*",
13
- "./manifest": "./dist/manifest.json",
14
- "./meta": "./dist/meta.json",
15
- "./types": "./dist/types/index.d.ts"
16
- },
17
- "scripts": {
18
- "generate": "bun run src/codegen/generate-cli.ts",
19
- "bundle": "bun run src/package-cli.ts",
20
- "validate": "bun run src/validate-cli.ts",
21
- "docs": "bun src/codegen/docs-cli.ts",
22
- "prepack": "bun run bundle && bun run validate"
23
- },
24
- "dependencies": {
25
- "@intentius/chant": "0.0.13",
26
- "fflate": "^0.8.2",
27
- "js-yaml": "^4.1.0"
28
- },
29
- "devDependencies": {
30
- "typescript": "^5.9.3"
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 run src/codegen/docs-cli.ts",
25
+ "prepack": "bun run generate && 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
  }
@@ -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 \`.claude/skills/chant-aws/SKILL.md\` for automatic discovery by Claude Code.
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