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
7 changes: 4 additions & 3 deletions IMPLEMENTATION_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,9 +565,10 @@ priorities.
mutating or ambiguous `hash`, `alias`, `unalias`, `shopt`, and `enable`
forms before later occurrences can inherit a false executable identity; retain only
exact static query grammar and pin native-shell behavior, recursive
wrappers, and executable corpus cases. Fail unmodeled `time`, negation,
coprocess, and current-shell brace-group syntax closed rather than
flattening nested execution into apparent ordinary verb chains.
wrappers, and executable corpus cases. Entries 273-280 pin the mutation
and reserved-form boundaries, including unmodeled `time`, negation,
coprocess, and current-shell brace-group syntax, which fail closed rather
than flattening nested execution into apparent ordinary verb chains.
- [ ] Promote the Bash command-resolution mutation cases into Netclaw's strict
allow/prompt/deny matrix before the downstream approval-fatigue gate.
- [x] Add the separately tested Bash `<<<` here-string redirect slice with
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "v0.3 Bash coprocess form fails closed before nested command",
"input": "coproc git status",
"expected": {
"isUnparseable": true,
"unparseableReasonContains": "reserved execution syntax"
},
"notes": "A coprocess starts asynchronous execution with pipe state that stable v0.3 does not model, so its command body cannot be treated as an ordinary complete command.",
"oracleExpectation": "OutOfScope"
}