Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
box runs, with its allow rules and the backfill). `WINDOWS_SCHEDULING.md` gains the
section; `SYNCING.md` notes that `_raw/tradingview/` rides under the existing `_raw`
exclusion. Docs only; the producer itself is in marketdata 0.3.0.
- **`series-routine.md` invokes the wrapper as `cmd //c`**, doubled slash: the routine's
Bash tool is Git Bash, which rewrites a lone `/c` into a Windows path before cmd sees
it. Found on the first supervised run, which wrote all eleven raw files correctly and
then failed at the wrapper with `'ode' is not recognized`.

### Removed — BREAKING

Expand Down
10 changes: 7 additions & 3 deletions docs/examples/windows/series-routine.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ while sessions have printed `mcp__<connector-id>__<tool>`; an unmatched rule is
"mcp__claude_ai_TradingView__mcp-tv-get-ohlcv",
"Edit(marketdata_store/_raw/tradingview/**)",
"Edit(/c/Users/you/code/marketdata_store/_raw/tradingview/**)",
"Bash(cmd /c \"C:/Users/you/code/cotdata/scheduler/run-series.cmd\")"
"Bash(cmd //c \"C:/Users/you/code/cotdata/scheduler/run-series.cmd\")"
]
}
}
Expand All @@ -66,8 +66,12 @@ Do these in order, and nothing else.
exactly as the tool returned it: no reformatting, no summary, no added or dropped keys, no
rounding. Create the folders if they do not exist. Do not print the result back.
4. **Run the wrapper**, exactly this command and nothing else:
`cmd /c "REPLACE_WITH_SCHEDULER_DIR_FORWARD/run-series.cmd"`
(forward slashes; the allow rule matches this text).
`cmd //c "REPLACE_WITH_SCHEDULER_DIR_FORWARD/run-series.cmd"`
(forward slashes, and the DOUBLED slash before `c` is load-bearing: the Bash tool is
Git Bash, which rewrites a lone `/c` into a Windows path before cmd sees it, so
`cmd /c` arrives mangled and fails with a message like "'ode' is not recognized".
Measured on the first supervised run, 2026-09-17. The allow rule matches this exact
text.)
5. **Report** the wrapper's exit code and the lines the build printed, one per symbol. Then
stop.

Expand Down
Loading