Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d2baec6
feat: update recommendations with evidence-based priorities from 2025…
natifridman May 3, 2026
fab0433
style: apply black formatting to new and modified files
natifridman May 3, 2026
5d78cd8
fix: address CodeRabbit review findings on PR #382
natifridman May 3, 2026
0d5f6cd
fix: complete backward-compat migration for renamed attribute IDs and…
natifridman May 3, 2026
4da6982
fix: address PR #382 review findings — harden assessors and add missi…
natifridman May 3, 2026
a7b00a4
feat: add industry source fetching to research updater (RSS, sitemaps…
natifridman May 3, 2026
8a6cba7
fix: resolve CodeQL incomplete URL substring sanitization alerts
natifridman May 3, 2026
56f7689
fix: address remaining PR #382 review findings
natifridman May 3, 2026
ee3b0a6
fix: address final PR #382 review findings — scoring gates, pattern s…
natifridman May 3, 2026
3bb1622
fix: address remaining open PR #382 review comments
natifridman May 3, 2026
0ea562b
fix: address final open PR #382 review comments
natifridman May 3, 2026
2400911
fix: align docs/attributes.md tier model with default-weights.yaml
natifridman May 3, 2026
dcde1ab
fix: tighten single-file verification, fix CodeQL findings, align docs
natifridman May 4, 2026
ae7f693
fix: black formatting for test_research_updater.py
natifridman May 4, 2026
9a9e9a6
fix: use HTTPS for ArXiv API, validate sitemap origins, remove placeh…
natifridman May 4, 2026
978a4a8
fix: require PR triggers for ci_quality_gates, runner for test_execut…
natifridman May 4, 2026
c316c9b
fix: couple gate detection to PR-triggered workflows, add GET fallbac…
natifridman May 4, 2026
9be9fec
fix: guarantee all sampler patterns get slots, use recursive glob for…
natifridman May 4, 2026
e007586
fix: broaden design_intent keywords, remove orphaned SemanticNamingAs…
natifridman May 5, 2026
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
27 changes: 15 additions & 12 deletions scripts/research_config.yaml
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
# Research Update Configuration
# Controls weekly automated updates to agent-ready-codebase-attributes.md
# Controls automated updates to RESEARCH_REPORT.md

update_settings:
# Maximum number of attribute updates per weekly run
# Keeps PRs reviewable and focused
# Maximum number of attribute updates per run
max_updates_per_run: 5

# Minimum Claude-rated relevance score (0.0-1.0)
# Higher = more selective about what gets included
min_citation_quality_score: 0.7

# Only include research from last N months
search_recency_months: 12

# Tier 1 attributes get priority in updates
# These are processed first before other attributes
# Priority attributes — processed first (use section numbers from report)
# Updated in v2.0.0 to reflect evidence-based priorities
priority_attributes:
- "1.1" # CLAUDE.md Configuration Files
- "2.1" # README Structure
- "3.3" # Type Annotations (Static Typing)
- "5.1" # Test Coverage Requirements
- "7.1" # Conventional Commit Messages
- "5.1" # Test Execution & Coverage (highest priority)
- "16.1" # Single-File Verification
- "16.2" # CI Quality Gates
- "1.1" # CLAUDE.md/AGENTS.md Configuration Files
- "3.3" # Type Annotations
- "17.1" # Pattern References

# Search domain preferences
search_domains:
# Prioritized sources (high authority)
prioritized:
- anthropic.com
- code.claude.com
- microsoft.com/research
- research.google
- arxiv.org
- dl.acm.org
- openai.com/research
- github.blog
- martinfowler.com
- thoughtworks.com
- agents.md
- cursor.com
- factory.ai
- best.openssf.org

# Blocked domains (low quality, spam)
blocked:
Expand Down
Loading
Loading