@tuongaz/seeflow 0.1.39 → 0.1.40

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
@@ -19,7 +19,7 @@ The SeeFlow plugin reads your codebase, understands your architecture, and gener
19
19
  ### 1. Start the studio
20
20
 
21
21
  ```bash
22
- npx -y @tuongaz/seeflow start
22
+ npx -y @tuongaz/seeflow@latest start
23
23
  # then open http://localhost:4321
24
24
  ```
25
25
 
@@ -69,7 +69,7 @@ The plugin scans your routes and database connections, generates `flow.json`, wi
69
69
 
70
70
  ## Docker reference
71
71
 
72
- > ⚠️ Docker is the non-preferred path. Play/Status scripts execute inside the container and cannot reach host services or host binaries, so interactive nodes generated against your local app will not work. Prefer `npx -y @tuongaz/seeflow start` for the full experience.
72
+ > ⚠️ Docker is the non-preferred path. Play/Status scripts execute inside the container and cannot reach host services or host binaries, so interactive nodes generated against your local app will not work. Prefer `npx -y @tuongaz/seeflow@latest start` for the full experience.
73
73
 
74
74
  The image is published on [Docker Hub](https://hub.docker.com/r/tuongaz/seeflow). See Quick Start above for the basic `docker run`.
75
75
 
@@ -104,7 +104,7 @@ SeeFlow ships an MCP server so any MCP-aware editor can list, register, and edit
104
104
  **Claude Code:**
105
105
 
106
106
  ```bash
107
- claude mcp add seeflow -- npx -y -p @tuongaz/seeflow seeflow-mcp
107
+ claude mcp add seeflow -- npx -y -p @tuongaz/seeflow@latest seeflow-mcp
108
108
  ```
109
109
 
110
110
  **Via `.mcp.json`** (Cursor, Windsurf, etc.):
@@ -114,7 +114,7 @@ claude mcp add seeflow -- npx -y -p @tuongaz/seeflow seeflow-mcp
114
114
  "mcpServers": {
115
115
  "seeflow": {
116
116
  "command": "npx",
117
- "args": ["-y", "-p", "@tuongaz/seeflow", "seeflow-mcp"]
117
+ "args": ["-y", "-p", "@tuongaz/seeflow@latest", "seeflow-mcp"]
118
118
  }
119
119
  }
120
120
  }