Skip to content

v0.7.1 — Windows PowerShell entry + cleaner output

Choose a tag to compare

@limeflash limeflash released this 10 Jul 14:02

v0.7.1 — Windows PowerShell entry + cleaner output

Added

  • Native Windows PowerShell entry (scripts/agy-run.ps1) for the read-only commands — ask, scrape, doc-to-md — so Windows users without git-bash can use them. Same read-only model (agy runs from a throwaway temp dir), reusing lib/transcript.mjs (capture) and lib/inputguard.mjs (SSRF/path deny-lists); native Windows paths, no cygpath. Validated live on Windows PowerShell 5.1.

    powershell -ExecutionPolicy Bypass -File "<plugin>\scripts\agy-run.ps1" scrape "https://example.com"

Fixed

  • Cleaner output. The transcript extractor now skips agy's intermediate narration (PLANNER_RESPONSE lines that carry a tool_call, e.g. "I will read the file…") and keeps only the final answer. /agy:scrape and /agy:doc-to-md now return just the Markdown; /agy:review drops the "I will start by reviewing…" preamble. Surfaced by dogfooding the new PowerShell doc-to-md.

237 unit tests + CI.