fss-link 1.2.22 → 1.2.24

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/bundle/fss-link.js +15 -12
  2. package/package.json +1 -1
@@ -22371,7 +22371,7 @@ async function createContentGeneratorConfig(config, authType) {
22371
22371
  async function createContentGenerator(config, gcConfig, sessionId2) {
22372
22372
  if (DEBUG_CONTENT)
22373
22373
  console.log(`\u{1F41B} DEBUG createContentGenerator: authType=${config.authType}, apiKey=${config.apiKey}, baseUrl=${config.baseUrl}`);
22374
- const version = "1.2.22";
22374
+ const version = "1.2.24";
22375
22375
  const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
22376
22376
  const baseHeaders = {
22377
22377
  "User-Agent": userAgent
@@ -69326,7 +69326,7 @@ IMPORTANT: Always use the ${TodoWriteTool.Name} tool to plan and track tasks thr
69326
69326
 
69327
69327
  **Use dedicated tools for:**
69328
69328
  - File reading: '${ReadFileTool.Name}', '${ReadManyFilesTool.Name}' (NOT cat/head/tail)
69329
- - *Why*: Curated display with line numbers, user-friendly formatting, optional metadata
69329
+ - *Why*: Curated display with line numbers, user-friendly formatting, optional metadata. When editing, extract only the actual code (ignore line number prefixes).
69330
69330
  - File searching: '${GlobTool.Name}' (NOT find/ls)
69331
69331
  - *Why*: Enhanced results with icons, grouping, git-ignore awareness
69332
69332
  - Content searching: '${GrepTool.Name}' (NOT bash grep/rg)
@@ -69520,7 +69520,7 @@ tests/test_auth.py
69520
69520
  </tool_call>
69521
69521
  <tool_call>
69522
69522
  <function=read_file>
69523
- <parameter=path>
69523
+ <parameter=absolute_path>
69524
69524
  /path/to/tests/test_auth.py
69525
69525
  </parameter>
69526
69526
  <parameter=offset>
@@ -69536,7 +69536,7 @@ Great, 'tests/test_auth.py' exists and covers the core authentication logic. Wit
69536
69536
  I'll also confirm 'requests' is a dependency.
69537
69537
  <tool_call>
69538
69538
  <function=read_file>
69539
- <parameter=path>
69539
+ <parameter=absolute_path>
69540
69540
  /path/to/requirements.txt
69541
69541
  </parameter>
69542
69542
  </function>
@@ -69552,13 +69552,13 @@ Here's the plan:
69552
69552
 
69553
69553
  <tool_call>
69554
69554
  <function=replace>
69555
- <parameter=path>
69556
- src/auth.py
69555
+ <parameter=file_path>
69556
+ /path/to/src/auth.py
69557
69557
  </parameter>
69558
- <parameter=old_content>
69558
+ <parameter=old_string>
69559
69559
  (old code content)
69560
69560
  </parameter>
69561
- <parameter=new_content>
69561
+ <parameter name="new_string">
69562
69562
  (new code content)
69563
69563
  </parameter>
69564
69564
  </function>
@@ -69587,7 +69587,7 @@ model:
69587
69587
  Okay, I can write those tests. First, I'll read someFile.ts to understand its functionality.
69588
69588
  <tool_call>
69589
69589
  <function=read_file>
69590
- <parameter=path>
69590
+ <parameter=absolute_path>
69591
69591
  /path/to/someFile.ts
69592
69592
  </parameter>
69593
69593
  </function>
@@ -69599,9 +69599,12 @@ Now I'll look for existing or related test files to understand current testing c
69599
69599
  (After reviewing existing tests and the file content)
69600
69600
  <tool_call>
69601
69601
  <function=write_file>
69602
- <parameter=path>
69602
+ <parameter=file_path>
69603
69603
  /path/to/someFile.test.ts
69604
69604
  </parameter>
69605
+ <parameter=content>
69606
+ (test content here)
69607
+ </parameter>
69605
69608
  </function>
69606
69609
  </tool_call>
69607
69610
  I've written the tests. Now I'll run the project's test command to verify them.
@@ -95583,7 +95586,7 @@ async function getPackageJson() {
95583
95586
  // packages/cli/src/utils/version.ts
95584
95587
  async function getCliVersion() {
95585
95588
  const pkgJson = await getPackageJson();
95586
- return "1.2.22";
95589
+ return "1.2.24";
95587
95590
  }
95588
95591
 
95589
95592
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -95635,7 +95638,7 @@ import open4 from "open";
95635
95638
  import process11 from "node:process";
95636
95639
 
95637
95640
  // packages/cli/src/generated/git-commit.ts
95638
- var GIT_COMMIT_INFO = "01c4caed";
95641
+ var GIT_COMMIT_INFO = "ceabf39e";
95639
95642
 
95640
95643
  // packages/cli/src/ui/commands/bugCommand.ts
95641
95644
  init_dist2();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fss-link",
3
- "version": "1.2.22",
3
+ "version": "1.2.24",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },