Skip to content

Commit 24519af

Browse files
docs: rename e2e test skill
1 parent dba1b73 commit 24519af

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: write-e2e-test
2+
name: e2e-test
33
description: >
44
Write, run, and debug hub e2e tests for meshstack-hub modules. Use when asked to add, fix, or run
55
an end-to-end smoke test for any building block module. Covers structure, test_context wiring,

.agents/skills/module/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ conventions, see the reference files in `.agents/references/`.
7878
### Scorecard fix notes
7979

8080
- **`logo` check**: requires `buildingblock/logo.png` (256×256 px, flat-design, white-background icon). Generate with an AI image tool if missing, then resize and optimise with `pngquant`.
81-
- **`e2e_tests` / `e2e_tftest`**: creating a full e2e test is a larger task — check with the module owner before adding. See `.agents/skills/write-e2e-test/SKILL.md`.
81+
- **`e2e_tests` / `e2e_tftest`**: creating a full e2e test is a larger task — check with the module owner before adding. See `.agents/skills/e2e-test/SKILL.md`.
8282
- **Never** fix a check by editing the check logic in `scorecard.mjs` — fix the module.
8383

8484
---
@@ -92,4 +92,4 @@ conventions, see the reference files in `.agents/references/`.
9292
| AWS backplane identity | `.agents/references/aws-backplane.md` |
9393
| Azure backplane identity | `.agents/references/azure-backplane.md` |
9494
| STACKIT backplane identity | `.agents/references/stackit-backplane.md` |
95-
| E2E tests | `.agents/skills/write-e2e-test/SKILL.md` |
95+
| E2E tests | `.agents/skills/e2e-test/SKILL.md` |

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ getting-started steps, and shared responsibility matrix.
313313

314314
Modules that can be smoke-tested against a live meshStack instance should include an `e2e/` directory alongside the module root.
315315

316-
See [.agents/skills/write-e2e-test/SKILL.md](.agents/skills/write-e2e-test/SKILL.md) (the `write-e2e-test` skill) for the full e2e testing conventions, including the `e2e/` structure, `test_context` wiring, `e2e/main.tf` and `*.tftest.hcl` conventions, the new-test checklist, and how to run and debug tests via the smoke-test runner.
316+
See [.agents/skills/e2e-test/SKILL.md](.agents/skills/e2e-test/SKILL.md) (the `e2e-test` skill) for the full e2e testing conventions, including the `e2e/` structure, `test_context` wiring, `e2e/main.tf` and `*.tftest.hcl` conventions, the new-test checklist, and how to run and debug tests via the smoke-test runner.
317317

318318
---
319319

tools/scorecard/scorecard.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const CATEGORIES = {
5555
const AGENTS = (section) => ({ file: "AGENTS.md", section });
5656
const AZURE = (section) => ({ file: ".agents/references/azure-backplane.md", section });
5757
const BBD_README = (section) => ({ file: ".agents/references/bbd-readme.md", section });
58-
const E2E = (section) => ({ file: ".agents/skills/write-e2e-test/SKILL.md", section });
58+
const E2E = (section) => ({ file: ".agents/skills/e2e-test/SKILL.md", section });
5959

6060
const detectors = [
6161
// ─── Core Structure ─────────────────────────────────────────────────────

0 commit comments

Comments
 (0)