Add Windows cross-platform support#1
Open
ivandobskygithub wants to merge 1 commit intomalphas-gh:masterfrom
Open
Add Windows cross-platform support#1ivandobskygithub wants to merge 1 commit intomalphas-gh:masterfrom
ivandobskygithub wants to merge 1 commit intomalphas-gh:masterfrom
Conversation
Rewrite task runner from bash to Python for Windows compatibility, add explicit UTF-8 encoding to all file I/O in the loop runner, update PROMPT.md to use `python .project/task` invocations, and add venv activation rule for cross-platform use. Co-Authored-By: Claude Opus 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.
Summary
.project/taskfrom bash to Python for Windows compatibility (bash builtins likesed,awk, process substitution don't work reliably on Windows)encoding="utf-8"to all file I/O in.project/loop(Windows defaults to system encoding, not UTF-8)PROMPT.mdto usepython .project/taskinvocations and add venv activation rule supporting both Windows and Linux/macOS pathsREADME.mdto reflect the Python task runnerTest plan
python .project/task nextreturns the correct next taskpython .project/task listdisplays all task states correctlypython .project/task <ID> progressandpython .project/task <ID> donemanage state transitionspython .project/loop --max 1to confirm the loop runner works with UTF-8 encoding🤖 Generated with Claude Code