pi-umbra 0.1.0 → 0.1.1
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 +27 -27
- package/package.json +68 -68
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
# pi-umbra
|
|
2
|
-
|
|
3
|
-
Every pi
|
|
4
|
-
|
|
5
|
-
```sh
|
|
6
|
-
pi install npm:pi-umbra
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
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
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
Each one also installs on its own; see the [repository](https://github.com/grknbyk/pi-umbra).
|
|
23
|
-
|
|
24
|
-
`pi-umbra-shimmer` and `pi-umbra-skill-matcher` reach past pi's extension API and do
|
|
25
|
-
nothing without a bundle patch, which is not in this repo.
|
|
26
|
-
|
|
27
|
-
MIT.
|
|
1
|
+
# pi-umbra
|
|
2
|
+
|
|
3
|
+
Every small thing pi does not build in, in one install.
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
pi install npm:pi-umbra
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
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
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Each one also installs on its own; see the [repository](https://github.com/grknbyk/pi-umbra).
|
|
23
|
+
|
|
24
|
+
`pi-umbra-shimmer` and `pi-umbra-skill-matcher` reach past pi's extension API and do
|
|
25
|
+
nothing without a bundle patch, which is not in this repo.
|
|
26
|
+
|
|
27
|
+
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.0",
|
|
43
|
-
"pi-umbra-ask": "0.1.0",
|
|
44
|
-
"pi-umbra-copy-chat": "0.1.0",
|
|
45
|
-
"pi-umbra-help": "0.1.0",
|
|
46
|
-
"pi-umbra-inputbar": "0.1.0",
|
|
47
|
-
"pi-umbra-preview": "0.1.0",
|
|
48
|
-
"pi-umbra-rename": "0.1.0",
|
|
49
|
-
"pi-umbra-shimmer": "0.1.0",
|
|
50
|
-
"pi-umbra-skill-matcher": "0.1.0"
|
|
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.1",
|
|
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.0",
|
|
43
|
+
"pi-umbra-ask": "0.1.0",
|
|
44
|
+
"pi-umbra-copy-chat": "0.1.0",
|
|
45
|
+
"pi-umbra-help": "0.1.0",
|
|
46
|
+
"pi-umbra-inputbar": "0.1.0",
|
|
47
|
+
"pi-umbra-preview": "0.1.0",
|
|
48
|
+
"pi-umbra-rename": "0.1.0",
|
|
49
|
+
"pi-umbra-shimmer": "0.1.0",
|
|
50
|
+
"pi-umbra-skill-matcher": "0.1.0"
|
|
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
|
+
}
|