fix: Migrate gardener-run.sh to SDK + pr-lifecycle (#801)
Reuse build_prompt_footer() from formula-session.sh instead of hand-rolling the API reference and environment sections. Replace the phase protocol section with SDK completion protocol. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
5adf34e695
commit
6ab1aeb17c
1 changed files with 5 additions and 15 deletions
|
|
@ -92,21 +92,11 @@ Supported actions:
|
||||||
The commit-and-pr step converts JSONL to JSON array. The orchestrator executes
|
The commit-and-pr step converts JSONL to JSON array. The orchestrator executes
|
||||||
actions after the PR merges. Do NOT call mutation APIs directly during the run."
|
actions after the PR merges. Do NOT call mutation APIs directly during the run."
|
||||||
|
|
||||||
PROMPT_FOOTER="## Forge API reference
|
# Reuse shared footer (API reference + environment), replace phase protocol
|
||||||
Base URL: ${FORGE_API}
|
# shellcheck disable=SC2034 # consumed by build_prompt_footer
|
||||||
Auth header: -H \"Authorization: token \${FORGE_TOKEN}\"
|
PHASE_FILE="" # not used in SDK mode
|
||||||
Read issue: curl -sf -H \"Authorization: token \${FORGE_TOKEN}\" '${FORGE_API}/issues/{number}' | jq '.body'
|
build_prompt_footer "$GARDENER_API_EXTRA"
|
||||||
Create issue: curl -sf -X POST -H \"Authorization: token \${FORGE_TOKEN}\" -H 'Content-Type: application/json' '${FORGE_API}/issues' -d '{\"title\":\"...\",\"body\":\"...\",\"labels\":[LABEL_ID]}'${GARDENER_API_EXTRA}
|
PROMPT_FOOTER="${PROMPT_FOOTER%%## Phase protocol*}## Completion protocol (REQUIRED)
|
||||||
List labels: curl -sf -H \"Authorization: token \${FORGE_TOKEN}\" '${FORGE_API}/labels'
|
|
||||||
NEVER echo or include the actual token value in output — always reference \${FORGE_TOKEN}.
|
|
||||||
|
|
||||||
## Environment
|
|
||||||
FACTORY_ROOT=${FACTORY_ROOT}
|
|
||||||
PROJECT_REPO_ROOT=${PROJECT_REPO_ROOT}
|
|
||||||
OPS_REPO_ROOT=${OPS_REPO_ROOT}
|
|
||||||
PRIMARY_BRANCH=${PRIMARY_BRANCH}
|
|
||||||
|
|
||||||
## Completion protocol (REQUIRED)
|
|
||||||
When the commit-and-pr step creates a PR, write the PR number and stop:
|
When the commit-and-pr step creates a PR, write the PR number and stop:
|
||||||
echo \"\$PR_NUMBER\" > '${GARDENER_PR_FILE}'
|
echo \"\$PR_NUMBER\" > '${GARDENER_PR_FILE}'
|
||||||
Then STOP. Do NOT write PHASE: signals — the orchestrator handles CI, review, and merge.
|
Then STOP. Do NOT write PHASE: signals — the orchestrator handles CI, review, and merge.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue