scrollcraft 2.0.11 → 2.0.12
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 +4 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,8 +56,6 @@ All you have to do now, is to drop the scrollcraft.json project into your Scroll
|
|
|
56
56
|
#### Vanilla JS Integration
|
|
57
57
|
For full implementation, please refer to the [Vanilla JS Example](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/examples/html/index.html).
|
|
58
58
|
|
|
59
|
-
[Live Demo](https://example-html.scrollcraft.dev)
|
|
60
|
-
|
|
61
59
|
```html
|
|
62
60
|
<!-- 2. Drop it into your HTML -->
|
|
63
61
|
<script type="module">
|
|
@@ -73,9 +71,6 @@ For full implementation, please refer to the [Vanilla JS Example](https://github
|
|
|
73
71
|
#### React Integration
|
|
74
72
|
For full implementation, please refer to the [React Integration Example](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/examples/create-next-app/src/app/page.tsx).
|
|
75
73
|
|
|
76
|
-
[Live Demo](https://example-next.scrollcraft.dev)
|
|
77
|
-
|
|
78
|
-
|
|
79
74
|
```tsx
|
|
80
75
|
// 2. Drop it into your Next.js app
|
|
81
76
|
import myproject from './example-apple-project/scrollcraft.json';
|
|
@@ -124,13 +119,13 @@ const AppleInfo = () => {
|
|
|
124
119
|
Choose your path based on your role:
|
|
125
120
|
|
|
126
121
|
### 👤 For Humans
|
|
127
|
-
- [**Core Architecture**](https://
|
|
128
|
-
- [**Asset Pipeline**](https://
|
|
129
|
-
- [**React Hooks**](https://
|
|
122
|
+
- [**Core Architecture**](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/docs/content/architecture.md): Understand the state-snapshot engine.
|
|
123
|
+
- [**Asset Pipeline**](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/docs/content/asset-pipeline.md): Learn how to use the CLI and AI tracking.
|
|
124
|
+
- [**React Hooks**](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/docs/content/react-integration.md): Build custom interactive components.
|
|
130
125
|
|
|
131
126
|
### 🤖 For AI Agents
|
|
132
127
|
- [**AGENTS.md**](https://github.com/aleskozelsky/scrollcraft/blob/main/AGENTS.md): Technical standard operating procedures for the repository.
|
|
133
|
-
- [**AI Integration Protocol**](https://
|
|
128
|
+
- [**AI Integration Protocol**](https://github.com/aleskozelsky/scrollcraft/blob/main/packages/docs/content/ai-integration.md): How to prompt agents to build scenes for you.
|
|
134
129
|
|
|
135
130
|
---
|
|
136
131
|
|
package/package.json
CHANGED