homer-simpson 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli/index.js +12 -12
  2. package/package.json +1 -1
package/dist/cli/index.js CHANGED
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
2253
2253
  var require_package = __commonJS((exports, module) => {
2254
2254
  module.exports = {
2255
2255
  name: "homer-simpson",
2256
- version: "0.1.1",
2256
+ version: "0.1.2",
2257
2257
  description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
2258
2258
  main: "dist/index.js",
2259
2259
  types: "dist/index.d.ts",
@@ -7086,13 +7086,13 @@ function formatConfigSummary(config) {
7086
7086
  lines.push(import_picocolors2.default.bold(import_picocolors2.default.white("Agent Configuration")));
7087
7087
  lines.push("");
7088
7088
  const homerModel = config.hasClaude ? "claude-opus-4-5" : "glm-4.7-free";
7089
- const oracleModel = config.hasChatGPT ? "gpt-5.2" : config.hasClaude ? "claude-opus-4-5" : "glm-4.7-free";
7090
- const librarianModel = "glm-4.7-free";
7091
- const frontendModel = config.hasGemini ? "antigravity-gemini-3-pro-high" : config.hasClaude ? "claude-opus-4-5" : "glm-4.7-free";
7092
- lines.push(` ${SYMBOLS.bullet} Homer ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(homerModel)}`);
7093
- lines.push(` ${SYMBOLS.bullet} Oracle ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(oracleModel)}`);
7094
- lines.push(` ${SYMBOLS.bullet} Librarian ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(librarianModel)}`);
7095
- lines.push(` ${SYMBOLS.bullet} Frontend ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(frontendModel)}`);
7089
+ const architectModel = config.hasChatGPT ? "gpt-5.2" : config.hasClaude ? "claude-opus-4-5" : "glm-4.7-free";
7090
+ const researcherModel = "glm-4.7-free";
7091
+ const designerModel = config.hasGemini ? "antigravity-gemini-3-pro-high" : config.hasClaude ? "claude-opus-4-5" : "glm-4.7-free";
7092
+ lines.push(` ${SYMBOLS.bullet} Homer ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(homerModel)}`);
7093
+ lines.push(` ${SYMBOLS.bullet} Architect ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(architectModel)}`);
7094
+ lines.push(` ${SYMBOLS.bullet} Researcher ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(researcherModel)}`);
7095
+ lines.push(` ${SYMBOLS.bullet} Designer ${SYMBOLS.arrow} ${import_picocolors2.default.cyan(designerModel)}`);
7096
7096
  return lines.join(`
7097
7097
  `);
7098
7098
  }
@@ -7182,7 +7182,7 @@ async function runTuiMode(detected) {
7182
7182
  options: [
7183
7183
  { value: "no", label: "No", hint: "Will use opencode/glm-4.7-free as fallback" },
7184
7184
  { value: "yes", label: "Yes (standard)", hint: "Claude Opus 4.5 for orchestration" },
7185
- { value: "max20", label: "Yes (max20 mode)", hint: "Full power with Claude Sonnet 4.5 for Librarian" }
7185
+ { value: "max20", label: "Yes (max20 mode)", hint: "Full power with Claude Sonnet 4.5 for Researcher" }
7186
7186
  ],
7187
7187
  initialValue: initial.claude
7188
7188
  });
@@ -7193,7 +7193,7 @@ async function runTuiMode(detected) {
7193
7193
  const chatgpt = await ve({
7194
7194
  message: "Do you have a ChatGPT Plus/Pro subscription?",
7195
7195
  options: [
7196
- { value: "no", label: "No", hint: "Oracle will use fallback model" },
7196
+ { value: "no", label: "No", hint: "Architect will use fallback model" },
7197
7197
  { value: "yes", label: "Yes", hint: "GPT-5.2 for debugging and architecture" }
7198
7198
  ],
7199
7199
  initialValue: initial.chatgpt
@@ -7310,7 +7310,7 @@ async function runNonTuiInstall(args) {
7310
7310
  ` + `All features work like magic\u2014parallel agents, background tasks,
7311
7311
  ` + `deep exploration, and relentless execution until completion.`, "\uD83E\uDE84 The Magic Word");
7312
7312
  console.log(`${SYMBOLS.star} ${import_picocolors2.default.yellow("If you found this helpful, consider starring the repo!")}`);
7313
- console.log(` ${import_picocolors2.default.dim("gh repo star code-yeongyu/homer-simpson")}`);
7313
+ console.log(` ${import_picocolors2.default.dim("gh repo star SL-IT-AMAZING/Homer-Simpson")}`);
7314
7314
  console.log();
7315
7315
  console.log(import_picocolors2.default.dim("HomerMo... Enjoy!"));
7316
7316
  console.log();
@@ -7400,7 +7400,7 @@ async function install(args) {
7400
7400
  ` + `All features work like magic\u2014parallel agents, background tasks,
7401
7401
  ` + `deep exploration, and relentless execution until completion.`, "\uD83E\uDE84 The Magic Word");
7402
7402
  M2.message(`${import_picocolors2.default.yellow("\u2605")} If you found this helpful, consider starring the repo!`);
7403
- M2.message(` ${import_picocolors2.default.dim("gh repo star code-yeongyu/homer-simpson")}`);
7403
+ M2.message(` ${import_picocolors2.default.dim("gh repo star SL-IT-AMAZING/Homer-Simpson")}`);
7404
7404
  Se(import_picocolors2.default.green("HomerMo... Enjoy!"));
7405
7405
  return 0;
7406
7406
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homer-simpson",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",