tglider 0.1.0-alpha.4 → 0.1.0

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  TGlider is a semantic TypeScript and JavaScript MCP server for code navigation, workspace intelligence, dependency topology, diagnostics, and refactoring.
4
4
 
5
- This package is an alpha release. Alpha builds expire 30 days after their release metadata date; update to the latest `tglider@alpha` package when the server warns that the build is close to expiry.
5
+ TGlider packages include release metadata and expire 30 days after their release date. Update to the latest `tglider` package when the server warns that the build is close to expiry. Preview builds are available on the `alpha` dist-tag.
6
6
 
7
7
  ## Requirements
8
8
 
@@ -12,14 +12,14 @@ This package is an alpha release. Alpha builds expire 30 days after their releas
12
12
 
13
13
  ## MCP Configuration
14
14
 
15
- Use the alpha dist-tag so your client picks up fresh non-expired builds:
15
+ Use the stable package for normal MCP client configuration:
16
16
 
17
17
  ```json
18
18
  {
19
19
  "mcpServers": {
20
20
  "tglider": {
21
21
  "command": "npx",
22
- "args": ["-y", "tglider@alpha"]
22
+ "args": ["-y", "tglider"]
23
23
  }
24
24
  }
25
25
  }
@@ -28,10 +28,16 @@ Use the alpha dist-tag so your client picks up fresh non-expired builds:
28
28
  You can also install the package globally:
29
29
 
30
30
  ```sh
31
- npm install -g tglider@alpha
31
+ npm install -g tglider
32
32
  tglider
33
33
  ```
34
34
 
35
+ To try preview builds, use the alpha dist-tag:
36
+
37
+ ```sh
38
+ npx -y tglider@alpha
39
+ ```
40
+
35
41
  ## Commands
36
42
 
37
43
  ```sh
@@ -58,12 +64,18 @@ TGlider exposes MCP tools for:
58
64
  - call graph inspection, cascade impact summaries, conservative unused-code discovery, and preview-first rename/refactor planning
59
65
  - live document open/update/close workflows for editors and agents
60
66
 
61
- ## Updating Alpha Builds
67
+ ## Updating Builds
62
68
 
63
- Alpha packages are intentionally short-lived. If startup reports that your build has expired, update your installation or keep using the `npx -y tglider@alpha` MCP configuration.
69
+ Packages are intentionally short-lived. If startup reports that your build has expired, update your installation or keep using the `npx -y tglider` MCP configuration.
64
70
 
65
71
  ```sh
66
- npm install -g tglider@alpha
72
+ npm install -g tglider
67
73
  ```
68
74
 
69
75
  `tglider --help` and `tglider --version` continue to work after expiry.
76
+
77
+ Alpha builds remain available for early testing:
78
+
79
+ ```sh
80
+ npm install -g tglider@alpha
81
+ ```