framer-dalton 0.0.2 → 0.0.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.
- package/README.md +16 -6
- package/dist/cli.js +14035 -6321
- package/dist/start-relay-server.js +158 -165
- package/docs/all-skills.md +6 -0
- package/docs/code-components.md +115 -0
- package/docs/component-examples.md +869 -0
- package/docs/property-controls.md +1535 -0
- package/docs/server-api.md +755 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -14,12 +14,22 @@ Then, simply open your preferred agent, ask to interact with your Framer project
|
|
|
14
14
|
|
|
15
15
|
See [skills/framer/SKILL.md](skills/framer/SKILL.md) for full CLI usage and API documentation.
|
|
16
16
|
|
|
17
|
-
## Development
|
|
17
|
+
## Local Development
|
|
18
|
+
|
|
19
|
+
Build and symlink to PATH + install skill locally:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
make install-dev
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
If you want to hit a local FramerHeadlessAPI instance, when interacting with your agent, tell it something like this:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Use the framer skill, but use `FRAMER_HEADLESS_SERVER_URL=ws://localhost:8080/channel/headless-plugin framer` (never with @latest) for all commands instead of `npx framer-dalton`
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Remove local install:
|
|
18
32
|
|
|
19
33
|
```bash
|
|
20
|
-
make
|
|
21
|
-
make build # Build (installs deps automatically)
|
|
22
|
-
make check # Type check + lint
|
|
23
|
-
make format # Auto-format
|
|
24
|
-
make clean # Clean build artifacts
|
|
34
|
+
make uninstall-dev
|
|
25
35
|
```
|