@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.
- package/README.md +9 -1
- package/dist/commands/doctor.js +67 -631
- package/dist/commands/init.js +2 -311
- package/dist/commands/upgrade-repo.js +2 -251
- package/dist/config.js +5 -0
- package/dist/diagnostics/base-branch.js +45 -0
- package/dist/diagnostics/claude-auth-mode.js +51 -0
- package/dist/diagnostics/docker-image.js +119 -0
- package/dist/diagnostics/docker.js +40 -0
- package/dist/diagnostics/gh.js +51 -0
- package/dist/diagnostics/git-state.js +73 -0
- package/dist/diagnostics/git.js +9 -0
- package/dist/diagnostics/index.js +180 -0
- package/dist/diagnostics/linear-api-key.js +14 -0
- package/dist/diagnostics/linear-config.js +133 -0
- package/dist/diagnostics/linear-scope.js +25 -0
- package/dist/diagnostics/node.js +18 -0
- package/dist/diagnostics/op-token.js +14 -0
- package/dist/diagnostics/op.js +9 -0
- package/dist/diagnostics/policy.js +35 -0
- package/dist/diagnostics/render.js +69 -0
- package/dist/diagnostics/runway-scaffold.js +31 -0
- package/dist/diagnostics/varlock.js +9 -0
- package/dist/finalize.js +35 -0
- package/dist/git.js +78 -0
- package/dist/hitl.js +104 -0
- package/dist/implement.js +155 -0
- package/dist/linear.js +58 -1
- package/dist/orchestrator.js +67 -391
- package/dist/policy.js +0 -11
- package/dist/prompts.js +115 -54
- package/dist/repo-upgrade.js +268 -0
- package/dist/review.js +82 -0
- package/dist/sandcastle.js +60 -0
- package/dist/scaffolder-dockerfile.js +27 -0
- package/dist/scaffolder-image.js +26 -0
- package/dist/scaffolder-preflight.js +66 -0
- package/dist/scaffolder-varlock.js +67 -0
- package/dist/scaffolder-verify.js +102 -0
- package/dist/scaffolder.js +54 -0
- package/package.json +11 -11
- 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.
|
|
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.
|