mimi-seed 0.7.0 → 0.9.1

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.
@@ -479,7 +479,8 @@ function resolveOnPath(bin) {
479
479
  async function runMcpBin(bin, extraArgs = []) {
480
480
  const local = resolveOnPath(bin);
481
481
  const cmd = local ? bin : "npx";
482
- const args = local ? extraArgs : ["-y", MCP_PKG, bin, ...extraArgs];
482
+ const pkg = process.env.MIMI_SEED_FORCE_NPX ? `${MCP_PKG}@latest` : MCP_PKG;
483
+ const args = local ? extraArgs : ["-y", pkg, bin, ...extraArgs];
483
484
  return new Promise((resolve) => {
484
485
  const child = spawn(cmd, args, {
485
486
  stdio: "inherit",
package/dist/index.js CHANGED
@@ -20,7 +20,7 @@ import {
20
20
  runMcpBin,
21
21
  tryCredById,
22
22
  writeConfig
23
- } from "./chunk-47TS72IP.js";
23
+ } from "./chunk-BXN3EMF6.js";
24
24
  import {
25
25
  catalog,
26
26
  isLang,
@@ -1072,7 +1072,7 @@ async function cmdAuth(args) {
1072
1072
  if (sub === "facebook") return void exitWith(await runMcpBin("mimi-seed-social-auth", ["facebook"]));
1073
1073
  if (sub === "instagram") return void exitWith(await runMcpBin("mimi-seed-social-auth", ["instagram"]));
1074
1074
  if (sub === "ci") {
1075
- const { cmdSetup: cmdSetup2 } = await import("./setup-NQHLA3AJ.js");
1075
+ const { cmdSetup: cmdSetup2 } = await import("./setup-3XTSGFEF.js");
1076
1076
  await cmdSetup2(["--only", "github,gitlab", "--reconnect", "github,gitlab"]);
1077
1077
  return;
1078
1078
  }
@@ -3,7 +3,7 @@ import {
3
3
  cmdSetup,
4
4
  parseSetupArgs,
5
5
  resolveMode
6
- } from "./chunk-47TS72IP.js";
6
+ } from "./chunk-BXN3EMF6.js";
7
7
  import "./chunk-SZQFVTEW.js";
8
8
  export {
9
9
  cmdSetup,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mimi-seed",
3
- "version": "0.7.0",
3
+ "version": "0.9.1",
4
4
  "description": "Mimi Seed CLI — Claude Code와 Codex에서 앱 출시 운영을 관리합니다.",
5
5
  "bin": {
6
6
  "mimi-seed": "dist/index.js"