@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.
- package/.claude-plugin/marketplace.json +12 -4
- package/.claude-plugin/plugin.json +22 -4
- package/CHANGELOG.md +111 -0
- package/README.md +27 -2
- package/agents/design-auditor.md +65 -1
- package/agents/design-context-builder.md +6 -1
- package/agents/design-doc-writer.md +21 -0
- package/agents/design-executor.md +22 -4
- package/agents/design-pattern-mapper.md +62 -0
- package/agents/design-phase-researcher.md +1 -1
- package/agents/motion-mapper.md +74 -9
- package/agents/token-mapper.md +8 -0
- package/package.json +16 -2
- package/reference/components/README.md +27 -23
- package/reference/components/alert.md +198 -0
- package/reference/components/badge.md +202 -0
- package/reference/components/breadcrumbs.md +198 -0
- package/reference/components/chip.md +209 -0
- package/reference/components/command-palette.md +228 -0
- package/reference/components/date-picker.md +227 -0
- package/reference/components/file-upload.md +219 -0
- package/reference/components/list.md +217 -0
- package/reference/components/menu.md +212 -0
- package/reference/components/navbar.md +211 -0
- package/reference/components/pagination.md +205 -0
- package/reference/components/progress.md +210 -0
- package/reference/components/rich-text-editor.md +226 -0
- package/reference/components/sidebar.md +211 -0
- package/reference/components/skeleton.md +197 -0
- package/reference/components/slider.md +208 -0
- package/reference/components/stepper.md +220 -0
- package/reference/components/table.md +229 -0
- package/reference/components/toast.md +200 -0
- package/reference/components/tree.md +225 -0
- package/reference/css-grid-layout.md +835 -0
- package/reference/data-visualization.md +333 -0
- package/reference/external/NOTICE.hyperframes +28 -0
- package/reference/form-patterns.md +245 -0
- package/reference/image-optimization.md +582 -0
- package/reference/information-architecture.md +255 -0
- package/reference/motion-advanced.md +754 -0
- package/reference/motion-easings.md +381 -0
- package/reference/motion-interpolate.md +282 -0
- package/reference/motion-spring.md +234 -0
- package/reference/motion-transition-taxonomy.md +155 -0
- package/reference/motion.md +20 -0
- package/reference/onboarding-progressive-disclosure.md +250 -0
- package/reference/output-contracts/motion-map.schema.json +135 -0
- package/reference/platforms.md +346 -0
- package/reference/registry.json +445 -220
- package/reference/registry.schema.json +4 -0
- package/reference/rtl-cjk-cultural.md +353 -0
- package/reference/user-research.md +360 -0
- package/reference/variable-fonts-loading.md +532 -0
- package/scripts/lib/easings.cjs +280 -0
- package/scripts/lib/parse-contract.cjs +220 -0
- package/scripts/lib/spring.cjs +160 -0
- 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
|