pi-umbra 0.1.0 → 0.1.2
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 +17 -13
- package/package.json +68 -68
package/README.md
CHANGED
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
# pi-umbra
|
|
2
2
|
|
|
3
|
-
Every pi
|
|
3
|
+
Every small thing pi does not build in, in one install.
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
pi install npm:pi-umbra
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
One tarball. The nine packages below ship bundled inside it, so the install does not
|
|
10
|
+
depend on npm hoisting nine separate trees into the layout pi expects.
|
|
11
|
+
|
|
9
12
|
```
|
|
10
13
|
pi-umbra
|
|
11
|
-
├── pi-umbra-theme
|
|
12
|
-
├── pi-umbra-ask
|
|
13
|
-
├── pi-umbra-copy-chat
|
|
14
|
-
├── pi-umbra-help
|
|
15
|
-
├── pi-umbra-inputbar
|
|
16
|
-
├── pi-umbra-preview
|
|
17
|
-
├── pi-umbra-rename
|
|
18
|
-
├── pi-umbra-shimmer
|
|
19
|
-
└── pi-umbra-skill-matcher
|
|
14
|
+
├── pi-umbra-theme seven themes and the chrome around them
|
|
15
|
+
├── pi-umbra-ask the model asks you a question mid-turn
|
|
16
|
+
├── pi-umbra-copy-chat /umb-copy-chat
|
|
17
|
+
├── pi-umbra-help /umb-help, /umb-doctor
|
|
18
|
+
├── pi-umbra-inputbar the input box
|
|
19
|
+
├── pi-umbra-preview /umb-preview
|
|
20
|
+
├── pi-umbra-rename /umb-rename
|
|
21
|
+
├── pi-umbra-shimmer a shimmer through the working indicator
|
|
22
|
+
└── pi-umbra-skill-matcher skill completion mid-prompt
|
|
20
23
|
```
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
Install any of them on its own if you want less. Each package has its own README saying
|
|
26
|
+
what it solves.
|
|
23
27
|
|
|
24
|
-
`pi-umbra-shimmer` and `pi-umbra-skill-matcher`
|
|
25
|
-
|
|
28
|
+
`pi-umbra-shimmer` and `pi-umbra-skill-matcher` also need a bundle patch, which is not
|
|
29
|
+
published here. Without it they install and do nothing.
|
|
26
30
|
|
|
27
31
|
MIT.
|
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "pi-umbra",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Every pi
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pi-package",
|
|
7
|
-
"pi-theme",
|
|
8
|
-
"pi-extension",
|
|
9
|
-
"meta",
|
|
10
|
-
"tui"
|
|
11
|
-
],
|
|
12
|
-
"author": "grkn",
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/grknbyk/pi-umbra.git",
|
|
17
|
-
"directory": "pi-umbra"
|
|
18
|
-
},
|
|
19
|
-
"homepage": "https://github.com/grknbyk/pi-umbra#readme",
|
|
20
|
-
"bugs": "https://github.com/grknbyk/pi-umbra/issues",
|
|
21
|
-
"type": "module",
|
|
22
|
-
"files": [
|
|
23
|
-
"README.md"
|
|
24
|
-
],
|
|
25
|
-
"pi": {
|
|
26
|
-
"extensions": [
|
|
27
|
-
"./node_modules/pi-umbra-theme/extensions",
|
|
28
|
-
"./node_modules/pi-umbra-ask/extensions",
|
|
29
|
-
"./node_modules/pi-umbra-copy-chat/extensions",
|
|
30
|
-
"./node_modules/pi-umbra-help/extensions",
|
|
31
|
-
"./node_modules/pi-umbra-inputbar/extensions",
|
|
32
|
-
"./node_modules/pi-umbra-preview/extensions",
|
|
33
|
-
"./node_modules/pi-umbra-rename/extensions",
|
|
34
|
-
"./node_modules/pi-umbra-shimmer/extensions",
|
|
35
|
-
"./node_modules/pi-umbra-skill-matcher/extensions"
|
|
36
|
-
],
|
|
37
|
-
"themes": [
|
|
38
|
-
"./node_modules/pi-umbra-theme/themes"
|
|
39
|
-
]
|
|
40
|
-
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"pi-umbra-theme": "0.1.
|
|
43
|
-
"pi-umbra-ask": "0.1.
|
|
44
|
-
"pi-umbra-copy-chat": "0.1.
|
|
45
|
-
"pi-umbra-help": "0.1.
|
|
46
|
-
"pi-umbra-inputbar": "0.1.
|
|
47
|
-
"pi-umbra-preview": "0.1.
|
|
48
|
-
"pi-umbra-rename": "0.1.
|
|
49
|
-
"pi-umbra-shimmer": "0.1.
|
|
50
|
-
"pi-umbra-skill-matcher": "0.1.
|
|
51
|
-
},
|
|
52
|
-
"bundledDependencies": [
|
|
53
|
-
"pi-umbra-theme",
|
|
54
|
-
"pi-umbra-ask",
|
|
55
|
-
"pi-umbra-copy-chat",
|
|
56
|
-
"pi-umbra-help",
|
|
57
|
-
"pi-umbra-inputbar",
|
|
58
|
-
"pi-umbra-preview",
|
|
59
|
-
"pi-umbra-rename",
|
|
60
|
-
"pi-umbra-shimmer",
|
|
61
|
-
"pi-umbra-skill-matcher"
|
|
62
|
-
],
|
|
63
|
-
"peerDependencies": {
|
|
64
|
-
"@earendil-works/pi-ai": "*",
|
|
65
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
66
|
-
"@earendil-works/pi-tui": "*"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-umbra",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Every small thing pi does not build in, in one install: seven themes and the chrome around them, the input bar, session rename, a shimmer through the working indicator, mid-prompt skill completion, ask, copy-chat, preview and help.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"pi-theme",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"meta",
|
|
10
|
+
"tui"
|
|
11
|
+
],
|
|
12
|
+
"author": "grkn",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/grknbyk/pi-umbra.git",
|
|
17
|
+
"directory": "pi-umbra"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/grknbyk/pi-umbra#readme",
|
|
20
|
+
"bugs": "https://github.com/grknbyk/pi-umbra/issues",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"files": [
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"pi": {
|
|
26
|
+
"extensions": [
|
|
27
|
+
"./node_modules/pi-umbra-theme/extensions",
|
|
28
|
+
"./node_modules/pi-umbra-ask/extensions",
|
|
29
|
+
"./node_modules/pi-umbra-copy-chat/extensions",
|
|
30
|
+
"./node_modules/pi-umbra-help/extensions",
|
|
31
|
+
"./node_modules/pi-umbra-inputbar/extensions",
|
|
32
|
+
"./node_modules/pi-umbra-preview/extensions",
|
|
33
|
+
"./node_modules/pi-umbra-rename/extensions",
|
|
34
|
+
"./node_modules/pi-umbra-shimmer/extensions",
|
|
35
|
+
"./node_modules/pi-umbra-skill-matcher/extensions"
|
|
36
|
+
],
|
|
37
|
+
"themes": [
|
|
38
|
+
"./node_modules/pi-umbra-theme/themes"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"pi-umbra-theme": "0.1.1",
|
|
43
|
+
"pi-umbra-ask": "0.1.1",
|
|
44
|
+
"pi-umbra-copy-chat": "0.1.1",
|
|
45
|
+
"pi-umbra-help": "0.1.1",
|
|
46
|
+
"pi-umbra-inputbar": "0.1.1",
|
|
47
|
+
"pi-umbra-preview": "0.1.1",
|
|
48
|
+
"pi-umbra-rename": "0.1.1",
|
|
49
|
+
"pi-umbra-shimmer": "0.1.1",
|
|
50
|
+
"pi-umbra-skill-matcher": "0.1.1"
|
|
51
|
+
},
|
|
52
|
+
"bundledDependencies": [
|
|
53
|
+
"pi-umbra-theme",
|
|
54
|
+
"pi-umbra-ask",
|
|
55
|
+
"pi-umbra-copy-chat",
|
|
56
|
+
"pi-umbra-help",
|
|
57
|
+
"pi-umbra-inputbar",
|
|
58
|
+
"pi-umbra-preview",
|
|
59
|
+
"pi-umbra-rename",
|
|
60
|
+
"pi-umbra-shimmer",
|
|
61
|
+
"pi-umbra-skill-matcher"
|
|
62
|
+
],
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"@earendil-works/pi-ai": "*",
|
|
65
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
66
|
+
"@earendil-works/pi-tui": "*"
|
|
67
|
+
}
|
|
68
|
+
}
|