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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swellai",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Install claude-parallel workflows, scripts, and agents into any repository",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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=$(bun run src/agents/planning-agent.ts "$ISSUE_TITLE: $ISSUE_BODY")
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=$(bun run src/agents/planning-agent.ts "$ISSUE_TITLE: $ISSUE_BODY")
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=$(bun run src/agents/planning-agent.ts "$ISSUE_TITLE: $ISSUE_BODY")
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
- bun run src/agents/linear-agent.ts
313
+ .github/claude-parallel/scripts/linear-agent.js