@diegopetrucci/pi-extensions 0.1.37 → 0.1.38

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 (43) 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/package.json +1 -1
  4. package/extensions/brrr/.pi-fleet-tested-version +1 -1
  5. package/extensions/brrr/package.json +1 -1
  6. package/extensions/claude-fast/.pi-fleet-tested-version +1 -1
  7. package/extensions/claude-fast/README.md +1 -1
  8. package/extensions/claude-fast/index.ts +2 -2
  9. package/extensions/claude-fast/package.json +1 -1
  10. package/extensions/confirm-destructive/.pi-fleet-tested-version +1 -1
  11. package/extensions/confirm-destructive/package.json +1 -1
  12. package/extensions/context-cap/.pi-fleet-tested-version +1 -1
  13. package/extensions/context-cap/package.json +1 -1
  14. package/extensions/context-inspector/.pi-fleet-tested-version +1 -1
  15. package/extensions/context-inspector/package.json +1 -1
  16. package/extensions/dirty-repo-guard/.pi-fleet-tested-version +1 -1
  17. package/extensions/dirty-repo-guard/package.json +1 -1
  18. package/extensions/gnosis/.pi-fleet-tested-version +1 -1
  19. package/extensions/gnosis/package.json +1 -1
  20. package/extensions/inline-bash/.pi-fleet-tested-version +1 -1
  21. package/extensions/inline-bash/package.json +1 -1
  22. package/extensions/librarian/.pi-fleet-tested-version +1 -1
  23. package/extensions/librarian/package.json +1 -1
  24. package/extensions/minimal-footer/.pi-fleet-tested-version +1 -1
  25. package/extensions/minimal-footer/package.json +1 -1
  26. package/extensions/notify/.pi-fleet-tested-version +1 -1
  27. package/extensions/notify/package.json +1 -1
  28. package/extensions/openai-fast/.pi-fleet-tested-version +1 -1
  29. package/extensions/openai-fast/package.json +1 -1
  30. package/extensions/oracle/.pi-fleet-tested-version +1 -1
  31. package/extensions/oracle/index.ts +8 -0
  32. package/extensions/oracle/package.json +1 -1
  33. package/extensions/permission-gate/.pi-fleet-tested-version +1 -1
  34. package/extensions/permission-gate/package.json +1 -1
  35. package/extensions/quiet-tools/.pi-fleet-tested-version +1 -1
  36. package/extensions/quiet-tools/package.json +1 -1
  37. package/extensions/review/.pi-fleet-tested-version +1 -1
  38. package/extensions/review/package.json +1 -1
  39. package/extensions/todo/.pi-fleet-tested-version +1 -1
  40. package/extensions/todo/package.json +1 -1
  41. package/extensions/triage-comments/.pi-fleet-tested-version +1 -1
  42. package/extensions/triage-comments/package.json +1 -1
  43. package/package.json +4 -4
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-agent-workflow-audit",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-brrr",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -22,7 +22,7 @@ Fast mode is only injected when all of these are true:
22
22
 
23
23
  - The current provider is `anthropic`.
24
24
  - The current API is `anthropic-messages`.
25
- - The current model is `claude-opus-4-6` or `claude-opus-4-7`.
25
+ - The current model is `claude-opus-4-6`, `claude-opus-4-7`, or `claude-opus-4-8`.
26
26
  - The request payload does not already include `speed`.
27
27
 
28
28
  Claude Fast mode is available for API-key access and Claude Code subscription/OAuth access when the account has access to Anthropic's Fast mode research preview. For Claude Code subscription users, Anthropic documents this as extra usage credits, not included subscription usage.
@@ -12,7 +12,7 @@ const API_ID = "anthropic-messages";
12
12
  const FAST_SPEED = "fast";
13
13
  const FAST_BETA = "fast-mode-2026-02-01";
14
14
  const CLAUDE_CODE_OAUTH_BETAS = ["claude-code-20250219", "oauth-2025-04-20"];
15
- const SUPPORTED_MODELS = new Set(["claude-opus-4-6", "claude-opus-4-7"]);
15
+ const SUPPORTED_MODELS = new Set(["claude-opus-4-6", "claude-opus-4-7", "claude-opus-4-8"]);
16
16
 
