hanseol-dev 5.0.3-dev.78 → 5.0.3-dev.79

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.
@@ -21,7 +21,7 @@ export function createExcelModifyRequestTool() {
21
21
  },
22
22
  },
23
23
  execute: async (args, llmClient) => {
24
- const agent = new SubAgent(llmClient, 'excel', EXCEL_TOOLS, EXCEL_SYSTEM_PROMPT, { maxIterations: 40, planningPrompt: EXCEL_PLANNING_PROMPT, enhancementPrompt: EXCEL_ENHANCEMENT_PROMPT });
24
+ const agent = new SubAgent(llmClient, 'excel', EXCEL_TOOLS, EXCEL_SYSTEM_PROMPT, { maxIterations: 60, planningPrompt: EXCEL_PLANNING_PROMPT, enhancementPrompt: EXCEL_ENHANCEMENT_PROMPT });
25
25
  return agent.run(args['instruction']);
26
26
  },
27
27
  categories: ['llm-agent'],
@@ -22,7 +22,7 @@ export function createExcelCreateRequestTool() {
22
22
  },
23
23
  execute: async (args, llmClient) => {
24
24
  const agent = new SubAgent(llmClient, 'excel-create', EXCEL_CREATE_TOOLS, EXCEL_CREATE_SYSTEM_PROMPT, {
25
- maxIterations: 30,
25
+ maxIterations: 45,
26
26
  planningPrompt: EXCEL_CREATE_PLANNING_PROMPT,
27
27
  enhancementPrompt: EXCEL_CREATE_ENHANCEMENT_PROMPT,
28
28
  minToolCallsBeforeComplete: 12,
@@ -22,7 +22,7 @@ export function createPowerPointModifyRequestTool() {
22
22
  },
23
23
  execute: async (args, llmClient) => {
24
24
  const agent = new SubAgent(llmClient, 'powerpoint', POWERPOINT_TOOLS, POWERPOINT_SYSTEM_PROMPT, {
25
- maxIterations: 200,
25
+ maxIterations: 300,
26
26
  planningPrompt: POWERPOINT_PLANNING_PROMPT,
27
27
  enhancementPrompt: POWERPOINT_ENHANCEMENT_PROMPT,
28
28
  minToolCallsBeforeComplete: 80,
@@ -21,7 +21,7 @@ export function createWordModifyRequestTool() {
21
21
  },
22
22
  },
23
23
  execute: async (args, llmClient) => {
24
- const agent = new SubAgent(llmClient, 'word', WORD_TOOLS, WORD_SYSTEM_PROMPT, { maxIterations: 50, planningPrompt: WORD_PLANNING_PROMPT, enhancementPrompt: WORD_ENHANCEMENT_PROMPT });
24
+ const agent = new SubAgent(llmClient, 'word', WORD_TOOLS, WORD_SYSTEM_PROMPT, { maxIterations: 75, planningPrompt: WORD_PLANNING_PROMPT, enhancementPrompt: WORD_ENHANCEMENT_PROMPT });
25
25
  return agent.run(args['instruction']);
26
26
  },
27
27
  categories: ['llm-agent'],
@@ -22,7 +22,7 @@ export function createWordCreateRequestTool() {
22
22
  },
23
23
  execute: async (args, llmClient) => {
24
24
  const agent = new SubAgent(llmClient, 'word-create', WORD_CREATE_TOOLS, WORD_CREATE_SYSTEM_PROMPT, {
25
- maxIterations: 55,
25
+ maxIterations: 82,
26
26
  planningPrompt: WORD_CREATE_PLANNING_PROMPT,
27
27
  enhancementPrompt: WORD_CREATE_ENHANCEMENT_PROMPT,
28
28
  minToolCallsBeforeComplete: 25,
@@ -7,7 +7,7 @@ export declare const PROJECTS_DIR: string;
7
7
  export declare const CREDENTIALS_FILE_PATH: string;
8
8
  export declare const APP_NAME = "hanseol-dev";
9
9
  export declare const SERVICE_ID = "hanseol";
10
- export declare const APP_VERSION = "5.0.3-dev.78";
10
+ export declare const APP_VERSION = "5.0.3-dev.79";
11
11
  export declare const DASHBOARD_URL = "https://52.78.246.50.nip.io";
12
12
  export declare const ONCE_URL = "https://52.78.246.50.nip.io:5090";
13
13
  export declare const FREE_URL = "https://52.78.246.50.nip.io:6090";
package/dist/constants.js CHANGED
@@ -9,7 +9,7 @@ export const PROJECTS_DIR = path.join(LOCAL_HOME_DIR, 'projects');
9
9
  export const CREDENTIALS_FILE_PATH = path.join(LOCAL_HOME_DIR, 'credentials.json');
10
10
  export const APP_NAME = 'hanseol-dev';
11
11
  export const SERVICE_ID = 'hanseol';
12
- export const APP_VERSION = '5.0.3-dev.78';
12
+ export const APP_VERSION = '5.0.3-dev.79';
13
13
  export const DASHBOARD_URL = 'https://52.78.246.50.nip.io';
14
14
  export const ONCE_URL = 'https://52.78.246.50.nip.io:5090';
15
15
  export const FREE_URL = 'https://52.78.246.50.nip.io:6090';
@@ -2321,7 +2321,7 @@ for ($s=1; $s -le $sheetCount; $s++) {
2321
2321
  $cellA = $ws.Cells.Item($r, 1).Text
2322
2322
  if ([string]::IsNullOrWhiteSpace($cellA)) { $emptyCount++ }
2323
2323
  }
2324
- if ($emptyCount -gt 1) { $issues += "Sheet '$sn' has $emptyCount empty rows in column A. Fill all data rows — no gaps allowed." }
2324
+ if ($emptyCount -gt 3) { $issues += "Sheet '$sn' has $emptyCount empty rows in column A. Fill all data rows — no gaps allowed." }
2325
2325
  } catch { $issues += "Sheet '$sn' appears empty. Build data with excel_build_data_sheet." }
2326
2326
  try {
2327
2327
  $charts = $ws.ChartObjects().Count
@@ -2330,7 +2330,7 @@ for ($s=1; $s -le $sheetCount; $s++) {
2330
2330
  try {
2331
2331
  $cfCount = $ws.UsedRange.FormatConditions.Count
2332
2332
  if ($cfCount -eq 0) { $issues += "Sheet '$sn' has no conditional formatting. Call excel_build_conditional_format with rule_type cellValue AND colorScale." }
2333
- elseif ($cfCount -lt 2) { $issues += "Sheet '$sn' has only $cfCount conditional format rule(s). Need at least 2: call excel_build_conditional_format again (rule_type cellValue + colorScale)." }
2333
+ elseif ($cfCount -lt 1) { $issues += "Sheet '$sn' has only $cfCount conditional format rule(s). Need at least 1: call excel_build_conditional_format (rule_type cellValue or colorScale)." }
2334
2334
  } catch { $issues += "Sheet '$sn' has no conditional formatting. Call excel_build_conditional_format with rule_type cellValue AND colorScale." }
2335
2335
  }
2336
2336
  @{ success = $true; valid = ($issues.Count -eq 0); issues = $issues } | ConvertTo-Json -Compress
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hanseol-dev",
3
- "version": "5.0.3-dev.78",
3
+ "version": "5.0.3-dev.79",
4
4
  "description": "Hanseol - OpenAI-Compatible Coding Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",