entrypoint: write startup-tasks marker on every pod boot - #11
Merged
Conversation
codex-prodromou
approved these changes
May 7, 2026
codex-prodromou
left a comment
Collaborator
There was a problem hiding this comment.
Approved. The entrypoint writes the startup-tasks marker deterministically, supports multiline STARTUP_TASKS overrides, and the companion agent-config startup-task instruction has already merged. Build matrix is green.
Pod-startup handoff to the LLM. On every boot the entrypoint writes
${AGENT_CONFIG_DIR}/startup-tasks containing /cross-agent-review by
default. Per the new "Startup Tasks" section of agent-config's
CLAUDE.md/AGENTS.md, the agent reads this file at the start of every
session and runs the listed slash-commands before doing anything else.
The file is not truncated after execution — every session re-runs
the tasks. cross-agent-review is idempotent and picks up new ball-in-
court items each time, so re-running each session is the point.
Override per-deploy: set STARTUP_TASKS in the pod env (multi-line ok).
To opt out: set STARTUP_TASKS to a single comment line, e.g. "# disabled".
Companion change in nprodromou/agent-config adds the LLM-side
instructions that read this file.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
nprodromou
force-pushed
the
ops/startup-tasks-marker
branch
from
May 26, 2026 06:55
116d346 to
f1e19f8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pod-startup handoff to the LLM. On every boot, entrypoint writes
${AGENT_CONFIG_DIR}/startup-taskscontaining/cross-agent-reviewby default. Per the new "Startup Tasks" section in agent-config's CLAUDE.md (companion PR), the agent reads this file at the start of every session and runs the listed slash-commands before doing anything else.Behavior
/cross-agent-review— idempotent skill that picks up new ball-in-court items each invocation.STARTUP_TASKSin pod env (multi-line OK).STARTUP_TASKS="# disabled".Pairs with
nprodromou/agent-config#<TBD>— adds the LLM-side instruction to read this file.Test plan
cat ~/.codex/startup-tasksinside the pod shows/cross-agent-reviewSTARTUP_TASKS="# disabled"env override produces a file with only the comment line