@ddtcorex/dsh-maestro-review 0.6.0 → 0.6.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ddtcorex/dsh-maestro-review",
3
3
  "private": false,
4
- "version": "0.6.0",
4
+ "version": "0.6.2",
5
5
  "description": "Maestro Review — pluggable ReviewProvider (GitLab/GitHub) + orchestrator for automated MR review",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",
@@ -54,6 +54,6 @@
54
54
  "build": "tsc",
55
55
  "test": "vitest run",
56
56
  "verify": "tsc --noEmit",
57
- "docker:build": "docker build -f docker/Dockerfile -t ddtcorex/maestro-reviewer:0.3.2 -t ddtcorex/maestro-reviewer:latest ../.."
57
+ "docker:build": "docker build -f docker/Dockerfile -t ddtcorex/maestro-reviewer:0.6.0 -t ddtcorex/maestro-reviewer:latest ."
58
58
  }
59
59
  }
@@ -38,7 +38,18 @@
38
38
  # "[object Object]" instead of a string).
39
39
  gitlabBaseUrl: !!js "process.env.GITLAB_HOST ? 'https://' + process.env.GITLAB_HOST : ''"
40
40
  gitlabToken: !!js process.env.MAESTRO_GITLAB_TOKEN
41
- botUsername: maestro-bot
41
+ # botUsername drives more than mention text: review-signals.ts's
42
+ # unawardOwn() (clearing the running "eyes" marker) and gitlab-client.ts's
43
+ # selectOwnThreads() (re-review dedup/reply) both filter GitLab objects by
44
+ # `author.username === botUsername`. The hardcoded "maestro-bot" default
45
+ # only matches if MAESTRO_GITLAB_TOKEN really belongs to a "maestro-bot"
46
+ # account; a personal PAT posts as its owner's real username instead, so
47
+ # neither check ever recognized its own objects (found live 2026-09-05:
48
+ # every award_emoji in E2E testing was posted as the token owner, never
49
+ # "maestro-bot" — stale eyes markers never cleared). Set
50
+ # REVIEW_BOT_USERNAME to the token's real GitLab username when it isn't
51
+ # a literal "maestro-bot" account.
52
+ botUsername: !!js "process.env.REVIEW_BOT_USERNAME || 'maestro-bot'"
42
53
  projectMappings: []
43
54
  agentTimeoutMs: 1200000
44
55
  # Pinned review model (no Settings UI in CI). Optional as a pair: both unset
@@ -11,9 +11,10 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
+ "@deepseek-ai/dsh": "0.1.2-rc.1",
14
15
  "@deepseek-ai/dsh-base": "0.1.2-rc.1",
15
16
  "@deepseek-ai/dsh-agent-presets": "0.1.2-rc.1",
16
- "@ddtcorex/dsh-maestro-review": "0.5.1",
17
+ "@ddtcorex/dsh-maestro-review": "0.6.1",
17
18
  "@ddtcorex/maestro-skills": "2.11.1"
18
19
  }
19
20
  }