@valescoagency/runway 0.5.0 → 0.7.0

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.
Files changed (42) hide show
  1. package/README.md +9 -1
  2. package/dist/commands/doctor.js +67 -631
  3. package/dist/commands/init.js +2 -311
  4. package/dist/commands/upgrade-repo.js +2 -251
  5. package/dist/config.js +5 -0
  6. package/dist/diagnostics/base-branch.js +45 -0
  7. package/dist/diagnostics/claude-auth-mode.js +51 -0
  8. package/dist/diagnostics/docker-image.js +119 -0
  9. package/dist/diagnostics/docker.js +40 -0
  10. package/dist/diagnostics/gh.js +51 -0
  11. package/dist/diagnostics/git-state.js +73 -0
  12. package/dist/diagnostics/git.js +9 -0
  13. package/dist/diagnostics/index.js +180 -0
  14. package/dist/diagnostics/linear-api-key.js +14 -0
  15. package/dist/diagnostics/linear-config.js +133 -0
  16. package/dist/diagnostics/linear-scope.js +25 -0
  17. package/dist/diagnostics/node.js +18 -0
  18. package/dist/diagnostics/op-token.js +14 -0
  19. package/dist/diagnostics/op.js +9 -0
  20. package/dist/diagnostics/policy.js +35 -0
  21. package/dist/diagnostics/render.js +69 -0
  22. package/dist/diagnostics/runway-scaffold.js +31 -0
  23. package/dist/diagnostics/varlock.js +9 -0
  24. package/dist/finalize.js +35 -0
  25. package/dist/git.js +78 -0
  26. package/dist/hitl.js +104 -0
  27. package/dist/implement.js +155 -0
  28. package/dist/linear.js +58 -1
  29. package/dist/orchestrator.js +67 -391
  30. package/dist/policy.js +0 -11
  31. package/dist/prompts.js +115 -54
  32. package/dist/repo-upgrade.js +268 -0
  33. package/dist/review.js +82 -0
  34. package/dist/sandcastle.js +60 -0
  35. package/dist/scaffolder-dockerfile.js +27 -0
  36. package/dist/scaffolder-image.js +26 -0
  37. package/dist/scaffolder-preflight.js +66 -0
  38. package/dist/scaffolder-varlock.js +67 -0
  39. package/dist/scaffolder-verify.js +102 -0
  40. package/dist/scaffolder.js +54 -0
  41. package/package.json +11 -11
  42. package/prompts/implement.md +2 -0
package/README.md CHANGED
@@ -172,6 +172,14 @@ export LINEAR_API_KEY=lin_api_...
172
172
  # export RUNWAY_IN_REVIEW_STATUS="In Review"
173
173
  # export RUNWAY_HITL_LABEL="ready-for-human"
174
174
  # export RUNWAY_MAX_ITERATIONS=5
175
+ # export RUNWAY_COMMENT_AUTHOR_ALLOWLIST="Reviewer Bot,Jane Reviewer"
176
+ # optional, comma-separated Linear user names whose comments on a
177
+ # re-queued issue surface as "Review feedback from prior attempts"
178
+ # in the implement prompt. Defaults to the Linear user the API key
179
+ # authenticates as (which is both the reviewer-agent's identity
180
+ # and, in the solo-dev case, the repo owner). Set this only when
181
+ # the reviewer agent and the repo owner are split across distinct
182
+ # Linear identities.
175
183
  ```
176
184
 
177
185
  `RUNWAY_HITL_LABEL` defaults to `ready-for-human`, matching the
@@ -384,7 +392,7 @@ These are tractable, just not v1.
384
392
 
385
393
  ## Status
386
394
 
387
- 0.5.0 — production-shaped and dogfooded against live Linear queues.
395
+ 0.6.0 — production-shaped and dogfooded against live Linear queues.
388
396
  The end-to-end pipeline (init → run → review → PR) is stable; surface
389
397
  may still shift as the orchestrator's policy and iteration mechanics
390
398
  mature. See [CHANGELOG.md](./CHANGELOG.md) for per-release detail.