@hegemonart/get-design-done 1.16.0 → 1.19.0

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 (58) hide show
  1. package/.claude-plugin/marketplace.json +12 -4
  2. package/.claude-plugin/plugin.json +22 -4
  3. package/CHANGELOG.md +111 -0
  4. package/README.md +27 -2
  5. package/agents/design-auditor.md +65 -1
  6. package/agents/design-context-builder.md +6 -1
  7. package/agents/design-doc-writer.md +21 -0
  8. package/agents/design-executor.md +22 -4
  9. package/agents/design-pattern-mapper.md +62 -0
  10. package/agents/design-phase-researcher.md +1 -1
  11. package/agents/motion-mapper.md +74 -9
  12. package/agents/token-mapper.md +8 -0
  13. package/package.json +16 -2
  14. package/reference/components/README.md +27 -23
  15. package/reference/components/alert.md +198 -0
  16. package/reference/components/badge.md +202 -0
  17. package/reference/components/breadcrumbs.md +198 -0
  18. package/reference/components/chip.md +209 -0
  19. package/reference/components/command-palette.md +228 -0
  20. package/reference/components/date-picker.md +227 -0
  21. package/reference/components/file-upload.md +219 -0
  22. package/reference/components/list.md +217 -0
  23. package/reference/components/menu.md +212 -0
  24. package/reference/components/navbar.md +211 -0
  25. package/reference/components/pagination.md +205 -0
  26. package/reference/components/progress.md +210 -0
  27. package/reference/components/rich-text-editor.md +226 -0
  28. package/reference/components/sidebar.md +211 -0
  29. package/reference/components/skeleton.md +197 -0
  30. package/reference/components/slider.md +208 -0
  31. package/reference/components/stepper.md +220 -0
  32. package/reference/components/table.md +229 -0
  33. package/reference/components/toast.md +200 -0
  34. package/reference/components/tree.md +225 -0
  35. package/reference/css-grid-layout.md +835 -0
  36. package/reference/data-visualization.md +333 -0
  37. package/reference/external/NOTICE.hyperframes +28 -0
  38. package/reference/form-patterns.md +245 -0
  39. package/reference/image-optimization.md +582 -0
  40. package/reference/information-architecture.md +255 -0
  41. package/reference/motion-advanced.md +754 -0
  42. package/reference/motion-easings.md +381 -0
  43. package/reference/motion-interpolate.md +282 -0
  44. package/reference/motion-spring.md +234 -0
  45. package/reference/motion-transition-taxonomy.md +155 -0
  46. package/reference/motion.md +20 -0
  47. package/reference/onboarding-progressive-disclosure.md +250 -0
  48. package/reference/output-contracts/motion-map.schema.json +135 -0
  49. package/reference/platforms.md +346 -0
  50. package/reference/registry.json +445 -220
  51. package/reference/registry.schema.json +4 -0
  52. package/reference/rtl-cjk-cultural.md +353 -0
  53. package/reference/user-research.md +360 -0
  54. package/reference/variable-fonts-loading.md +532 -0
  55. package/scripts/lib/easings.cjs +280 -0
  56. package/scripts/lib/parse-contract.cjs +220 -0
  57. package/scripts/lib/spring.cjs +160 -0
  58. package/scripts/tests/test-motion-provenance.sh +64 -0
@@ -0,0 +1,64 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ # Provenance test: verifies RN-MIT attribution is present in all motion files
5
+ # and that no file contains incorrect "Remotion/" provenance.
6
+ #
7
+ # Run from the project root:
8
+ # bash scripts/tests/test-motion-provenance.sh
9
+
10
+ PASS_COUNT=0
11
+ FAIL_COUNT=0
12
+
13
+ check_attribution() {
14
+ local file="$1"
15
+ local needle="React Native"
16
+
17
+ if grep -q "$needle" "$file"; then
18
+ echo "PASS: $file contains RN-MIT attribution"
19
+ PASS_COUNT=$((PASS_COUNT + 1))
20
+ else
21
+ echo "FAIL: $file is missing RN-MIT attribution (expected: '$needle')"
22
+ FAIL_COUNT=$((FAIL_COUNT + 1))
23
+ fi
24
+ }
25
+
26
+ check_no_remotion() {
27
+ local file="$1"
28
+
29
+ if grep -q "Remotion/" "$file"; then
30
+ echo "FAIL: $file contains wrong provenance string 'Remotion/'"
31
+ FAIL_COUNT=$((FAIL_COUNT + 1))
32
+ else
33
+ echo "PASS: $file does not contain 'Remotion/'"
34
+ PASS_COUNT=$((PASS_COUNT + 1))
35
+ fi
36
+ }
37
+
38
+ FILES=(
39
+ "reference/motion-easings.md"
40
+ "reference/motion-interpolate.md"
41
+ "reference/motion-spring.md"
42
+ "scripts/lib/easings.cjs"
43
+ "scripts/lib/spring.cjs"
44
+ )
45
+
46
+ echo "=== Attribution checks ==="
47
+ for f in "${FILES[@]}"; do
48
+ check_attribution "$f"
49
+ done
50
+
51
+ echo ""
52
+ echo "=== Provenance contamination checks ==="
53
+ for f in "${FILES[@]}"; do
54
+ check_no_remotion "$f"
55
+ done
56
+
57
+ echo ""
58
+ echo "=== Results: $PASS_COUNT passed, $FAIL_COUNT failed ==="
59
+
60
+ if [ "$FAIL_COUNT" -gt 0 ]; then
61
+ exit 1
62
+ fi
63
+
64
+ exit 0