diff --git a/package.json b/package.json index 50ec0914..f80c3e56 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gstack", - "version": "0.15.0.0", + "version": "0.15.2.0", "description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.", "license": "MIT", "type": "module", diff --git a/review/SKILL.md b/review/SKILL.md index 9e5c1806..1a925ffc 100644 --- a/review/SKILL.md +++ b/review/SKILL.md @@ -870,10 +870,10 @@ DIFF_LINES=$(git diff origin/ --stat | tail -1 | grep -oE '[0-9]+ insertio echo "DIFF_LINES: $DIFF_LINES" # Detect test framework for specialist test stub generation TEST_FW="" -[ -f jest.config.ts ] || [ -f jest.config.js ] && TEST_FW="jest" +{ [ -f jest.config.ts ] || [ -f jest.config.js ]; } && TEST_FW="jest" [ -f vitest.config.ts ] && TEST_FW="vitest" -[ -f spec/spec_helper.rb ] || [ -f .rspec ] && TEST_FW="rspec" -[ -f pytest.ini ] || [ -f conftest.py ] && TEST_FW="pytest" +{ [ -f spec/spec_helper.rb ] || [ -f .rspec ]; } && TEST_FW="rspec" +{ [ -f pytest.ini ] || [ -f conftest.py ]; } && TEST_FW="pytest" [ -f go.mod ] && TEST_FW="go-test" echo "TEST_FW: ${TEST_FW:-unknown}" ``` diff --git a/scripts/resolvers/review-army.ts b/scripts/resolvers/review-army.ts index ebf9b70b..cb35b9e7 100644 --- a/scripts/resolvers/review-army.ts +++ b/scripts/resolvers/review-army.ts @@ -30,10 +30,10 @@ DIFF_LINES=$(git diff origin/ --stat | tail -1 | grep -oE '[0-9]+ insertio echo "DIFF_LINES: $DIFF_LINES" # Detect test framework for specialist test stub generation TEST_FW="" -[ -f jest.config.ts ] || [ -f jest.config.js ] && TEST_FW="jest" +{ [ -f jest.config.ts ] || [ -f jest.config.js ]; } && TEST_FW="jest" [ -f vitest.config.ts ] && TEST_FW="vitest" -[ -f spec/spec_helper.rb ] || [ -f .rspec ] && TEST_FW="rspec" -[ -f pytest.ini ] || [ -f conftest.py ] && TEST_FW="pytest" +{ [ -f spec/spec_helper.rb ] || [ -f .rspec ]; } && TEST_FW="rspec" +{ [ -f pytest.ini ] || [ -f conftest.py ]; } && TEST_FW="pytest" [ -f go.mod ] && TEST_FW="go-test" echo "TEST_FW: \${TEST_FW:-unknown}" \`\`\`