framer-dalton 0.0.23 → 0.0.25

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 CHANGED
@@ -16,14 +16,14 @@ That installs skills into `~/.agents/skills` and `~/.claude/skills`.
16
16
 
17
17
  The CLI and the installed skills are meant to work together. There are three skills:
18
18
 
19
- - `framer` - the base skill that explains how to use the CLI and the API in general.
19
+ - `framer` - the base meta skill that explains setup, project selection, and session creation.
20
20
  - `framer-code-components` - explains specific prompts for how to write code components and provides examples.
21
- - `framer-canvas-editing-project-<project id>` - a dynamically-created skill that explains how to canvas edit and includes project context.
21
+ - `framer-project-<project id>` - a dynamically-created skill for interacting with a specific project.
22
22
 
23
- 1. Running `npx framer-dalton@latest setup` will install the base `framer` and `framer-code-component` skills.
24
- 2. The frontmatter of `framer-code-components` tells agents to always load `framer` first.
23
+ 1. Running `npx framer-dalton@latest setup` will install the base `framer` and `framer-code-components` skills.
24
+ 2. The frontmatter of `framer-code-components` tells agents to always load `framer` and the generated project skill first.
25
25
  3. The frontmatter of `framer` tells agents to run `npx framer-dalton@latest setup` BEFORE loading the skill. This command will auto-update the cli and update the skill files.
26
- 4. Creating a new session for a project will create a `framer-canvas-editing-project-<project id>` file. This file contains the latest agent system prompt from `framer.getAgentSystemPrompt` and the latest project context from `framer.getAgentContext`. Agents are told not to load this skill until after creating a session.
26
+ 4. Creating a new session for a project will create a `framer-project-<project id>` file. This file contains the latest agent system prompt from `framer.getAgentSystemPrompt` and the latest project context from `framer.getAgentContext`. Agents must load this project-specific skill immediately after creating a session before doing any connected-project work.
27
27
 
28
28
  ## Local Development
29
29