framer-dalton 0.0.1
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 +25 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +6361 -0
- package/dist/start-relay-server.d.ts +2 -0
- package/dist/start-relay-server.js +718 -0
- package/package.json +38 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Framer Agent CLI
|
|
2
|
+
|
|
3
|
+
CLI and Agent skill for interacting with Framer projects via the Framer Server API.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx skills add framer/dalton
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then, simply open your preferred agent, ask to interact with your Framer project and the agent will handle the rest.
|
|
12
|
+
|
|
13
|
+
## CLI Usage
|
|
14
|
+
|
|
15
|
+
See [skills/framer/SKILL.md](skills/framer/SKILL.md) for full CLI usage and API documentation.
|
|
16
|
+
|
|
17
|
+
## Development
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
make install-dev # Build and symlink to PATH + install skill locally
|
|
21
|
+
make build # Build (installs deps automatically)
|
|
22
|
+
make check # Type check + lint
|
|
23
|
+
make format # Auto-format
|
|
24
|
+
make clean # Clean build artifacts
|
|
25
|
+
```
|
package/dist/cli.d.ts
ADDED