@kody-ade/kody-engine-lite 0.1.89 → 0.1.90

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": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -99,8 +99,9 @@ jobs:
99
99
  - name: Parse inputs
100
100
  if: steps.safety.outputs.valid == 'true'
101
101
  id: parse
102
+ env:
103
+ BODY: ${{ github.event.comment.body }}
102
104
  run: |
103
- BODY="${{ github.event.comment.body }}"
104
105
  # Extract: @kody [mode] [task-id] [--from stage]
105
106
  KODY_ARGS=$(echo "$BODY" | grep -oP '(?:@kody|/kody)\s+\K.*' || echo "")
106
107
  MODE=$(echo "$KODY_ARGS" | awk '{print $1}')