pi-goosedump 0.2.1 → 0.3.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 +3 -0
- package/index.ts +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,6 +12,9 @@ pi install npm:pi-goosedump
|
|
|
12
12
|
This installs `pi-goosedump` and its `@jarkkojs/goosedump` dependency, which
|
|
13
13
|
includes platform-specific native binaries for Linux, macOS, and Windows.
|
|
14
14
|
|
|
15
|
+
The upstream `@jarkkojs/goosedump` packages are licensed separately as
|
|
16
|
+
`Apache-2.0 AND LGPL-2.1-or-later`.
|
|
17
|
+
|
|
15
18
|
## Usage
|
|
16
19
|
|
|
17
20
|
Once installed, pi-goosedump registers a tool and a slash command:
|
package/index.ts
CHANGED
|
@@ -23,7 +23,7 @@ import { Type } from '@sinclair/typebox';
|
|
|
23
23
|
|
|
24
24
|
const require = createRequire(import.meta.url);
|
|
25
25
|
|
|
26
|
-
const GOOSEDUMP_VERSION = [0,
|
|
26
|
+
const GOOSEDUMP_VERSION = [0, 3, 1] as const;
|
|
27
27
|
|
|
28
28
|
interface GoosedumpListing {
|
|
29
29
|
id: string;
|
|
@@ -116,7 +116,7 @@ function parseMessages(output: string): GoosedumpMessage[] {
|
|
|
116
116
|
for (const line of lines) {
|
|
117
117
|
if (line.startsWith('results for ')) continue;
|
|
118
118
|
|
|
119
|
-
const entryMatch = line.match(/^entryId:\s+(\S+)\s+\((
|
|
119
|
+
const entryMatch = line.match(/^entryId:\s+(\S+)\s+\((.+?)\)(?:\s+\[[^\]]+\])?$/);
|
|
120
120
|
if (entryMatch) {
|
|
121
121
|
if (currentMsg) {
|
|
122
122
|
currentMsg.content = contentLines.join('\n').trim();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goosedump",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Coding agent context data browser plugin for pi",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goosedump",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@earendil-works/pi-tui": "^0.78.0",
|
|
32
|
-
"@jarkkojs/goosedump": "^0.
|
|
32
|
+
"@jarkkojs/goosedump": "^0.3.1",
|
|
33
33
|
"@sinclair/typebox": "^0.34.49"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|