foundry-design-react-native-adapter 0.2.0-beta.3 → 0.2.0-beta.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.
Files changed (2) hide show
  1. package/README.md +32 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,27 +4,51 @@ Foundry is a local-first precision design workbench for Codex, Cursor, and Claud
4
4
 
5
5
  ## Beta installation
6
6
 
7
- Foundry is distributed through npm, so testers do not need access to the private GitHub repository. From the project you want to inspect, run:
7
+ Foundry is distributed through npm, so testers do not need GitHub access.
8
+
9
+ ### Recommended: let your coding agent install it
10
+
11
+ Open the project in Codex, Cursor, or Claude Code and paste:
12
+
13
+ ```text
14
+ Install Foundry for this project by running npx foundry-design@beta setup --yes. Check the result and tell me when I need to restart.
15
+ ```
16
+
17
+ Setup detects the project and active coding agent, installs development-only instrumentation, configures the local agent connection, validates the integration, and records everything it owns for safe updates or removal.
18
+
19
+ Restart the coding agent once, reopen the same project folder, and paste:
20
+
21
+ ```text
22
+ Start Foundry for this project and keep listening for Apply with agent requests.
23
+ ```
24
+
25
+ That is the normal workflow. Foundry starts the project when needed, opens an authenticated local preview, and shows **Agent is ready** before it allows an apply request.
26
+
27
+ ### Manual installation
28
+
29
+ From the project you want to inspect, run:
8
30
 
9
31
  ```bash
10
32
  npx foundry-design@beta setup
11
33
  ```
12
34
 
13
- Setup detects the platform, framework, package manager, development command, and installed coding agents. It previews every file it will manage, adds development-only instrumentation for supported web frameworks, installs the Foundry skill for Codex, Cursor, or Claude Code, configures the selected MCP clients, and records a reversible install manifest.
14
-
15
- Restart the coding agent after setup, then ask:
35
+ Then restart the coding agent, reopen the same project folder, and ask:
16
36
 
17
37
  ```text
18
- Start Foundry for this project.
38
+ Start Foundry for this project and keep listening for Apply with agent requests.
19
39
  ```
20
40
 
21
- Then start a session with:
41
+ You do not need to run a second terminal command when the agent starts Foundry for you. For a manual-only preview, run `npx foundry-design@beta start`, but Apply with agent still requires a restarted and actively listening coding agent.
42
+
43
+ Update an existing installation with:
22
44
 
23
45
  ```bash
24
- npx foundry-design@beta start
46
+ npx foundry-design@beta update
25
47
  ```
26
48
 
27
- Foundry reuses an available project server or starts the detected development command, launches the loopback runtime, and opens an authenticated visual preview. Remove only Foundry-managed integration with:
49
+ The updater refreshes checksum-matched Foundry files, agent connections, and skill bundles. It preserves and reports files changed since setup, validates the project, and rolls back the update if Foundry introduces a TypeScript or lint failure. Restart the coding agent after updating.
50
+
51
+ Remove only Foundry-managed integration with:
28
52
 
29
53
  ```bash
30
54
  npx foundry-design@beta uninstall
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foundry-design-react-native-adapter",
3
- "version": "0.2.0-beta.3",
3
+ "version": "0.2.0-beta.5",
4
4
  "description": "React Native adapter for Foundry Design Control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",