Skip to content

Commit e6baf01

Browse files
Copilotafranken
andcommitted
Fix checklist format and active voice in markdown files
Co-authored-by: afranken <763000+afranken@users.noreply.github.com>
1 parent 1c09115 commit e6baf01

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.claude/skills/document/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Concise, active voice. Include runnable examples (Kotlin for API, shell for CLI)
3636

3737
## Checklist
3838

39-
- Verify technical accuracy against source code
40-
- Ensure links and code examples are valid
41-
- Match surrounding style and formatting
39+
- [ ] Verify technical accuracy against source code
40+
- [ ] Ensure links and code examples are valid
41+
- [ ] Match surrounding style and formatting

.claude/skills/refactor/SKILL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Document what, why, and gotchas. Link to AWS API docs where relevant. See **[doc
3333

3434
## Checklist
3535

36-
- [ ] No behavior changes — tests still pass
36+
- [ ] Verify no behavior changes — run tests
3737
- [ ] Run `make format`
38-
- [ ] Comments explain *why*, not *what*
39-
- [ ] Public APIs have KDoc
40-
- [ ] Names are self-documenting
38+
- [ ] Ensure comments explain *why*, not *what*
39+
- [ ] Add KDoc for all public APIs
40+
- [ ] Use self-documenting names

.claude/skills/test/SKILL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Read **[docs/TESTING.md](../../../docs/TESTING.md)**, **[docs/KOTLIN.md](../../.
2020

2121
- [ ] Read `docs/TESTING.md` and root + module `AGENTS.md`
2222
- [ ] If existing tests have structural problems (poor naming, shared state, weak assertions), invoke the **`refactor` skill** to fix them rather than working around them
23-
- [ ] Tests pass locally
24-
- [ ] Both success and failure cases covered
25-
- [ ] Tests are independent (no shared state, UUID bucket names)
26-
- [ ] Assertions are specific
23+
- [ ] Verify tests pass locally
24+
- [ ] Cover both success and failure cases
25+
- [ ] Keep tests independent (no shared state, UUID bucket names)
26+
- [ ] Use specific assertions
2727
- [ ] Run `make format`

docs/TESTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ make integration-tests # A
9898

9999
## Checklist
100100

101-
- [ ] Tests pass locally
102-
- [ ] Both success and failure cases covered
103-
- [ ] Tests are independent (no shared state, UUID bucket names)
104-
- [ ] Assertions are specific
101+
- [ ] Verify tests pass locally
102+
- [ ] Cover both success and failure cases
103+
- [ ] Keep tests independent (no shared state, UUID bucket names)
104+
- [ ] Use specific assertions
105105
- [ ] Run `make format`

0 commit comments

Comments
 (0)