opencode-magi 0.0.0-dev-20260727095903 → 0.0.0-dev-20260728015925

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.
@@ -189,11 +189,13 @@ async function push() {
189
189
  await this.exec(command("git", "push", quote(url), quote(ref)), {
190
190
  cwd: this.state.worktree.path,
191
191
  env: {
192
- GIT_CONFIG_COUNT: "2",
192
+ GIT_CONFIG_COUNT: "3",
193
193
  GIT_CONFIG_KEY_0: "credential.helper",
194
194
  GIT_CONFIG_KEY_1: "credential.helper",
195
+ GIT_CONFIG_KEY_2: `http.https://${this.config.github.host}/.extraheader`,
195
196
  GIT_CONFIG_VALUE_0: "",
196
197
  GIT_CONFIG_VALUE_1: "!f() { echo username=git; echo password=$GIT_PASSWORD; }; f",
198
+ GIT_CONFIG_VALUE_2: "",
197
199
  GIT_PASSWORD: token,
198
200
  GIT_TERMINAL_PROMPT: "0",
199
201
  },
@@ -252,10 +252,6 @@ async function collectAcceptedFindings(findings) {
252
252
  const accepted = new Set();
253
253
  if (!findings.length)
254
254
  return accepted;
255
- if (!this.config.review.reviewers?.length)
256
- throw new MagiError("blocked", "No reviewers configured.");
257
- if (!this.state.reviewers)
258
- throw new MagiError("blocked", "Reviewers not found.");
259
255
  const worker = new Worker(this.config.review.concurrency.reviewers);
260
256
  const prompt = await Prompt.init(this.magi, this.config, "review/finding-validation");
261
257
  const validations = Object.fromEntries(await Promise.all(this.config.review.reviewers.map(({ id }) => worker.run(async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260727095903",
3
+ "version": "0.0.0-dev-20260728015925",
4
4
  "description": "Multi-agent PR review and merge orchestration plugin for OpenCode.",
5
5
  "license": "MIT",
6
6
  "author": "Hirotomo Yamada <hirotomo.yamada@avap.co.jp>",