@diegopetrucci/pi-extensions 0.1.60 → 0.1.61
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/.pi-fleet-tested-version +1 -1
- package/extensions/agent-workflow-audit/.pi-fleet-tested-version +1 -1
- package/extensions/agent-workflow-audit/index.ts +9 -6
- package/extensions/agent-workflow-audit/package.json +1 -1
- package/extensions/annotate-git-diff/.pi-fleet-tested-version +1 -1
- package/extensions/annotate-git-diff/package.json +1 -1
- package/extensions/annotate-last-message/.pi-fleet-tested-version +1 -1
- package/extensions/annotate-last-message/package.json +1 -1
- package/extensions/brrr/.pi-fleet-tested-version +1 -1
- package/extensions/brrr/package.json +1 -1
- package/extensions/claude-fast/.pi-fleet-tested-version +1 -1
- package/extensions/claude-fast/package.json +1 -1
- package/extensions/code-reviewer/.pi-fleet-tested-version +1 -1
- package/extensions/code-reviewer/index.ts +4 -0
- package/extensions/code-reviewer/package.json +1 -1
- package/extensions/confirm-destructive/.pi-fleet-tested-version +1 -1
- package/extensions/confirm-destructive/package.json +1 -1
- package/extensions/context-cap/.pi-fleet-tested-version +1 -1
- package/extensions/context-cap/package.json +1 -1
- package/extensions/context-inspector/.pi-fleet-tested-version +1 -1
- package/extensions/context-inspector/package.json +1 -1
- package/extensions/contrarian/.pi-fleet-tested-version +1 -1
- package/extensions/contrarian/index.ts +7 -10
- package/extensions/contrarian/package.json +1 -1
- package/extensions/dirty-repo-guard/.pi-fleet-tested-version +1 -1
- package/extensions/dirty-repo-guard/package.json +1 -1
- package/extensions/dynamic-context-pruning/.pi-fleet-tested-version +1 -1
- package/extensions/dynamic-context-pruning/package.json +1 -1
- package/extensions/git-footer/.pi-fleet-tested-version +1 -1
- package/extensions/git-footer/package.json +1 -1
- package/extensions/gnosis/.pi-fleet-tested-version +1 -1
- package/extensions/gnosis/package.json +1 -1
- package/extensions/illustrations-to-explain-things/.pi-fleet-tested-version +1 -1
- package/extensions/illustrations-to-explain-things/package.json +1 -1
- package/extensions/inline-bash/.pi-fleet-tested-version +1 -1
- package/extensions/inline-bash/package.json +1 -1
- package/extensions/librarian/.pi-fleet-tested-version +1 -1
- package/extensions/librarian/package.json +1 -1
- package/extensions/minimal-footer/.pi-fleet-tested-version +1 -1
- package/extensions/minimal-footer/package.json +1 -1
- package/extensions/notify/.pi-fleet-tested-version +1 -1
- package/extensions/notify/package.json +1 -1
- package/extensions/openai-fast/.pi-fleet-tested-version +1 -1
- package/extensions/openai-fast/package.json +1 -1
- package/extensions/oracle/.pi-fleet-tested-version +1 -1
- package/extensions/oracle/index.ts +6 -10
- package/extensions/oracle/package.json +1 -1
- package/extensions/permission-gate/.pi-fleet-tested-version +1 -1
- package/extensions/permission-gate/package.json +1 -1
- package/extensions/quiet-tools/.pi-fleet-tested-version +1 -1
- package/extensions/quiet-tools/package.json +1 -1
- package/extensions/review/.pi-fleet-tested-version +1 -1
- package/extensions/review/package.json +1 -1
- package/extensions/todo/.pi-fleet-tested-version +1 -1
- package/extensions/todo/package.json +1 -1
- package/extensions/triage-comments/.pi-fleet-tested-version +1 -1
- package/extensions/triage-comments/package.json +1 -1
- package/package.json +4 -4
package/.pi-fleet-tested-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1123,7 +1123,10 @@ export const __test__ = {
|
|
|
1123
1123
|
};
|
|
1124
1124
|
|
|
1125
1125
|
export default function agentWorkflowAuditExtension(pi: ExtensionAPI) {
|
|
1126
|
-
pi.registerMessageRenderer(CUSTOM_TYPE, (message,
|
|
1126
|
+
pi.registerMessageRenderer(CUSTOM_TYPE, (message, options, theme) => {
|
|
1127
|
+
const { expanded } = options;
|
|
1128
|
+
const rendererOptions = options as { outputPad?: number };
|
|
1129
|
+
const outputPad = rendererOptions.outputPad ?? 0;
|
|
1127
1130
|
const details = message.details as AuditDetails | undefined;
|
|
1128
1131
|
const report = messageContentToText(message.content) || "(no report)";
|
|
1129
1132
|
const status = details?.status ?? "done";
|
|
@@ -1143,15 +1146,15 @@ export default function agentWorkflowAuditExtension(pi: ExtensionAPI) {
|
|
|
1143
1146
|
const header = `${icon} ${theme.fg("toolTitle", theme.bold("agent-workflow-audit "))}${theme.fg("dim", meta)}`;
|
|
1144
1147
|
|
|
1145
1148
|
if (!expanded) {
|
|
1146
|
-
return new Text(`${header}\n\n${theme.fg("toolOutput", renderCollapsedReport(report))}`,
|
|
1149
|
+
return new Text(`${header}\n\n${theme.fg("toolOutput", renderCollapsedReport(report))}`, outputPad, 0);
|
|
1147
1150
|
}
|
|
1148
1151
|
|
|
1149
1152
|
const container = new Container();
|
|
1150
|
-
container.addChild(new Text(header,
|
|
1151
|
-
if (details?.cwd) container.addChild(new Text(theme.fg("dim", `cwd: ${details.cwd}`),
|
|
1152
|
-
if (details?.focus) container.addChild(new Text(theme.fg("dim", `focus: ${details.focus}`),
|
|
1153
|
+
container.addChild(new Text(header, outputPad, 0));
|
|
1154
|
+
if (details?.cwd) container.addChild(new Text(theme.fg("dim", `cwd: ${details.cwd}`), outputPad, 0));
|
|
1155
|
+
if (details?.focus) container.addChild(new Text(theme.fg("dim", `focus: ${details.focus}`), outputPad, 0));
|
|
1153
1156
|
container.addChild(new Spacer(1));
|
|
1154
|
-
container.addChild(new Markdown(report,
|
|
1157
|
+
container.addChild(new Markdown(report, outputPad, 0, getMarkdownTheme()));
|
|
1155
1158
|
return container;
|
|
1156
1159
|
});
|
|
1157
1160
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-annotate-git-diff",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "A standalone pi extension that adds /annotate-git-diff, a native Glimpse UI for annotating git diffs and sending feedback to the editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-annotate-last-message",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A standalone pi extension that adds /annotate-last-message, a native Glimpse UI for annotating the latest assistant reply.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -27,6 +27,7 @@ const CODE_REVIEWER_MODEL_PREFERENCES = [
|
|
|
27
27
|
"gpt-5.6-terra",
|
|
28
28
|
"gpt-5.6-luna",
|
|
29
29
|
"gpt-5.5",
|
|
30
|
+
"claude-opus-5",
|
|
30
31
|
"claude-opus-4-8",
|
|
31
32
|
"claude-opus-4.8",
|
|
32
33
|
"claude-sonnet-5",
|
|
@@ -40,6 +41,7 @@ const CODE_REVIEWER_MODEL_PREFERENCES = [
|
|
|
40
41
|
];
|
|
41
42
|
const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
42
43
|
"amazon-bedrock": [
|
|
44
|
+
"claude-opus-5",
|
|
43
45
|
"claude-fable-5",
|
|
44
46
|
"claude-opus-4-8",
|
|
45
47
|
"claude-sonnet-5",
|
|
@@ -47,6 +49,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
47
49
|
"claude-sonnet-4-5",
|
|
48
50
|
],
|
|
49
51
|
anthropic: [
|
|
52
|
+
"claude-opus-5",
|
|
50
53
|
"claude-fable-5",
|
|
51
54
|
"claude-opus-4-8",
|
|
52
55
|
"claude-sonnet-5",
|
|
@@ -64,6 +67,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
64
67
|
"gpt-5.3-codex-spark",
|
|
65
68
|
],
|
|
66
69
|
"vercel-ai-gateway": [
|
|
70
|
+
"anthropic/claude-opus-5",
|
|
67
71
|
"anthropic/claude-fable-5",
|
|
68
72
|
"anthropic/claude-opus-4.8",
|
|
69
73
|
"anthropic/claude-opus-4.7",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -84,6 +84,7 @@ const CONTRARIAN_MODEL_PREFERENCES = [
|
|
|
84
84
|
"gpt-5.6-terra",
|
|
85
85
|
"gpt-5.6-luna",
|
|
86
86
|
"gpt-5.5",
|
|
87
|
+
"claude-opus-5",
|
|
87
88
|
"claude-opus-4-8",
|
|
88
89
|
"claude-opus-4.8",
|
|
89
90
|
"claude-sonnet-5",
|
|
@@ -98,6 +99,7 @@ const CONTRARIAN_MODEL_PREFERENCES = [
|
|
|
98
99
|
|
|
99
100
|
const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
100
101
|
"amazon-bedrock": [
|
|
102
|
+
"claude-opus-5",
|
|
101
103
|
"claude-fable-5",
|
|
102
104
|
"claude-opus-4-8",
|
|
103
105
|
"claude-opus-4-7",
|
|
@@ -117,6 +119,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
117
119
|
"zai.glm-5",
|
|
118
120
|
],
|
|
119
121
|
anthropic: [
|
|
122
|
+
"claude-opus-5",
|
|
120
123
|
"claude-fable-5",
|
|
121
124
|
"claude-opus-4-8",
|
|
122
125
|
"claude-opus-4-7",
|
|
@@ -141,13 +144,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
141
144
|
"gpt-5-chat-latest",
|
|
142
145
|
"gpt-5.2-pro",
|
|
143
146
|
"gpt-5.2",
|
|
144
|
-
"gpt-5.2-codex",
|
|
145
|
-
"gpt-5.1-codex-max",
|
|
146
|
-
"gpt-5.1-codex",
|
|
147
147
|
"gpt-5.1",
|
|
148
|
-
"gpt-5.1-chat-latest",
|
|
149
148
|
"o3-pro",
|
|
150
|
-
"o3-deep-research",
|
|
151
149
|
"o1-pro",
|
|
152
150
|
"gpt-5.4-mini",
|
|
153
151
|
"gpt-5-mini",
|
|
@@ -193,6 +191,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
193
191
|
"accounts/fireworks/models/gpt-oss-20b",
|
|
194
192
|
],
|
|
195
193
|
"github-copilot": [
|
|
194
|
+
"claude-opus-5",
|
|
196
195
|
"claude-fable-5",
|
|
197
196
|
"claude-opus-4.8",
|
|
198
197
|
"claude-opus-4.7",
|
|
@@ -282,13 +281,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
282
281
|
"gpt-5-chat-latest",
|
|
283
282
|
"gpt-5.2-pro",
|
|
284
283
|
"gpt-5.2",
|
|
285
|
-
"gpt-5.2-codex",
|
|
286
|
-
"gpt-5.1-codex-max",
|
|
287
|
-
"gpt-5.1-codex",
|
|
288
284
|
"gpt-5.1",
|
|
289
|
-
"gpt-5.1-chat-latest",
|
|
290
285
|
"o3-pro",
|
|
291
|
-
"o3-deep-research",
|
|
292
286
|
"o1-pro",
|
|
293
287
|
"gpt-5.4-mini",
|
|
294
288
|
"gpt-5-mini",
|
|
@@ -303,6 +297,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
303
297
|
"gpt-5.3-codex-spark",
|
|
304
298
|
],
|
|
305
299
|
opencode: [
|
|
300
|
+
"claude-opus-5",
|
|
306
301
|
"claude-fable-5",
|
|
307
302
|
"gpt-5.5-pro",
|
|
308
303
|
"gpt-5.5",
|
|
@@ -344,6 +339,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
344
339
|
"kimi-k2.6",
|
|
345
340
|
],
|
|
346
341
|
openrouter: [
|
|
342
|
+
"anthropic/claude-opus-5",
|
|
347
343
|
"anthropic/claude-fable-5",
|
|
348
344
|
"~anthropic/claude-fable-latest",
|
|
349
345
|
"anthropic/claude-opus-4.8",
|
|
@@ -417,6 +413,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
417
413
|
"google/gemma-4-31B-it",
|
|
418
414
|
],
|
|
419
415
|
"vercel-ai-gateway": [
|
|
416
|
+
"anthropic/claude-opus-5",
|
|
420
417
|
"anthropic/claude-fable-5",
|
|
421
418
|
"anthropic/claude-opus-4.8",
|
|
422
419
|
"anthropic/claude-opus-4.7",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-illustrations-to-explain-things",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A pi skill for generating clean, absurd Xiaohei-style article illustrations, shot lists, and visual metaphors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-openai-fast",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "A pi extension that enables OpenAI Codex Fast mode for ChatGPT-auth GPT-5.4, GPT-5.5, and GPT-5.6 Codex variants by injecting the priority service tier.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -82,6 +82,7 @@ const ORACLE_CONFIG_FILE = "oracle.json";
|
|
|
82
82
|
|
|
83
83
|
const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
84
84
|
"amazon-bedrock": [
|
|
85
|
+
"claude-opus-5",
|
|
85
86
|
"claude-fable-5",
|
|
86
87
|
"claude-opus-4-8",
|
|
87
88
|
"claude-opus-4-7",
|
|
@@ -101,6 +102,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
101
102
|
"zai.glm-5",
|
|
102
103
|
],
|
|
103
104
|
anthropic: [
|
|
105
|
+
"claude-opus-5",
|
|
104
106
|
"claude-fable-5",
|
|
105
107
|
"claude-opus-4-8",
|
|
106
108
|
"claude-opus-4-7",
|
|
@@ -125,13 +127,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
125
127
|
"gpt-5-chat-latest",
|
|
126
128
|
"gpt-5.2-pro",
|
|
127
129
|
"gpt-5.2",
|
|
128
|
-
"gpt-5.2-codex",
|
|
129
|
-
"gpt-5.1-codex-max",
|
|
130
|
-
"gpt-5.1-codex",
|
|
131
130
|
"gpt-5.1",
|
|
132
|
-
"gpt-5.1-chat-latest",
|
|
133
131
|
"o3-pro",
|
|
134
|
-
"o3-deep-research",
|
|
135
132
|
"o1-pro",
|
|
136
133
|
"gpt-5.4-mini",
|
|
137
134
|
"gpt-5-mini",
|
|
@@ -177,6 +174,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
177
174
|
"accounts/fireworks/models/gpt-oss-20b",
|
|
178
175
|
],
|
|
179
176
|
"github-copilot": [
|
|
177
|
+
"claude-opus-5",
|
|
180
178
|
"claude-fable-5",
|
|
181
179
|
"claude-opus-4.8",
|
|
182
180
|
"claude-opus-4.7",
|
|
@@ -266,13 +264,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
266
264
|
"gpt-5-chat-latest",
|
|
267
265
|
"gpt-5.2-pro",
|
|
268
266
|
"gpt-5.2",
|
|
269
|
-
"gpt-5.2-codex",
|
|
270
|
-
"gpt-5.1-codex-max",
|
|
271
|
-
"gpt-5.1-codex",
|
|
272
267
|
"gpt-5.1",
|
|
273
|
-
"gpt-5.1-chat-latest",
|
|
274
268
|
"o3-pro",
|
|
275
|
-
"o3-deep-research",
|
|
276
269
|
"o1-pro",
|
|
277
270
|
"gpt-5.4-mini",
|
|
278
271
|
"gpt-5-mini",
|
|
@@ -287,6 +280,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
287
280
|
"gpt-5.3-codex-spark",
|
|
288
281
|
],
|
|
289
282
|
opencode: [
|
|
283
|
+
"claude-opus-5",
|
|
290
284
|
"claude-fable-5",
|
|
291
285
|
"gpt-5.5-pro",
|
|
292
286
|
"gpt-5.5",
|
|
@@ -328,6 +322,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
328
322
|
"kimi-k2.6",
|
|
329
323
|
],
|
|
330
324
|
openrouter: [
|
|
325
|
+
"anthropic/claude-opus-5",
|
|
331
326
|
"anthropic/claude-fable-5",
|
|
332
327
|
"~anthropic/claude-fable-latest",
|
|
333
328
|
"anthropic/claude-opus-4.8",
|
|
@@ -401,6 +396,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
401
396
|
"google/gemma-4-31B-it",
|
|
402
397
|
],
|
|
403
398
|
"vercel-ai-gateway": [
|
|
399
|
+
"anthropic/claude-opus-5",
|
|
404
400
|
"anthropic/claude-fable-5",
|
|
405
401
|
"anthropic/claude-opus-4.8",
|
|
406
402
|
"anthropic/claude-opus-4.7",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.82.
|
|
1
|
+
0.82.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-extensions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.61",
|
|
4
4
|
"description": "A collection of pi extensions and skills for annotation UIs, context management, workflow audits, contrarian review, review-comment triage, notifications, brrr push alerts, safety guards, GitHub research, repo-local knowledge, todos, tool rendering, model/provider helpers, and Xiaohei-style article illustrations.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
]
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@earendil-works/pi-ai": "^0.82.
|
|
76
|
-
"@earendil-works/pi-coding-agent": "^0.82.
|
|
77
|
-
"@earendil-works/pi-tui": "^0.82.
|
|
75
|
+
"@earendil-works/pi-ai": "^0.82.1",
|
|
76
|
+
"@earendil-works/pi-coding-agent": "^0.82.1",
|
|
77
|
+
"@earendil-works/pi-tui": "^0.82.1",
|
|
78
78
|
"@types/node": "^25.9.1",
|
|
79
79
|
"husky": "^9.1.7",
|
|
80
80
|
"typebox": "^1.3.6",
|