You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Implemented the backlog end-to-end across the repo. What changed: Added diff-first micro-task routing for commit messages, changelog entries, and release notes. Unified SCM commit message generation through the new micro-task executor. Added changelog/release generation core, VS Code commands, CHANGELOG.md, and CI release workflow. Added one-click audit pack export with zip generation, redaction report, manifest, tool audit, and approvals. Improved reasoning stream UI: live reveal, no 1200-char hard cap, configurable visibility/preview size. Added enterprise settings/docs for local-only providers, audit redaction, procurement/security/compliance. Added Windows path hardening, Windows CI matrix, and Windows smoke checklist. Added CLI MVP for changelog, prepare-release, and export-audit. Updated README with the new enterprise, audit, release, CLI, and reasoning features. Added focused tests for all new core implementations. (8a00fd537ef2)
9
+
- add AWS Bedrock, Azure OpenAI, and OpenRouter provider support (cac73bc1a9a7)
10
+
-**modes:** add pilot and enterprise depth levels to Ask, Plan, and Act modes (ca3d2daf6375)
11
+
-**orchestrator:** add planning clarification question flow with resume support (0d052937fb8e)
12
+
- auto-discover verify commands, add retry with install, cap sequential-thinking calls (6786a1d904fe)
13
+
- improve plan step UI, add skipped tool handling, and strip channel markers (d65a81752037)
npm run rebuild:native # required for better-sqlite3 in VS Code
41
-
npm run compile
39
+
pnpm install
40
+
pnpm run rebuild:native # required for better-sqlite3 in VS Code
41
+
pnpm run compile
42
42
```
43
43
44
-
Git hooks are installed automatically via `npm install`→`prepare`→`scripts/install-git-hooks.mjs`. The pre-commit hook stages version bumps from `scripts/bump-version.mjs`.
44
+
Git hooks are installed automatically via `pnpm install`->`prepare`->`scripts/install-git-hooks.mjs`. The pre-commit hook stages version bumps from `scripts/bump-version.mjs`.
45
45
46
46
### Launch the extension
47
47
@@ -53,7 +53,7 @@ Git hooks are installed automatically via `npm install` → `prepare` → `scrip
53
53
### Watch mode (day-to-day dev)
54
54
55
55
```bash
56
-
npm run watch
56
+
pnpm run watch
57
57
```
58
58
59
59
Rebuilds the extension bundle and webview on save. Reload the Extension Development Host window after extension-side changes (`Ctrl/Cmd+R` in the host window, or restart the debug session).
@@ -63,7 +63,7 @@ Rebuilds the extension bundle and webview on save. Reload the Extension Developm
Scaffolds may exist at `mitii-docs/` and `mitii-website/` in this tree while you split them out. Brand constants: `src/shared/brand.ts` (sync with each repo's `brand.ts`).
102
104
103
-
**Rule of thumb:** keep VS Code APIs out of `src/core/`. Core should be testable without launching an editor. Put platform glue in `src/vscode/`.
105
+
**Rule of thumb:** keep VS Code APIs out of `src/core/`. Core should be testable without launching an editor. Put platform glue in `src/vscode/`. Keep benchmark and eval in `tools/benchmark/` — they are not extension runtime code.
106
+
107
+
### Benchmark and eval
108
+
109
+
```bash
110
+
pnpm run compile:cli
111
+
pnpm run benchmark:smoke
112
+
pnpm run eval:preflight # before real-runtime eval
113
+
pnpm run eval:generate
114
+
pnpm run eval:standard -- --provider openai-compatible \
0 commit comments