Skip to content

Commit 5e7afdb

Browse files
authored
feat: align with ecosystem standards v1.7.0 and add drift-check workflow (#5)
Bumps standards-version signals across all skills, rules, and agent context files from 1.6.3 to 1.7.0 to align with the meta-repo's v1.7 standards generation. Adds .github/workflows/drift-check.yml as a standalone workflow that runs the meta-repo's drift checker against this repo's checkout on every PR and push to main. Standalone rather than integrated into existing CI workflows, matching the pattern established in CFX canary (TMHSDigital/CFX-Developer-Tools#4). Phase 2 Session D rollout. Parallel batch following the validated canary pattern. See TMHSDigital/Developer-Tools-Directory#1 Phase 2 Session D. Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com Made-with: Cursor Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com
1 parent f6f2f29 commit 5e7afdb

57 files changed

Lines changed: 77 additions & 56 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/drift-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Ecosystem drift check
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
jobs:
11+
drift-check:
12+
name: Ecosystem drift check
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
steps:
17+
- uses: actions/checkout@v5
18+
- uses: TMHSDigital/Developer-Tools-Directory/.github/actions/drift-check@v1.7
19+
with:
20+
mode: self
21+
format: gh-summary

CLAUDE.md

Lines changed: 1 addition & 1 deletion

rules/mobile-accessibility.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ globs:
55
- "*.ts"
66
- "*.tsx"
77
- "*.dart"
8-
standards-version: 1.6.3
8+
standards-version: 1.7.0
99
---
1010

1111
# Accessibility Anti-Patterns

rules/mobile-bundle-size.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ globs:
66
- "*.tsx"
77
- "*.json"
88
- "*.dart"
9-
standards-version: 1.6.3
9+
standards-version: 1.7.0
1010
---
1111

1212
# Bundle Size

rules/mobile-color-contrast.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Flag insufficient color contrast, missing dark mode support, and non-semantic color usage
33
globs: ["*.ts", "*.tsx", "*.dart"]
44
alwaysApply: false
5-
standards-version: 1.6.3
5+
standards-version: 1.7.0
66
---
77

88
# Color Contrast & Theme Compliance

rules/mobile-env-safety.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ globs:
55
- "*.ts"
66
- "*.tsx"
77
- "*.json"
8-
standards-version: 1.6.3
8+
standards-version: 1.7.0
99
---
1010

1111
# Environment Safety

rules/mobile-i18n-strings.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ globs:
55
- "**/*.ts"
66
- "**/*.tsx"
77
- "**/*.dart"
8-
standards-version: 1.6.3
8+
standards-version: 1.7.0
99
---
1010

1111
# I18n Strings

rules/mobile-image-assets.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ globs:
55
- "*.ts"
66
- "*.tsx"
77
- "*.json"
8-
standards-version: 1.6.3
8+
standards-version: 1.7.0
99
---
1010

1111
# Image Asset Optimization

rules/mobile-native-compat.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Flag deprecated native APIs, bridge-only module patterns, and New Architecture incompatibilities
33
globs: ["*.ts", "*.tsx", "*.dart"]
44
alwaysApply: false
5-
standards-version: 1.6.3
5+
standards-version: 1.7.0
66
---
77

88
# Native Compatibility

rules/mobile-performance.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ globs:
55
- "*.ts"
66
- "*.tsx"
77
- "*.dart"
8-
standards-version: 1.6.3
8+
standards-version: 1.7.0
99
---
1010

1111
# Performance Anti-Patterns

0 commit comments

Comments
 (0)