dsh-agy-link 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +17 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2687,6 +2687,7 @@ function presentMirrorCall(args) {
2687
2687
  };
2688
2688
  }
2689
2689
  case "read_file":
2690
+ case "view_file":
2690
2691
  case "read":
2691
2692
  case "open_file": {
2692
2693
  const path = asString(input.path) ?? asString(input.file_path) ?? asString(input.filename) ?? "";
@@ -2705,6 +2706,7 @@ function presentMirrorCall(args) {
2705
2706
  case "glob":
2706
2707
  case "search_files":
2707
2708
  case "search":
2709
+ case "search_file_content":
2708
2710
  case "grep": {
2709
2711
  const q = asString(input.pattern) ?? asString(input.query) ?? asString(input.regex) ?? "";
2710
2712
  return {
@@ -2713,6 +2715,21 @@ function presentMirrorCall(args) {
2713
2715
  kind: "search"
2714
2716
  };
2715
2717
  }
2718
+ case "list_dir":
2719
+ case "ls": {
2720
+ const path = asString(input.path) ?? asString(input.directory) ?? "";
2721
+ return {
2722
+ card: "generic",
2723
+ title: path !== "" ? "List " + path : "List directory"
2724
+ };
2725
+ }
2726
+ case "delete_file":
2727
+ case "remove_file":
2728
+ case "rm": return {
2729
+ card: "generic",
2730
+ title: "Delete " + (asString(input.path) ?? asString(input.file_path) ?? ""),
2731
+ kind: "delete"
2732
+ };
2716
2733
  default: return {
2717
2734
  card: "generic",
2718
2735
  title: name !== "" ? name : "agy tool",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-agy-link",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Google Antigravity (agy CLI) models for DeepSeek Harness — stream Gemini/Claude/GPT-OSS subscriptions into DSH with thinking, tool activity, token usage and in-GUI Google OAuth login.",
5
5
  "type": "module",
6
6
  "license": "MIT",