opencode-magi 0.0.0-dev-20260728014912 → 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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260728014912",
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>",