framer-dalton 0.0.18 → 0.0.20
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 +1 -50
- package/dist/cli.js +721 -175
- package/dist/start-relay-server.js +627 -247
- package/docs/skills/framer-canvas-editing-project.md +2 -2
- package/docs/skills/framer.md +7 -6
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -27,53 +27,4 @@ The CLI and the installed skills are meant to work together. There are three ski
|
|
|
27
27
|
|
|
28
28
|
## Local Development
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
1. Run `make install-dev` in this repo.
|
|
33
|
-
|
|
34
|
-
2. Run your agent in this directory and specifically load the `framer-dev` skill:
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
# Claude:
|
|
38
|
-
> /framer-dev
|
|
39
|
-
|
|
40
|
-
# Codex:
|
|
41
|
-
> $framer-dev
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### Running with the local headless plugin server
|
|
45
|
-
|
|
46
|
-
Use this when you change something in the Server API implementation.
|
|
47
|
-
|
|
48
|
-
1. Start FramerStudio with `make dev`.
|
|
49
|
-
2. Start FramerHeadlessAPI against the local tunnel with `make dev-tunnel`.
|
|
50
|
-
3. Run `make install-dev` in this repo.
|
|
51
|
-
4. Run your agent in this directory and specifically load the `framer-dev-local` skill:
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
# Claude:
|
|
55
|
-
> /framer-dev-local
|
|
56
|
-
|
|
57
|
-
# Codex:
|
|
58
|
-
> $framer-dev-local
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Using a local `framer-api` package
|
|
62
|
-
|
|
63
|
-
Use this when you change the server API interface itself, such as adding or changing API methods.
|
|
64
|
-
|
|
65
|
-
1. Publish or otherwise make your updated `framer-api` package available.
|
|
66
|
-
2. Install it locally with `npm install ...`.
|
|
67
|
-
3. Regenerate the type data:
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
make generate-types
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### Removing local builds and returning to production
|
|
74
|
-
|
|
75
|
-
Later, to return to the procution skills:
|
|
76
|
-
|
|
77
|
-
```bash
|
|
78
|
-
make uninstall-dev
|
|
79
|
-
```
|
|
30
|
+
See the CONTRIBUTING.md file in this repository for local development instructions.
|