framer-dalton 0.0.6 → 0.0.7

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/dist/cli.js CHANGED
@@ -7,7 +7,7 @@ import { spawn } from 'child_process';
7
7
  import { fileURLToPath } from 'url';
8
8
  import { createTRPCClient, httpLink } from '@trpc/client';
9
9
 
10
- /* @framer/ai CLI v0.0.6 */
10
+ /* @framer/ai CLI v0.0.7 */
11
11
  var __defProp = Object.defineProperty;
12
12
  var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
13
13
  function getConfigDir() {
@@ -14527,7 +14527,7 @@ ${typeDef}`);
14527
14527
  __name(renderDocs, "renderDocs");
14528
14528
  var __filename$1 = fileURLToPath(import.meta.url);
14529
14529
  var __dirname$1 = path3.dirname(__filename$1);
14530
- var VERSION = "0.0.6" ;
14530
+ var VERSION = "0.0.7" ;
14531
14531
  var RELAY_PORT = Number(process.env.FRAMER_CLI_PORT) || 19988;
14532
14532
  var client = createTRPCClient({
14533
14533
  links: [
@@ -13,7 +13,7 @@ import { createRequire } from 'module';
13
13
  import * as vm from 'vm';
14
14
  import { connect } from 'framer-api';
15
15
 
16
- /* @framer/ai relay server v0.0.6 */
16
+ /* @framer/ai relay server v0.0.7 */
17
17
  var __defProp = Object.defineProperty;
18
18
  var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
19
19
  function getLogPath() {
@@ -50,7 +50,7 @@ function log(message) {
50
50
  __name(log, "log");
51
51
  var __filename$1 = fileURLToPath(import.meta.url);
52
52
  path.dirname(__filename$1);
53
- var VERSION = "0.0.6" ;
53
+ var VERSION = "0.0.7" ;
54
54
  var RELAY_PORT = Number(process.env.FRAMER_CLI_PORT) || 19988;
55
55
  createTRPCClient({
56
56
  links: [
@@ -20,12 +20,8 @@ description: "Project-scoped Framer canvas editing skill for project {{PROJECT_I
20
20
  - Use screenshots only when visual verification is necessary and cannot be confirmed from state reads. Do not use them for initial inspection or between every small change.
21
21
  - When setting text content, use raw Unicode characters directly (for example `->`, not `\u2192`).
22
22
  - Regenerate the embedded prompt and context by running `session new` again for the same project.
23
- - Node IDs assigned during commands are temporary and can only be referenced within the same `framer.applyAgentChanges` call. For later calls, re-read the project to get real IDs.
24
- - For rich text updates, default to `SET <RichTextNode-id> text="..."` for normal text replacement. Use `SET <TextRun-id> text="..."` only for intentional targeted run-level edits in multi-run content.
25
- - Child `TextRun` IDs are stable within one `applyAgentChanges` batch, but may change across batches or turns after re-hydration. Re-read before dependent follow-up commands in a new batch.
26
23
  - In rich text, block-level properties (for example line height or alignment) belong on block or parent targets, not `TextRun` targets.
27
24
  - `IconNode` `$control__icon` is immutable after creation. To change it, delete and recreate the node with the desired icon value.
28
- - `var(--token-<id>)` requires stable token IDs. Temporary IDs are only reliable within the same `applyAgentChanges` batch. If a token was created in a previous batch, re-read state to get its current real ID before referencing it, or create the token and dependents in one batch.
29
25
 
30
26
  ## Workflow Loop
31
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framer-dalton",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "framer-dalton": "./dist/cli.js"