codingwithagent 1.0.0 → 1.1.1

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/LICENSE +21 -21
  3. package/README.md +131 -37
  4. package/bin/init.js +257 -257
  5. package/package.json +56 -56
  6. package/templates/accessibility/.cursorrules +342 -342
  7. package/templates/accessibility/README.md +47 -47
  8. package/templates/antigravity/accessibility/.agent/rules/accessibility.md +501 -501
  9. package/templates/antigravity/accessibility/.agent/rules/aria-patterns.md +568 -568
  10. package/templates/antigravity/accessibility/.agent/rules/wcag-standard.md +225 -225
  11. package/templates/antigravity/accessibility/README.md +42 -42
  12. package/templates/antigravity/minimal/.agent/rules/accessibility.md +53 -53
  13. package/templates/antigravity/minimal/.agent/rules/code-quality.md +86 -86
  14. package/templates/antigravity/minimal/.agent/rules/react-components.md +164 -164
  15. package/templates/antigravity/minimal/README.md +34 -34
  16. package/templates/antigravity/standard/.agent/rules/accessibility.md +98 -98
  17. package/templates/antigravity/standard/.agent/rules/code-quality.md +166 -166
  18. package/templates/antigravity/standard/.agent/rules/pull-request-review.md +192 -192
  19. package/templates/antigravity/standard/.agent/rules/react-components.md +204 -204
  20. package/templates/antigravity/standard/.agent/rules/testing.md +197 -197
  21. package/templates/antigravity/standard/README.md +39 -39
  22. package/templates/antigravity/strict/.agent/README.md +46 -46
  23. package/templates/antigravity/strict/.agent/rules/accessibility.md +199 -199
  24. package/templates/antigravity/strict/.agent/rules/code-quality.md +268 -268
  25. package/templates/antigravity/strict/.agent/rules/pull-request-review.md +114 -114
  26. package/templates/antigravity/strict/.agent/rules/react-components.md +423 -423
  27. package/templates/antigravity/strict/.agent/rules/security.md +483 -483
  28. package/templates/antigravity/strict/.agent/rules/testing.md +280 -280
  29. package/templates/minimal/.cursorrules +48 -48
  30. package/templates/minimal/README.md +40 -40
  31. package/templates/standard/.cursorrules +184 -184
  32. package/templates/standard/README.md +43 -43
  33. package/templates/strict/.cursorrules +227 -227
  34. package/templates/strict/README.md +47 -47
@@ -1,47 +1,47 @@
1
- # Accessibility Profile
2
-
3
- WCAG 2.1+ focused development with accessibility as the top priority.
4
-
5
- ## What's Included
6
-
7
- - Comprehensive WCAG 2.1 Level AA (minimum)
8
- - Screen reader testing required
9
- - Keyboard navigation mandatory
10
- - Color contrast enforcement
11
- - ARIA patterns and best practices
12
-
13
- ## Best For
14
-
15
- - Government projects
16
- - Healthcare applications
17
- - Educational platforms
18
- - Projects with accessibility requirements
19
-
20
- ## Coverage
21
-
22
- - POUR principles (Perceivable, Operable, Understandable, Robust)
23
- - Detailed ARIA implementation
24
- - Manual testing requirements
25
- - Automated accessibility testing
26
- - User testing with people with disabilities
27
-
28
- ## Quick Start
29
-
30
- ```bash
31
- npx codingwithagent init
32
- # Select: 4. Accessibility
33
- ```
34
-
35
- ### What you get
36
-
37
- A `.cursorrules` file focused on:
38
-
39
- - WCAG 2.1 compliance
40
- - Screen reader compatibility
41
- - Keyboard accessibility
42
- - Color contrast requirements
43
- - Semantic HTML enforcement
44
-
45
- ## Philosophy
46
-
47
- "The power of the Web is in its universality. Access by everyone regardless of disability is essential." - Tim Berners-Lee
1
+ # Accessibility Profile
2
+
3
+ WCAG 2.1+ focused development with accessibility as the top priority.
4
+
5
+ ## What's Included
6
+
7
+ - Comprehensive WCAG 2.1 Level AA (minimum)
8
+ - Screen reader testing required
9
+ - Keyboard navigation mandatory
10
+ - Color contrast enforcement
11
+ - ARIA patterns and best practices
12
+
13
+ ## Best For
14
+
15
+ - Government projects
16
+ - Healthcare applications
17
+ - Educational platforms
18
+ - Projects with accessibility requirements
19
+
20
+ ## Coverage
21
+
22
+ - POUR principles (Perceivable, Operable, Understandable, Robust)
23
+ - Detailed ARIA implementation
24
+ - Manual testing requirements
25
+ - Automated accessibility testing
26
+ - User testing with people with disabilities
27
+
28
+ ## Quick Start
29
+
30
+ ```bash
31
+ npx codingwithagent init
32
+ # Select: 4. Accessibility
33
+ ```
34
+
35
+ ### What you get
36
+
37
+ A `.cursorrules` file focused on:
38
+
39
+ - WCAG 2.1 compliance
40
+ - Screen reader compatibility
41
+ - Keyboard accessibility
42
+ - Color contrast requirements
43
+ - Semantic HTML enforcement
44
+
45
+ ## Philosophy
46
+
47
+ "The power of the Web is in its universality. Access by everyone regardless of disability is essential." - Tim Berners-Lee