AGENTS: point internal docs paths to /internal#2415
AGENTS: point internal docs paths to /internal#2415
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
WalkthroughAGENTS.md documentation table updated to restructure contributor information paths. A Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Leaving this as Draft so it merges after #2414 (which introduces the internal paths). |
Greptile SummaryUpdates the project structure table in Major issues:
Confidence Score: 2/5
Important Files Changed
Last reviewed commit: daf5763 |
| | `internal/contributor-info/` | Internal contributor docs (not published to website) | | ||
| | `internal/planning/` | Internal planning docs, drafts, and historical analysis | | ||
| | `internal/react_on_rails_pro/contributors-info/` | Internal Pro contributor docs (not published to website) | |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@AGENTS.md`:
- Around line 89-91: The AGENTS.md lines list internal directories
(`internal/contributor-info/`, `internal/planning/`,
`internal/react_on_rails_pro/contributors-info/`) that do not exist; either
remove these entries from AGENTS.md or complete the planned reorganization and
update all references to the old path (`docs/contributor-info/`) across the repo
(e.g., CONTRIBUTING.md, SUMMARY.md, react_on_rails_pro/CONTRIBUTING.md) so they
point to the new directories; pick one approach, then ensure AGENTS.md
accurately reflects the actual directory structure and commit the corresponding
moves/renames or deletions.
🧹 Nitpick comments (1)
AGENTS.md (1)
89-91: Minor naming inconsistency in directory paths.The paths use inconsistent naming conventions:
- Line 89:
internal/contributor-info/(singular)- Line 91:
internal/react_on_rails_pro/contributors-info/(plural with "s")Consider standardizing to either
contributor-infoorcontributors-infothroughout for consistency, though this may depend on the actual directory names from PR#2414.
| | `internal/contributor-info/` | Internal contributor docs (not published to website) | | ||
| | `internal/planning/` | Internal planning docs, drafts, and historical analysis | | ||
| | `internal/react_on_rails_pro/contributors-info/` | Internal Pro contributor docs (not published to website) | |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify that the new internal directories exist
echo "Checking if new directories exist..."
for dir in "internal/contributor-info" "internal/planning" "internal/react_on_rails_pro/contributors-info"; do
if [ -d "$dir" ]; then
echo "✓ $dir exists"
else
echo "✗ $dir NOT FOUND"
fi
done
echo ""
echo "Checking for any remaining references to old path..."
rg -n "docs/contributor-info" --type md
echo ""
echo "Checking all directory references in the codebase..."
rg -n "contributor-info|contributors-info" --type md -A 2 | head -50Repository: shakacode/react_on_rails
Length of output: 7375
Remove entries documenting non-existent directories or confirm the planned directory reorganization has been implemented.
The verification found that all three new internal directories referenced in these lines do not exist in the repository:
internal/contributor-info/internal/planning/internal/react_on_rails_pro/contributors-info/
Additionally, the old docs/contributor-info/ path still exists and remains referenced throughout the codebase in CONTRIBUTING.md, SUMMARY.md, react_on_rails_pro/CONTRIBUTING.md, and other files. Either these entries should be removed from AGENTS.md if they document a future plan not yet implemented, or the directory reorganization must be fully completed (including moving content and updating all references) before documenting them as the current structure.
🤖 Prompt for AI Agents
In `@AGENTS.md` around lines 89 - 91, The AGENTS.md lines list internal
directories (`internal/contributor-info/`, `internal/planning/`,
`internal/react_on_rails_pro/contributors-info/`) that do not exist; either
remove these entries from AGENTS.md or complete the planned reorganization and
update all references to the old path (`docs/contributor-info/`) across the repo
(e.g., CONTRIBUTING.md, SUMMARY.md, react_on_rails_pro/CONTRIBUTING.md) so they
point to the new directories; pick one approach, then ensure AGENTS.md
accurately reflects the actual directory structure and commit the corresponding
moves/renames or deletions.
Summary
internal/docs/contributor-info/entry with:internal/contributor-info/internal/planning/internal/react_on_rails_pro/contributors-info/Why
Scope
AGENTS.mdonlyNotes
Summary by CodeRabbit