Rename CARE agents to descriptive names and add description fields to match agents on Alpha release#58
Open
Rename CARE agents to descriptive names and add description fields to match agents on Alpha release#58
Conversation
NISH1001
requested changes
Apr 1, 2026
Collaborator
NISH1001
left a comment
There was a problem hiding this comment.
Also: akd_ext.agents.data_search namespace should be there.
NISH1001
requested changes
Apr 1, 2026
Collaborator
There was a problem hiding this comment.
akd_ext.agents.data_search.astro.py
Collaborator
There was a problem hiding this comment.
akd_ext.agents.data_search.cmr
Collaborator
There was a problem hiding this comment.
akd_ext.agents.data_search.pds
Collaborator
There was a problem hiding this comment.
akd_ext.agents.code_search
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
Renames all CARE agents from internal naming conventions (e.g.,
CMRCareAgent,AstroSearchAgent,PDSSearchAgent) to more descriptive, user-facing names (e.g.,CMRDataSearchAgent,AstroDataSearchAgent,PlanetaryDataSearchAgent) reflecting the ones in akd-alpha. Also addsCodeSearchAgentto the public API and includes new tests for it.What it does
AstroSearchAgent→AstroDataSearchAgentCMRCareAgent→CMRDataSearchAgentPDSSearchAgent→PlanetaryDataSearchAgentCodeSearchAgent(newly exported)printstatements withlogurulogger in agent__main__blocks.CONTRIBUTING.md,HUMAN-IN-THE-LOOP.md) and tests to use the new names.How it does this
astro_search_care.py,cmr_care.py,pds_search_care.py,code_search_care.py).CodeSearchAgentto the public API (__all__).Testing
CodeSearchAgent.uv run pytest ./tests/agents/.