@motion.page/sdk 0.1.3 → 0.1.5

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 (2) hide show
  1. package/README.md +19 -18
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -12,6 +12,7 @@ A high-performance animation SDK with a declarative API. Scroll-triggered animat
12
12
 
13
13
  - [Installation](#installation)
14
14
  - [Quick Start](#quick-start)
15
+ - [AI Agent Support](#ai-agent-support)
15
16
  - [Core Concept](#core-concept)
16
17
  - [Implicit Values](#implicit-values)
17
18
  - [API Reference](#api-reference)
@@ -137,6 +138,24 @@ Motion('audio-fade', state, {
137
138
 
138
139
  ---
139
140
 
141
+ ## AI Agent Support
142
+
143
+ This package includes built-in support for AI coding assistants.
144
+
145
+ **`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.
146
+
147
+ **Full skill plugin** — For comprehensive AI-assisted development — complete API reference, 50+ examples, and GSAP / Framer Motion migration guides — install the official plugin:
148
+
149
+ ```bash
150
+ # Universal (40+ agents)
151
+ npx skills add motion-page/claude-plugin
152
+
153
+ # Claude Code
154
+ /install-plugin npm:@motion.page/claude-plugin
155
+ ```
156
+
157
+ ---
158
+
140
159
  ## Core Concept
141
160
 
142
161
  Every animation in the SDK is a **named timeline**. The name is the first argument to `Motion()` and acts as a registry key — calling `Motion('same-name')` always returns the same `Timeline` instance.
@@ -1193,24 +1212,6 @@ import { Types } from '@motion.page/sdk';
1193
1212
 
1194
1213
  ---
1195
1214
 
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
-
1214
1215
  ## Browser Build
1215
1216
 
1216
1217
  ### Browser Build (IIFE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@motion.page/sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "High-performance CSS animation SDK with scroll, hover, gesture, and cursor triggers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",