@motion.page/sdk 0.1.2 → 0.1.3
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/README.md +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1193,6 +1193,24 @@ import { Types } from '@motion.page/sdk';
|
|
|
1193
1193
|
|
|
1194
1194
|
---
|
|
1195
1195
|
|
|
1196
|
+
## AI Agent Support
|
|
1197
|
+
|
|
1198
|
+
This package includes built-in support for AI coding assistants.
|
|
1199
|
+
|
|
1200
|
+
**`llms.txt` included** — An `llms.txt` file (per the [llmstxt.org](https://llmstxt.org) standard) ships with the package and is automatically discoverable by AI assistants when `@motion.page/sdk` is installed in `node_modules`. It provides a structured index of the entire SDK API so agents can answer questions and generate correct code without hallucinating APIs.
|
|
1201
|
+
|
|
1202
|
+
**Full skill plugin** — For comprehensive AI-assisted development — complete API reference, 50+ examples, and GSAP / Framer Motion migration guides — install the official plugin:
|
|
1203
|
+
|
|
1204
|
+
```bash
|
|
1205
|
+
# Universal (40+ agents)
|
|
1206
|
+
npx skills add motion-page/claude-plugin
|
|
1207
|
+
|
|
1208
|
+
# Claude Code
|
|
1209
|
+
/install-plugin npm:@motion.page/claude-plugin
|
|
1210
|
+
```
|
|
1211
|
+
|
|
1212
|
+
---
|
|
1213
|
+
|
|
1196
1214
|
## Browser Build
|
|
1197
1215
|
|
|
1198
1216
|
### Browser Build (IIFE)
|