Conversation
…t Bash, not WSL, is the default) The Windows section warned "WSL required" and "agents will not work without it", but the proven native path on Windows is Git Bash — which ships with Git for Windows, already a hard requirement in step 2. WSL is an optional alternative, not a prerequisite. Reword the check to confirm the bash environment via Git Bash and present WSL as optional, removing the false "won't work without WSL" claim. Windows-only: the entire block is gated by `if (IS_WINDOWS)`; macOS/Linux paths are untouched. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Pase0Pr0p
referenced
this pull request
in Pase0Pr0p/ascendops
Jun 27, 2026
Stack API exposes a Bills resource (GET/POST/PATCH) with full AP fields (vendor, due date, line items, approval status, GL account). Reporting API v2 also exposes aged_payables_summary.json and bill_detail.json. Add: Bill type, BillLineItem, AgedPayablesEntry, ListBillsOptions, listBills()/getBill()/getAgedPayables() to AppFolioConnector interface, createBill() write stub (Max-only, to confirm). Update implementation order to include AP as step 6. Add open question #5 for AP write-gate tier (not publicly documented — confirm at credential-gen). Monitoring priority #4 (utility bills, vendor payments on time) is now addressable once Rob's credentials land, regardless of Plus vs Max tier (read path confirmed available on Plus+add-on). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Reframes the Windows section of
install.mjs(step 6) from a WSL-required check to a bash-environment check.Why
The block warned
WSL (Windows Subsystem for Linux) is requiredandagents will not work without it on Windows. That is inaccurate: the proven native Windows path runs the agent shell scripts (bus/*.sh) under Git Bash, which ships with Git for Windows — and Git is already a hard requirement in step 2 (the installerfail()s without it and directs to git-scm.com /winget install Git.Git, both Git for Windows). So by step 6 the bash environment is already present. WSL is a genuine optional alternative, not a prerequisite.This was field-confirmed: a Windows operator ran 6 agents 24h+ on PowerShell + Git Bash with zero WSL (error paths were
/c/Users/...MSYS/Git-Bash format, not WSL's/mnt/c/).Change
WSL check→bash environmentcommandExists('wsl')true →WSL detected — bash environment availableok(...)confirming Git Bash provides the environment, with WSL presented as optional; removes the falsewarn('agents will not work without it')wslVersionvariableScope / safety
if (IS_WINDOWS)— macOS/Linux paths untouched.node --check install.mjspasses.git diff --stat:install.mjs | 13 insertions(+), 18 deletions(-)— single file.Draft pending review.