@f5-sales-demo/xcsh 19.97.1 → 19.98.0

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5-sales-demo/xcsh",
4
- "version": "19.97.1",
4
+ "version": "19.98.0",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -57,13 +57,13 @@
57
57
  "dependencies": {
58
58
  "@agentclientprotocol/sdk": "1.3.0",
59
59
  "@mozilla/readability": "^0.6",
60
- "@f5-sales-demo/xcsh-stats": "19.97.1",
61
- "@f5-sales-demo/pi-agent-core": "19.97.1",
62
- "@f5-sales-demo/pi-ai": "19.97.1",
63
- "@f5-sales-demo/pi-natives": "19.97.1",
64
- "@f5-sales-demo/pi-resource-management": "19.97.1",
65
- "@f5-sales-demo/pi-tui": "19.97.1",
66
- "@f5-sales-demo/pi-utils": "19.97.1",
60
+ "@f5-sales-demo/xcsh-stats": "19.98.0",
61
+ "@f5-sales-demo/pi-agent-core": "19.98.0",
62
+ "@f5-sales-demo/pi-ai": "19.98.0",
63
+ "@f5-sales-demo/pi-natives": "19.98.0",
64
+ "@f5-sales-demo/pi-resource-management": "19.98.0",
65
+ "@f5-sales-demo/pi-tui": "19.98.0",
66
+ "@f5-sales-demo/pi-utils": "19.98.0",
67
67
  "@sinclair/typebox": "^0.34",
68
68
  "@xterm/headless": "^6.0",
69
69
  "ajv": "^8.20",
@@ -124,6 +124,7 @@ TOOLS: Discover the workbook before you answer, then reach for the tool that mat
124
124
  - Use \`read_table\` for structured Excel Tables (it tracks the real extent), \`get_formulas\` to see the formulas behind cells, \`get_cell_metadata\` for cell types/number formats, and \`read_named_range\` to read a defined name.
125
125
  - Use \`sort_filter_table\` to sort or filter a Table by column.
126
126
  - Use \`read_range\`/\`write_range\` for arbitrary cell ranges (bare or sheet-qualified like Sheet2!A1:B10), and \`list_sheets\` when you only need the tab names.
127
+ - Use \`write_cells\` to fill a formatted template: it takes many single \`{address, value}\` pairs and applies them in one batch, which is what merged cells need (only the top-left of a merge may be written, so a range write fails). Prefer it over a loop of \`write_range\` calls whenever you are placing more than a handful of individual values.
127
128
  - Use \`add_sheet\` to build a report on its own tab instead of overwriting the user's data. It is idempotent — an existing tab of that name is reused — so add first, then \`write_range\` block by block, and do not read the sheet back to confirm.
128
129
  ${OFFICE_NATIVE_TOOLS_NOTE}
129
130
 
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "19.97.1",
21
- "commit": "bb8c5cea72d141b692b79b48ad8510551c8253c8",
22
- "shortCommit": "bb8c5ce",
20
+ "version": "19.98.0",
21
+ "commit": "d99a5b00bc90410ad18f66eec44f064823087740",
22
+ "shortCommit": "d99a5b0",
23
23
  "branch": "main",
24
- "tag": "v19.97.1",
25
- "commitDate": "2026-07-27T23:09:46Z",
26
- "buildDate": "2026-07-27T23:34:29.331Z",
24
+ "tag": "v19.98.0",
25
+ "commitDate": "2026-07-28T00:35:02Z",
26
+ "buildDate": "2026-07-28T01:00:25.712Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5-sales-demo/xcsh",
30
30
  "repoSlug": "f5-sales-demo/xcsh",
31
- "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/bb8c5cea72d141b692b79b48ad8510551c8253c8",
32
- "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.97.1"
31
+ "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/d99a5b00bc90410ad18f66eec44f064823087740",
32
+ "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.98.0"
33
33
  };