swellai 1.0.2 → 1.0.3
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
|
@@ -122,7 +122,7 @@ jobs:
|
|
|
122
122
|
run: |
|
|
123
123
|
# Generate plan - stderr (logs) flows to console, stdout (plan) is captured
|
|
124
124
|
set +e
|
|
125
|
-
PLAN=$(
|
|
125
|
+
PLAN=$(.github/claude-parallel/scripts/planning-agent.js "$ISSUE_TITLE: $ISSUE_BODY")
|
|
126
126
|
EXIT_CODE=$?
|
|
127
127
|
set -e
|
|
128
128
|
|
|
@@ -183,7 +183,7 @@ jobs:
|
|
|
183
183
|
run: |
|
|
184
184
|
# Generate plan - stderr (logs) flows to console, stdout (plan) is captured
|
|
185
185
|
set +e
|
|
186
|
-
PLAN=$(
|
|
186
|
+
PLAN=$(.github/claude-parallel/scripts/planning-agent.js "$ISSUE_TITLE: $ISSUE_BODY")
|
|
187
187
|
EXIT_CODE=$?
|
|
188
188
|
set -e
|
|
189
189
|
|
|
@@ -244,7 +244,7 @@ jobs:
|
|
|
244
244
|
run: |
|
|
245
245
|
# Generate plan - stderr (logs) flows to console, stdout (plan) is captured
|
|
246
246
|
set +e
|
|
247
|
-
PLAN=$(
|
|
247
|
+
PLAN=$(.github/claude-parallel/scripts/planning-agent.js "$ISSUE_TITLE: $ISSUE_BODY")
|
|
248
248
|
EXIT_CODE=$?
|
|
249
249
|
set -e
|
|
250
250
|
|
|
@@ -310,4 +310,4 @@ jobs:
|
|
|
310
310
|
TURSO_AUTH_TOKEN: ${{ secrets.TURSO_AUTH_TOKEN }}
|
|
311
311
|
run: |
|
|
312
312
|
# Run linear agent for consolidation and Linear issue creation
|
|
313
|
-
|
|
313
|
+
.github/claude-parallel/scripts/linear-agent.js
|