@diegopetrucci/pi-extensions 0.1.59 → 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.
Files changed (58) hide show
  1. package/.pi-fleet-tested-version +1 -1
  2. package/extensions/agent-workflow-audit/.pi-fleet-tested-version +1 -1
  3. package/extensions/agent-workflow-audit/index.ts +9 -6
  4. package/extensions/agent-workflow-audit/package.json +1 -1
  5. package/extensions/annotate-git-diff/.pi-fleet-tested-version +1 -1
  6. package/extensions/annotate-git-diff/package.json +1 -1
  7. package/extensions/annotate-last-message/.pi-fleet-tested-version +1 -1
  8. package/extensions/annotate-last-message/package.json +1 -1
  9. package/extensions/brrr/.pi-fleet-tested-version +1 -1
  10. package/extensions/brrr/package.json +1 -1
  11. package/extensions/claude-fast/.pi-fleet-tested-version +1 -1
  12. package/extensions/claude-fast/package.json +1 -1
  13. package/extensions/code-reviewer/.pi-fleet-tested-version +1 -1
  14. package/extensions/code-reviewer/index.ts +4 -0
  15. package/extensions/code-reviewer/package.json +1 -1
  16. package/extensions/confirm-destructive/.pi-fleet-tested-version +1 -1
  17. package/extensions/confirm-destructive/package.json +1 -1
  18. package/extensions/context-cap/.pi-fleet-tested-version +1 -1
  19. package/extensions/context-cap/package.json +1 -1
  20. package/extensions/context-inspector/.pi-fleet-tested-version +1 -1
  21. package/extensions/context-inspector/package.json +1 -1
  22. package/extensions/contrarian/.pi-fleet-tested-version +1 -1
  23. package/extensions/contrarian/index.ts +7 -11
  24. package/extensions/contrarian/package.json +1 -1
  25. package/extensions/dirty-repo-guard/.pi-fleet-tested-version +1 -1
  26. package/extensions/dirty-repo-guard/package.json +1 -1
  27. package/extensions/dynamic-context-pruning/.pi-fleet-tested-version +1 -1
  28. package/extensions/dynamic-context-pruning/package.json +1 -1
  29. package/extensions/git-footer/.pi-fleet-tested-version +1 -1
  30. package/extensions/git-footer/package.json +1 -1
  31. package/extensions/gnosis/.pi-fleet-tested-version +1 -1
  32. package/extensions/gnosis/package.json +1 -1
  33. package/extensions/illustrations-to-explain-things/.pi-fleet-tested-version +1 -1
  34. package/extensions/illustrations-to-explain-things/package.json +1 -1
  35. package/extensions/inline-bash/.pi-fleet-tested-version +1 -1
  36. package/extensions/inline-bash/package.json +1 -1
  37. package/extensions/librarian/.pi-fleet-tested-version +1 -1
  38. package/extensions/librarian/package.json +1 -1
  39. package/extensions/minimal-footer/.pi-fleet-tested-version +1 -1
  40. package/extensions/minimal-footer/package.json +1 -1
  41. package/extensions/notify/.pi-fleet-tested-version +1 -1
  42. package/extensions/notify/package.json +1 -1
  43. package/extensions/openai-fast/.pi-fleet-tested-version +1 -1
  44. package/extensions/openai-fast/package.json +1 -1
  45. package/extensions/oracle/.pi-fleet-tested-version +1 -1
  46. package/extensions/oracle/index.ts +6 -11
  47. package/extensions/oracle/package.json +1 -1
  48. package/extensions/permission-gate/.pi-fleet-tested-version +1 -1
  49. package/extensions/permission-gate/package.json +1 -1
  50. package/extensions/quiet-tools/.pi-fleet-tested-version +1 -1
  51. package/extensions/quiet-tools/package.json +1 -1
  52. package/extensions/review/.pi-fleet-tested-version +1 -1
  53. package/extensions/review/package.json +1 -1
  54. package/extensions/todo/.pi-fleet-tested-version +1 -1
  55. package/extensions/todo/package.json +1 -1
  56. package/extensions/triage-comments/.pi-fleet-tested-version +1 -1
  57. package/extensions/triage-comments/package.json +1 -1
  58. package/package.json +4 -4
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1 +1 @@
1
- 0.81.1
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, { expanded }, theme) => {
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))}`, 0, 0);
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, 0, 0));
1151
- if (details?.cwd) container.addChild(new Text(theme.fg("dim", `cwd: ${details.cwd}`), 0, 0));
1152
- if (details?.focus) container.addChild(new Text(theme.fg("dim", `focus: ${details.focus}`), 0, 0));
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, 0, 0, getMarkdownTheme()));
1157
+ container.addChild(new Markdown(report, outputPad, 0, getMarkdownTheme()));
1155
1158
  return container;
1156
1159
  });
1157
1160
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-agent-workflow-audit",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that runs an isolated repo workflow audit and returns only the final report to the main session.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-annotate-git-diff",
3
- "version": "0.1.6",
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.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-annotate-last-message",
3
- "version": "0.1.4",
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.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-brrr",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A pi extension that sends brrr push notifications when pi is ready for input.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-claude-fast",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A pi extension that enables Anthropic Claude Fast mode for supported Claude Opus models by injecting speed=fast.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-code-reviewer",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A standalone pi extension that adds a read-only code_reviewer subagent tool for isolated code reviews.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-confirm-destructive",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "A pi extension that confirms destructive session actions.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-context-cap",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that caps effective model context windows at 200k tokens for earlier auto-compaction.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-context-inspector",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "A pi extension that opens a local HTML dashboard explaining where the current session context is going.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
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",
@@ -471,7 +468,6 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
471
468
  "moonshotai/kimi-k2.6",
472
469
  "z-ai/glm-5.2",
473
470
  "minimaxai/minimax-m3",
474
- "mistralai/mistral-large-3-675b-instruct-2512",
475
471
  "openai/gpt-oss-120b",
476
472
  "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning",
477
473
  "nvidia/nemotron-3-nano-30b-a3b",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-contrarian",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A read-only contrarian subagent extension for pi that stress-tests plans, designs, assumptions, and conclusions.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-dirty-repo-guard",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that prompts before session changes when the current git repo has uncommitted changes.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-dynamic-context-pruning",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "A pi extension that dynamically prunes stale context to keep sessions lean.",
6
6
  "keywords": [
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-git-footer",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "A TLH-style git status add-on for pi's built-in footer.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-gnosis",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that exposes the gnosis repo-local knowledge base CLI as an agent tool.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-illustrations-to-explain-things",
3
- "version": "0.1.4",
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.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-inline-bash",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that expands inline bash commands in user prompts.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-librarian",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "A pi GitHub research scout with a toggleable local repo checkout cache under the user's OS cache directory.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-minimal-footer",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "A minimal custom footer for pi.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-notify",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "A pi extension that sends a notification when the agent is ready for input.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-openai-fast",
3
- "version": "0.1.11",
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.81.1
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",
@@ -455,7 +451,6 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
455
451
  "moonshotai/kimi-k2.6",
456
452
  "z-ai/glm-5.2",
457
453
  "minimaxai/minimax-m3",
458
- "mistralai/mistral-large-3-675b-instruct-2512",
459
454
  "openai/gpt-oss-120b",
460
455
  "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning",
461
456
  "nvidia/nemotron-3-nano-30b-a3b",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-oracle",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "An Amp-style oracle extension for pi that consults the strongest reasoning model on your current provider.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-permission-gate",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A pi extension that prompts before dangerous bash commands and protected file writes.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-quiet-tools",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "A pi extension that visually compacts collapsed built-in tool rows in the TUI without changing tool results sent to the model.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-review",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A standalone pi extension that adds /review and /end-review commands adapted from mitsuhiko/agent-stuff.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-todo",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A pi extension that adds a branch-aware todo tool and /todos viewer.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.81.1
1
+ 0.82.1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-triage-comments",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "A pi extension that adds /triage-comments and a read-only triage_comments subagent tool for review-comment triage.",
5
5
  "keywords": [
6
6
  "pi-package",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-extensions",
3
- "version": "0.1.59",
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.81.1",
76
- "@earendil-works/pi-coding-agent": "^0.81.1",
77
- "@earendil-works/pi-tui": "^0.81.1",
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",