Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Auto-assign reviewers
* @mikejmorgan-ai
cortex/*.py @mikejmorgan-ai
tests/*.py @mikejmorgan-ai
docs/*.md @mikejmorgan-ai
Comment on lines +1 to +5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion | 🟠 Major

Remove redundant path-specific assignments.

The global wildcard pattern on line 2 already assigns @mikejmorgan-ai to all files. Lines 3-5 redundantly assign the same reviewer to specific paths, which violates the DRY principle and adds unnecessary maintenance overhead.

Apply this diff to remove the redundant assignments:

 # Auto-assign reviewers
 * @mikejmorgan-ai
-cortex/*.py @mikejmorgan-ai
-tests/*.py @mikejmorgan-ai
-docs/*.md @mikejmorgan-ai

If you need different reviewers for specific paths in the future, you can add them back at that time.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
# Auto-assign reviewers
* @mikejmorgan-ai
cortex/*.py @mikejmorgan-ai
tests/*.py @mikejmorgan-ai
docs/*.md @mikejmorgan-ai
# Auto-assign reviewers
* @mikejmorgan-ai
🤖 Prompt for AI Agents
.github/CODEOWNERS lines 1-5: the file currently assigns @mikejmorgan-ai
globally with '*' and then redundantly repeats the same reviewer for
cortex/*.py, tests/*.py, and docs/*.md; remove lines 3-5 so only the global
wildcard assignment remains to eliminate duplication and maintenance overhead;
if future path-specific reviewers are needed, add explicit entries then.

15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Summary
<!-- Brief description of changes -->

## Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation update

## Checklist
- [ ] Tests passing
- [ ] Docs updated
- [ ] Fixes #XXX

## Testing
<!-- How was this tested? -->
Loading