tglider 0.1.0-alpha.3 → 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 +20 -8
- package/dist/index.js +1 -1
- package/dist/release-metadata.json +5 -5
- package/package.json +1 -1
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
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
@@ -55,15 +61,21 @@ TGlider exposes MCP tools for:
|
|
|
55
61
|
- semantic symbol search, symbol lookup at position, definitions, declarations, references, implementations, and type hierarchies
|
|
56
62
|
- project dependency topology, dependency paths, file dependents, and cycles
|
|
57
63
|
- API/export discovery and compact semantic queries
|
|
58
|
-
- call graph inspection, cascade impact summaries, and preview-first rename/refactor planning
|
|
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
|
|
67
|
+
## Updating Builds
|
|
62
68
|
|
|
63
|
-
|
|
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
|
|
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
|
+
```
|