Uh oh!
There was an error while loading. Please reload this page.
Add codebase navigation to project context skill - #526
Merged
Conversation
Expand project context routing to cover live codebase navigation, add simulation-system and refreshed RL context, and validate the topic registry and adapters.
Greptile SummaryThe PR expands the canonical project-context skill to support live codebase navigation and keeps its adapters and contributor guidance synchronized.
Confidence Score: 5/5The PR appears safe to merge with no concrete blocking or independently actionable non-blocking issues identified. The changed routing documentation, context-map entries, simulation and RL guidance, adapters, and focused validation are internally consistent and align with the inspected source behavior.
|
| Filename | Overview |
|---|---|
| .agents/skills/project-dev-context/SKILL.md | Defines the new navigation operation, source verification, unmatched live-search fallback, and answer contract. |
| agent_context/MAP.yaml | Registers simulation-system, expands RL routing metadata, and links simulation context to related topics. |
| agent_context/topics/simulation-system/simulation-system.md | Adds source-aligned guidance for simulation ownership, lifecycle, configuration, extension sites, and cleanup. |
| agent_context/topics/rl-learning/rl-learning.md | Refreshes RL navigation around CLI/config resolution, environment paths, rollout routing, distributed behavior, examples, and extension points. |
| tests/test_agent_context_map.py | Validates registry schema, path existence, topic references, required operational sections, representative routing ownership, and canonical adapter links. |
| AGENTS.md | Synchronizes repository-level navigation instructions and updates the documented project structure. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Development or navigation request] --> B[Read agent_context/MAP.yaml]
B --> C{Topic matches id, alias, or keyword?}
C -->|Yes: read| D[Load mapped topic paths]
C -->|Yes: navigate| E[Load topic and verify source_of_truth]
C -->|No: navigate| F[Search working tree with rg]
E --> G[Report owner, resolution path, change site, and validation]
F --> G
C -->|Refresh or add| H[Read source and context conventions]
H --> I[Update topic and registry]
Reviews (1): Last reviewed commit: "feat(agent-context): add codebase naviga..." | Re-trigger Greptile
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
Description
This PR expands the canonical project development context skill from explicit context reads and maintenance into live codebase navigation.
It:
navigatemode for locating files, configs, defaults, entry points, registration paths, and recommended change sites;source_of_truthfiles and defines a live-search fallback for unmatched questions;simulation-systemtopic and refreshes therl-learningtopic;This makes common questions such as “where is this configured?” usable without requiring an explicit “reference project context” prompt.
Issue: none.
Dependencies: none.
Type of change
Screenshots
Not applicable; this change has no visual surface.
Validation
black --check --diff --color ./— 667 files unchangedblack .— 667 files unchangedpytest -q tests/test_agent_context_map.py— 8 passedgit diff --checkThe full pytest suite and Sphinx build were not run because runtime code, dependencies, test configuration, and
docs/source/are unchanged.Checklist
black .command to format the code base.