WindowsDocumentation Index
Fetch the complete documentation index at: https://docs.trytrellis.app/llms.txt
Use this file to discover all available pages before exploring further.
session-start.py normalizes MSYS / Cygwin / WSL paths. finish-work Step 2 classifies dirty paths instead of aborting on any out-of-scope path. No new migrations.
Enhancements
finish-work Step 2 classifies dirty paths
For dirty paths outside .trellis/workspace/ and .trellis/tasks/, Step 2 classifies into:
| Class | Action |
|---|---|
| Current task | Abort; list files; return to Phase 3.4 to commit |
| Other window | Report and continue Step 3 |
| Indeterminate | Prompt user, route by answer |
prd.md / implement.jsonl / check.jsonl, matches the task’s declared scope, or was edited by the AI in this session.
Synced to 8 copies: packages/cli/src/templates/common/commands/finish-work.md + 5 platform copies (.claude/, .cursor/, .opencode/, .pi/, copilot) + 2 SKILL.md (.agents/, codex/skills/).
Bug Fixes
Windows session-start.py: MSYS / Cygwin / WSL paths
Fixes #226. On Windows, Path(val).resolve() misparses Unix-style cwd values from Git Bash; the hook raises ModuleNotFoundError: common and context injection is skipped.
| Input | Normalized to |
|---|---|
/d/Users/... | D:\Users\... |
/cygdrive/d/... | D:\... |
/mnt/d/... | D:\... |
D:\... / D:/... | unchanged |
session-start.py copies: .claude/, .codex/, .cursor/, templates/shared-hooks/, templates/codex/, templates/copilot/. Non-Windows: early return.