tglider 0.1.0-alpha.4 → 0.2.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 +11 -18
- package/dist/index.js +1 -1
- package/dist/release-metadata.json +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
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.
|
|
6
|
-
|
|
7
5
|
## Requirements
|
|
8
6
|
|
|
9
7
|
- Node.js 24 or newer.
|
|
@@ -12,27 +10,28 @@ This package is an alpha release. Alpha builds expire 30 days after their releas
|
|
|
12
10
|
|
|
13
11
|
## MCP Configuration
|
|
14
12
|
|
|
15
|
-
Use the
|
|
13
|
+
Use the stable package for normal MCP client configuration:
|
|
16
14
|
|
|
17
15
|
```json
|
|
18
16
|
{
|
|
19
17
|
"mcpServers": {
|
|
20
18
|
"tglider": {
|
|
21
19
|
"command": "npx",
|
|
22
|
-
"args": ["-y", "tglider
|
|
20
|
+
"args": ["-y", "tglider"]
|
|
23
21
|
}
|
|
24
22
|
}
|
|
25
23
|
}
|
|
26
24
|
```
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
## LLM Agent System Prompt
|
|
29
27
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
After connecting the server, add this instruction to the MCP client system prompt so the agent uses compiler-backed workspace facts before raw text search:
|
|
29
|
+
|
|
30
|
+
```text
|
|
31
|
+
When working in TypeScript or JavaScript workspaces, prefer tglider mcp semantic tools before grep, rg, or find for code navigation and refactoring. Use TGlider for symbols, declarations, references, implementations, exports, package importers, project and dependency topology, diagnostics, callers, outgoing calls, impact analysis, and preview-first rename or refactor planning. Use shell text search only for non-code assets, files outside the loaded workspace, generated output, or after TGlider cannot load or cannot answer the question.
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
##
|
|
34
|
+
## CLI Arguments
|
|
36
35
|
|
|
37
36
|
```sh
|
|
38
37
|
tglider --help
|
|
@@ -55,15 +54,9 @@ TGlider exposes MCP tools for:
|
|
|
55
54
|
- semantic symbol search, symbol lookup at position, definitions, declarations, references, implementations, and type hierarchies
|
|
56
55
|
- project dependency topology, dependency paths, file dependents, and cycles
|
|
57
56
|
- API/export discovery and compact semantic queries
|
|
58
|
-
- call graph inspection, cascade impact summaries, conservative unused-code discovery,
|
|
57
|
+
- call graph inspection, cascade impact summaries, conservative unused-code discovery, preview-first rename/refactor planning, and language-service formatting
|
|
59
58
|
- live document open/update/close workflows for editors and agents
|
|
60
59
|
|
|
61
|
-
##
|
|
62
|
-
|
|
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.
|
|
64
|
-
|
|
65
|
-
```sh
|
|
66
|
-
npm install -g tglider@alpha
|
|
67
|
-
```
|
|
60
|
+
## Version Expiration Notice
|
|
68
61
|
|
|
69
|
-
`tglider --help` and `tglider --version` continue to work after expiry.
|
|
62
|
+
TGlider packages include release metadata and expire 30 days after their release date. The recommended `npx -y tglider` MCP configuration resolves the current package when the client launches the server. `tglider --help` and `tglider --version` continue to work after expiry.
|