Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.9.0] - 2026-09-05

### Added

- **The project config is read from `.dz/ui-debugger/ui-debugger-mcp.json`
first, falling back to the root `.ui-debugger-mcp.json`.** The `.dz/` home is
where the developerz.ai platform now keeps every repo-scoped config, and its
setup lane renders this one there. Both locations work; `.dz/` wins outright
when both exist, and a malformed `.dz/` copy is an error rather than a
fall-through to the root file. A fresh `init` writes to `.dz/` when the repo
already has that directory, and to the root otherwise.

This is the release the platform's own move depends on: before it, a config
written under `.dz/` was invisible and the server reported no project config.

### Fixed

- A full-document load the driver did not ask for is now surfaced on the
adapter contract rather than silently absorbed, so an act that navigates out
from under itself is visible to the belt.
- `biome` no longer prunes the whole checkout when its path happens to contain
a `tmp` directory, which made lint a no-op under some working trees.

## [1.8.0] - 2026-07-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@developerz.ai/ui-debugger-mcp",
"version": "1.8.0",
"version": "1.9.0",
"description": "Autonomous UI debugging MCP server. Give a goal; a fast agent drives the browser/desktop, finds bugs + visual issues, and reports back.",
"mcpName": "io.github.developerz-ai/ui-debugger-mcp",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.developerz-ai/ui-debugger-mcp",
"description": "Autonomous UI debugging MCP server: an agent drives the browser/desktop, reports bugs + UX issues.",
"version": "1.8.0",
"version": "1.9.0",
"repository": {
"url": "https://github.com/developerz-ai/ui-debugger-mcp",
"source": "github"
Expand All @@ -12,7 +12,7 @@
{
"registryType": "npm",
"identifier": "@developerz.ai/ui-debugger-mcp",
"version": "1.8.0",
"version": "1.9.0",
"transport": {
"type": "stdio"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Public package surface. Implementation lands incrementally — see idea/ for design.

export const NAME = 'ui-debugger-mcp';
export const VERSION = '1.8.0';
export const VERSION = '1.9.0';
Loading