omni-pi 0.10.1 → 0.11.0
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/CHANGELOG.md +11 -0
- package/README.md +2 -25
- package/extensions/omni-core/index.ts +0 -4
- package/package.json +1 -3
- package/src/providers.ts +11 -707
- package/PROVIDERS.md +0 -80
- package/extensions/omni-providers/index.ts +0 -16
- package/src/anthropic-auth-guard.ts +0 -95
- package/src/model-command.ts +0 -205
- package/src/model-refresh-state.ts +0 -39
- package/src/model-setup.ts +0 -1149
- package/src/provider-auth-command.ts +0 -104
- package/src/provider-catalog.json +0 -20391
- package/src/searchable-select.ts +0 -198
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.11.0 - 2026-04-24
|
|
4
|
+
|
|
5
|
+
### Removed
|
|
6
|
+
|
|
7
|
+
- Removed `/model-setup`, `/manage-providers`, the `omni-providers` extension, and the bundled provider catalog. Pi now handles provider and model management natively.
|
|
8
|
+
- Removed `PROVIDERS.md` and the provider docs spec.
|
|
9
|
+
|
|
3
10
|
## 0.10.1 - 2026-04-24
|
|
4
11
|
|
|
5
12
|
### Release follow-up
|
|
@@ -9,6 +16,10 @@
|
|
|
9
16
|
|
|
10
17
|
## 0.10.0 - 2026-04-24
|
|
11
18
|
|
|
19
|
+
### Removed
|
|
20
|
+
|
|
21
|
+
- Removed `/model-setup`, `/manage-providers`, and the `omni-providers` extension. Pi now handles provider and model management natively.
|
|
22
|
+
|
|
12
23
|
### Runtime and integrations
|
|
13
24
|
|
|
14
25
|
- upgraded `@mariozechner/pi-coding-agent` to `0.70.0`
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Requires Node.js 22 or newer.
|
|
|
15
15
|
- Keeps durable standards and project context in `.omni/`, even when Omni mode is off.
|
|
16
16
|
- Writes specs, tasks, and progress into `.omni/` once Omni mode is enabled.
|
|
17
17
|
- Adds a repo map that indexes supported source files, ranks them by structure plus recent activity, and injects a compact codebase-awareness block into Omni prompts.
|
|
18
|
-
- Bundles web search, guided interviews, themed UI, native micro-UI via Glimpse, native git diff review, prompt-template-powered workflow commands, a task viewer, a powerbar,
|
|
18
|
+
- Bundles web search, guided interviews, themed UI, native micro-UI via Glimpse, native git diff review, prompt-template-powered workflow commands, a task viewer, a powerbar, and automatic updates out of the box.
|
|
19
19
|
|
|
20
20
|
## Install
|
|
21
21
|
|
|
@@ -30,8 +30,6 @@ cd your-project
|
|
|
30
30
|
omni
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
Custom provider setup, refresh behavior, and bundled provider behavior are documented in [PROVIDERS.md](PROVIDERS.md).
|
|
34
|
-
|
|
35
33
|
## Features
|
|
36
34
|
|
|
37
35
|
### Bundled Skills
|
|
@@ -66,7 +64,6 @@ Current deferred roadmap items remain intentional and visible in docs rather tha
|
|
|
66
64
|
| Extension | What it does |
|
|
67
65
|
|-----------|-------------|
|
|
68
66
|
| **omni-core** | Brain workflow, themed header, session init, system prompt injection |
|
|
69
|
-
| **omni-providers** | Model provider wiring |
|
|
70
67
|
| **omni-memory** | `.omni/` durable memory bootstrap |
|
|
71
68
|
| **glimpseui** | Native micro-UI windows and the optional floating companion widget |
|
|
72
69
|
| **pi-web-access** | Web search and fetch tools for the agent |
|
|
@@ -88,8 +85,6 @@ Omni-Pi now bundles [Glimpse](https://github.com/HazAT/glimpse) for native micro
|
|
|
88
85
|
|
|
89
86
|
| Command | Description |
|
|
90
87
|
|---------|-------------|
|
|
91
|
-
| `/model-setup` | Add, refresh, or remove custom provider/model entries |
|
|
92
|
-
| `/manage-providers` | Remove stored auth for bundled providers |
|
|
93
88
|
| `/omni-mode` | Toggle persistent Omni mode on or off for this project |
|
|
94
89
|
| `/companion` | Toggle the Glimpse floating companion widget |
|
|
95
90
|
| `/diff-review` | Open a native git diff review window and insert feedback into the editor |
|
|
@@ -108,24 +103,6 @@ Omni-Pi now bundles [Glimpse](https://github.com/HazAT/glimpse) for native micro
|
|
|
108
103
|
|
|
109
104
|
Omni-Pi checks for new versions on startup (cached, re-checks every 4 hours). When an update is available, it prompts to install and restart. Pi's own update notification is suppressed to avoid duplication.
|
|
110
105
|
|
|
111
|
-
## Provider Support
|
|
112
|
-
|
|
113
|
-
`/model-setup` is for custom providers and custom model entries only.
|
|
114
|
-
|
|
115
|
-
Use `/model-setup` when you want to configure:
|
|
116
|
-
|
|
117
|
-
- a custom provider id
|
|
118
|
-
- an API type and base URL
|
|
119
|
-
- an API key for that custom provider
|
|
120
|
-
- discovered models or manual model entries
|
|
121
|
-
- a manual refresh of already configured custom providers
|
|
122
|
-
|
|
123
|
-
Use `/manage-providers` to remove stored auth for bundled Pi providers.
|
|
124
|
-
|
|
125
|
-
Anthropic is intentionally API-key-only in Omni-Pi. Anthropic OAuth login is disabled.
|
|
126
|
-
|
|
127
|
-
See [PROVIDERS.md](PROVIDERS.md) for the current supported-provider list and auth-management split.
|
|
128
|
-
|
|
129
106
|
## Omni Mode
|
|
130
107
|
|
|
131
108
|
Omni-Pi keeps its current branding and shell at all times, but the specialized workflow is opt-in.
|
|
@@ -176,7 +153,7 @@ npm run chat # launch locally in dev mode
|
|
|
176
153
|
## CI/CD
|
|
177
154
|
|
|
178
155
|
- Pull requests and pushes to `main` run `npm run verify`.
|
|
179
|
-
- The docs are part of the test contract
|
|
156
|
+
- The docs are part of the test contract.
|
|
180
157
|
- Pushing a `v*` tag runs the release workflow, verifies the repo again, publishes to npm through GitHub Actions trusted publishing with provenance, and then creates the GitHub release.
|
|
181
158
|
- Trusted publishing still requires npm-side setup for this repository/workflow in the npm package settings.
|
|
182
159
|
|
|
@@ -9,13 +9,11 @@ import {
|
|
|
9
9
|
} from "../../src/brain.js";
|
|
10
10
|
import { createOmniCommands } from "../../src/commands.js";
|
|
11
11
|
import { renderHeader } from "../../src/header.js";
|
|
12
|
-
import { registerModelCommand } from "../../src/model-command.js";
|
|
13
12
|
import {
|
|
14
13
|
registerOmniMessageRenderer,
|
|
15
14
|
registerPiCommands,
|
|
16
15
|
} from "../../src/pi.js";
|
|
17
16
|
import { ensureBundledPromptTemplates } from "../../src/prompt-template-sync.js";
|
|
18
|
-
import { registerProviderAuthCommand } from "../../src/provider-auth-command.js";
|
|
19
17
|
import {
|
|
20
18
|
buildRepoMapPromptSuffix,
|
|
21
19
|
registerRepoMapTracking,
|
|
@@ -42,8 +40,6 @@ import { buildOnboardingInterviewKickoff } from "../../src/workflow.js";
|
|
|
42
40
|
export default function omniCoreExtension(api: ExtensionAPI): void {
|
|
43
41
|
registerOmniMessageRenderer(api);
|
|
44
42
|
registerPiCommands(api, createOmniCommands());
|
|
45
|
-
registerModelCommand(api);
|
|
46
|
-
registerProviderAuthCommand(api);
|
|
47
43
|
registerThemeCommand(api);
|
|
48
44
|
registerTodoShortcut(api);
|
|
49
45
|
registerUpdater(api);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omni-pi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Single-agent Pi package that interviews the user, documents the spec, and implements work in bounded slices.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"templates",
|
|
39
39
|
"vendor/pi-diff-review",
|
|
40
40
|
"README.md",
|
|
41
|
-
"PROVIDERS.md",
|
|
42
41
|
"CREDITS.md"
|
|
43
42
|
],
|
|
44
43
|
"scripts": {
|
|
@@ -59,7 +58,6 @@
|
|
|
59
58
|
},
|
|
60
59
|
"pi": {
|
|
61
60
|
"extensions": [
|
|
62
|
-
"./extensions/omni-providers/index.ts",
|
|
63
61
|
"./extensions/omni-core/index.ts",
|
|
64
62
|
"./extensions/omni-memory/index.ts",
|
|
65
63
|
"./node_modules/glimpseui/pi-extension/index.ts",
|