-
Notifications
You must be signed in to change notification settings - Fork 7
fix(config): align AGENT_ENGINE env var convention to _ID_ pattern #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -432,7 +432,7 @@ deploy-inline-staging-execute: check-inline-deploy-ready ## MANUAL ONLY: Execute | |
|
|
||
| smoke-bob-agent-engine-dev: ## Run dev smoke test against Bob's Agent Engine instance | ||
| @echo "$(BLUE)🚦 Running Bob Agent Engine dev smoke test...$(NC)" | ||
| @echo "$(YELLOW)ℹ️ Requires AGENT_ENGINE_BOB_DEV to be set after dev deployment$(NC)" | ||
| @echo "$(YELLOW)ℹ️ Requires AGENT_ENGINE_BOB_ID_DEV to be set after dev deployment$(NC)" | ||
| @$(PYTHON) scripts/run_agent_engine_dev_smoke.py | ||
|
Comment on lines
+435
to
+436
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 1. Docs use wrong env var Docs/CHANGELOG still instruct setting BOB_AGENT_ENGINE_NAME_DEV (full resource name), but runtime + Makefile now require AGENT_ENGINE_BOB_ID_DEV (ID only). Users following docs will be “not configured” or may paste a full resource name into an *_ID_* var and produce invalid resource paths. Agent Prompt
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2. Docs cite wrong smoke script Multiple docs/CHANGELOG reference scripts/smoke_test_bob_agent_engine_dev.py, but the Makefile target runs scripts/run_agent_engine_dev_smoke.py. This will break the documented smoke workflow and create confusion about which script is canonical. Agent Prompt
|
||
| @echo "" | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While the
run_agent_engine_dev_smoke.pyscript defaults to agentbob, it's more explicit and robust to specify the agent directly in thismaketarget. Thesmoke-bob-agent-engine-devtarget is specifically for 'bob', and relying on the script's default creates a tight coupling. If the script's default ever changes, this target would silently start testing a different agent. Explicitly passing--agent bobmakes the Makefile's intent clear and independent of the script's internal defaults.