foundry-design-react-native-adapter 0.2.0-beta.5 → 0.2.0-beta.6

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 +23 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,30 +6,40 @@ Foundry is a local-first precision design workbench for Codex, Cursor, and Claud
6
6
 
7
7
  Foundry is distributed through npm, so testers do not need GitHub access.
8
8
 
9
- ### Recommended: let your coding agent install it
9
+ > **Current public beta:** `0.2.0-beta.6`. Install Foundry with the `@beta` tag. The unqualified npm `latest` tag still points to an earlier beta and is not the current testing channel.
10
10
 
11
- Open the project in Codex, Cursor, or Claude Code and paste:
11
+ Full documentation is available at [withfoundry.ai](https://withfoundry.ai).
12
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.
13
+ ### Recommended: one command
14
+
15
+ Open a terminal in the project, or ask Codex, Cursor, or Claude Code to run:
16
+
17
+ ```bash
18
+ npx foundry-design@beta
15
19
  ```
16
20
 
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.
21
+ That command detects the project and active coding agent, installs or safely updates Foundry, repairs the shared agent connection, validates its integration, starts the project when needed, and opens the visual session. On the first installation only, restart the coding agent once so it can load the shared MCP connection. A reviewed batch can be queued before the restart and will be claimed when the agent reconnects.
18
22
 
19
- Restart the coding agent once, reopen the same project folder, and paste:
23
+ After the restart, reopen the same project folder and ask:
20
24
 
21
25
  ```text
22
26
  Start Foundry for this project and keep listening for Apply with agent requests.
23
27
  ```
24
28
 
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.
29
+ That is the normal workflow. Foundry resumes the most recent session for the current source revision and keeps all review and apply state local.
26
30
 
27
31
  ### Manual installation
28
32
 
29
- From the project you want to inspect, run:
33
+ From the first project you want to inspect, run:
34
+
35
+ ```bash
36
+ npx foundry-design@beta setup --global
37
+ ```
38
+
39
+ For later projects, keep the shared agent connection and install only the development adapter:
30
40
 
31
41
  ```bash
32
- npx foundry-design@beta setup
42
+ npx foundry-design@beta setup --agent none
33
43
  ```
34
44
 
35
45
  Then restart the coding agent, reopen the same project folder, and ask:
@@ -38,7 +48,7 @@ Then restart the coding agent, reopen the same project folder, and ask:
38
48
  Start Foundry for this project and keep listening for Apply with agent requests.
39
49
  ```
40
50
 
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.
51
+ You do not need to run a second terminal command when the agent starts Foundry for you. Apply requests remain queued safely when the agent is offline. Run `npx foundry-design@beta doctor --repair` if the connection or generated integration needs repair.
42
52
 
43
53
  Update an existing installation with:
44
54
 
@@ -56,13 +66,13 @@ npx foundry-design@beta uninstall
56
66
 
57
67
  Supported automatic web integration currently includes Next.js App Router, Vite, and plain HTML. Generic web, SwiftUI, and React Native projects receive explicit setup guidance when a safe automatic edit is not available.
58
68
 
59
- The repository also contains a portable plugin bundle for future marketplace distribution. The npm setup above is the public beta installation path.
69
+ The npm setup above is the public beta installation path and includes the same portable skill and MCP connection used by the agent plugin bundle.
60
70
 
61
- The beta supports Node.js 20 or newer. Read [Privacy](PRIVACY.md), [Security](SECURITY.md), and the [beta changelog](CHANGELOG.md) before using it with sensitive work.
71
+ The beta supports Node.js 20 or newer. Read the [local-first safety model](https://withfoundry.ai/#safety) before using it with sensitive work.
62
72
 
63
73
  ## Agent plugin
64
74
 
65
- The portable plugin lives at `plugins/foundry-design-control`. The repository also includes marketplace manifests for Codex, Cursor, and Claude-compatible plugin import. Once installed, ask your agent:
75
+ The portable plugin lives at `plugins/foundry-design-control`. The repository also includes marketplace manifests for Codex, Cursor, and Claude-compatible plugin import. Until public marketplace review is complete, `setup --global` installs the same reusable skill and MCP connection from npm without requiring source-repository access. Once installed, ask your agent:
66
76
 
67
77
  ```text
68
78
  Start Foundry for this project.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foundry-design-react-native-adapter",
3
- "version": "0.2.0-beta.5",
3
+ "version": "0.2.0-beta.6",
4
4
  "description": "React Native adapter for Foundry Design Control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",