Fix: stale references to renamed/moved code#39
Merged
Conversation
After the modular refactor (hexo-ai#18) and the web visualizer (hexo-ai#19) several references in the docs and one user-facing error message went stale: - docs/configuration.md: env var defaults referenced SIA_META_PROFILE / SIA_TARGET_PROFILE; the real names are SIA_META_AGENT_PROFILE / SIA_TARGET_AGENT_PROFILE (see sia/config.py). - SECURITY.md: bypassPermissions section pointed at util.py, which is now a backward-compat shim; the option is in sia/agent_impls/claude.py. - sia/web/server.py and the README/configuration docs suggested installing a 'sia-agent[web]' extra that does not exist in pyproject.toml — fastapi and uvicorn are already in the base dependencies, so the dashboard is always available. - docs/architecture.md: directory tree still listed util.py as "Agent runner utilities" and pointed at META_AGENT_PROMPT / FEEDBACK_AGENT_PROMPT constants in orchestrator.py; the prompts now live in sia/prompts.py as build_meta_prompt / build_feedback_prompt, and the agent runners are under sia/agent_impls/. No behavior change. ruff check and ruff format --check both pass.
selvamHexo
self-requested a review
June 16, 2026 15:47
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.
After the modular refactor (#18) and the web visualizer (#19) several references in the docs and one user-facing error message went stale:
No behavior change. ruff check and ruff format --check both pass.