@spences10/pi-lsp 0.0.25 → 0.0.27
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 +9 -5
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# @spences10/pi-lsp
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@spences10/pi-lsp)
|
|
4
3
|
[](https://viteplus.dev)
|
|
5
4
|
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-lsp)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-lsp)
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
definitions, references,
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
Give agents precise code intelligence instead of guesswork. `pi-lsp`
|
|
9
|
+
exposes language-server diagnostics, hovers, definitions, references,
|
|
10
|
+
and symbols as Pi tools so models can validate edits and navigate
|
|
11
|
+
typed codebases accurately.
|
|
11
12
|
|
|
12
13
|
## Installation
|
|
13
14
|
|
|
@@ -104,6 +105,9 @@ LSP extension.
|
|
|
104
105
|
|
|
105
106
|
## Development
|
|
106
107
|
|
|
108
|
+
Package scripts build transitive workspace dependencies first, then
|
|
109
|
+
run local tools through Vite+ with `vp exec`.
|
|
110
|
+
|
|
107
111
|
```bash
|
|
108
112
|
pnpm --filter @spences10/pi-lsp run check
|
|
109
113
|
pnpm --filter @spences10/pi-lsp run test
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-lsp",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.27",
|
|
4
|
+
"description": "Language Server Protocol tools for Pi agents to inspect diagnostics, hovers, definitions, references, and symbols",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"language-server",
|
|
7
7
|
"lsp",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@spences10/pi-child-env": "0.1.
|
|
37
|
-
"@spences10/pi-
|
|
38
|
-
"@spences10/pi-
|
|
36
|
+
"@spences10/pi-child-env": "0.1.7",
|
|
37
|
+
"@spences10/pi-project-trust": "0.0.9",
|
|
38
|
+
"@spences10/pi-tui-modal": "0.0.18"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
61
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
61
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
62
62
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
63
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
63
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
64
64
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
65
|
-
"test:self": "vitest run",
|
|
66
|
-
"coverage:self": "vitest run --coverage",
|
|
65
|
+
"test:self": "vp exec vitest run",
|
|
66
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
67
67
|
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
68
68
|
}
|
|
69
69
|
}
|