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