17
17
  const DEFAULT_CONFIG: ClaudeFastConfig = {
18
18
  enabled: false,
@@ -143,7 +143,7 @@ function getEligibility(ctx: ExtensionContext): Eligibility {
143
143
  return {
144
144
  eligible: false,
145
145
  modelKey: key,
146
- reason: "Fast mode is only enabled for Claude Opus 4.6 and 4.7",
146
+ reason: "Fast mode is only enabled for Claude Opus 4.6, 4.7, and 4.8",
147
147
  };
148
148
  }
149
149
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-claude-fast",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-confirm-destructive",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A pi extension that confirms destructive session actions.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-context-cap",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-context-inspector",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-dirty-repo-guard",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-gnosis",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-inline-bash",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-librarian",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-minimal-footer",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "A minimal custom footer for pi.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-notify",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-openai-fast",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A pi extension that enables OpenAI Codex Fast mode for ChatGPT-auth GPT-5.4 and GPT-5.5 by injecting the priority service tier.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -75,6 +75,7 @@ const ORACLE_CONFIG_FILE = "oracle.json";
75
75
 
76
76
  const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
77
77
  "amazon-bedrock": [
78
+ "claude-opus-4-8",
78
79
  "claude-opus-4-7",
79
80
  "claude-opus-4-6",
80
81
  "claude-opus-4-5",
@@ -91,6 +92,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
91
92
  "zai.glm-5",
92
93
  ],
93
94
  anthropic: [
95
+ "claude-opus-4-8",
96
+ "claude-opus-4.8",
94
97
  "claude-opus-4-7",
95
98
  "claude-opus-4.7",
96
99
  "claude-opus-4-6",
@@ -156,6 +159,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
156
159
  "accounts/fireworks/models/gpt-oss-120b",
157
160
  ],
158
161
  "github-copilot": [
162
+ "claude-opus-4.8",
159
163
  "claude-opus-4.7",
160
164
  "claude-opus-4.6",
161
165
  "claude-opus-4.5",
@@ -257,6 +261,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
257
261
  "gpt-5.5",
258
262
  "gpt-5.4-pro",
259
263
  "gpt-5.4",
264
+ "claude-opus-4-8",
260
265
  "claude-opus-4-7",
261
266
  "claude-opus-4-6",
262
267
  "claude-opus-4-5",
@@ -284,6 +289,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
284
289
  "kimi-k2.5",
285
290
  ],
286
291
  openrouter: [
292
+ "anthropic/claude-opus-4.8",
293
+ "anthropic/claude-opus-4.8-fast",
287
294
  "anthropic/claude-opus-4.7",
288
295
  "anthropic/claude-opus-4.6-fast",
289
296
  "anthropic/claude-opus-4.6",
@@ -320,6 +327,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
320
327
  "MiniMaxAI/MiniMax-M2.5",
321
328
  ],
322
329
  "vercel-ai-gateway": [
330
+ "anthropic/claude-opus-4.8",
323
331
  "anthropic/claude-opus-4.7",
324
332
  "anthropic/claude-opus-4.6",
325
333
  "anthropic/claude-opus-4.5",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-oracle",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-permission-gate",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A pi extension that prompts before dangerous bash commands.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -1 +1 @@
1
- 0.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-quiet-tools",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-review",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-todo",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.76.0
1
+ 0.78.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-triage-comments",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
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.37",
3
+ "version": "0.1.38",
4
4
  "description": "A collection of pi extensions for context management, workflow audits, review-comment triage, notifications, brrr push alerts, safety guards, GitHub research, repo-local knowledge, todos, tool rendering, and model/provider helpers.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -57,9 +57,9 @@
57
57
  "image": "https://raw.githubusercontent.com/diegopetrucci/pi-extensions/main/assets/oracle-preview.svg"
58
58
  },
59
59
  "devDependencies": {
60
- "@earendil-works/pi-ai": "^0.76.0",
61
- "@earendil-works/pi-coding-agent": "^0.76.0",
62
- "@earendil-works/pi-tui": "^0.76.0",
60
+ "@earendil-works/pi-ai": "^0.78.0",
61
+ "@earendil-works/pi-coding-agent": "^0.78.0",
62
+ "@earendil-works/pi-tui": "^0.78.0",
63
63
  "@types/node": "^25.9.1",
64
64
  "husky": "^9.1.7",
65
65
  "typebox": "^1.1.38",