anymous 1.2.2 → 1.2.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "anymous",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "AI-powered reverse engineering platform",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -171,7 +171,7 @@ function draw(
171
171
  }
172
172
  }
173
173
 
174
- const VERSION = "1.2.2"
174
+ const VERSION = "1.2.3"
175
175
 
176
176
  function build(input: SplashWriterInput, kind: "entry" | "exit", ctx: ScrollbackRenderContext): ScrollbackSnapshot {
177
177
  const width = Math.max(1, ctx.width)
package/src/cli/ui.ts CHANGED
@@ -54,7 +54,7 @@ export function logo(pad?: string) {
54
54
  result.push(row)
55
55
  result.push(EOL)
56
56
  }
57
- result.push("AI-Powered Reverse Engineering & Pentest Platform v1.2.2")
57
+ result.push("AI-Powered Reverse Engineering & Pentest Platform v1.2.3")
58
58
  return result.join("")
59
59
  }
60
60
 
@@ -11,7 +11,14 @@ Available actions:
11
11
  - scroll (clicks): Scroll up (positive number) or down (negative number)
12
12
  - screensize: Get screen dimensions
13
13
 
14
- Tip: To open a URL: keypress ["ctrl","l"] → type the URL (use delayMs if page is slow) → keypress ["enter"].
14
+ IMPORTANT To navigate to a URL in a browser:
15
+ 1. First screenshot to see current state
16
+ 2. If browser is closed, open it first via shell (Start-Process or xdg-open)
17
+ 3. Open a NEW TAB: keypress ["ctrl","t"]
18
+ 4. Wait briefly (1-2s), then type the full URL (e.g. "https://google.com")
19
+ 5. keypress ["enter"]
20
+
21
+ NEVER open the browser directly with a URL argument — always use a new tab (ctrl+t) instead. Do NOT use ctrl+l (address bar focus on current page) unless you specifically want to replace the current page's URL.
15
22
 
16
23
  Coordinate system: (0,0) is top-left corner of primary screen. Always get screen dimensions via screensize action first to know the available area.
17
24