swellai 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -231,6 +231,7 @@ jobs:
|
|
|
231
231
|
--cwd "$(pwd)" \
|
|
232
232
|
--model ${{ inputs.claude_model || 'claude-opus-4-5-20251101' }} \
|
|
233
233
|
--mode implementation \
|
|
234
|
+
--pathToClaudeCodeExecutable "$HOME/.local/bin/claude" \
|
|
234
235
|
> result.json 2> error.log
|
|
235
236
|
RUNNER_EXIT=$?
|
|
236
237
|
set -e
|
|
@@ -403,6 +404,7 @@ jobs:
|
|
|
403
404
|
--cwd "$(pwd)" \
|
|
404
405
|
--model ${{ inputs.claude_model || 'claude-opus-4-5-20251101' }} \
|
|
405
406
|
--mode review \
|
|
407
|
+
--pathToClaudeCodeExecutable "$HOME/.local/bin/claude" \
|
|
406
408
|
> review-result.json 2> review-error.log || true
|
|
407
409
|
|
|
408
410
|
cat review-result.json
|
|
@@ -832,6 +834,7 @@ jobs:
|
|
|
832
834
|
--cwd "$(pwd)" \
|
|
833
835
|
--model ${{ inputs.claude_model || 'claude-opus-4-5-20251101' }} \
|
|
834
836
|
--mode implementation \
|
|
837
|
+
--pathToClaudeCodeExecutable "$HOME/.local/bin/claude" \
|
|
835
838
|
> verify-result.json 2> verify-error.log || true
|
|
836
839
|
|
|
837
840
|
cat verify-result.json
|