Strixa AI
TopicsSearchPricing
Sign inStart tracking
Strixa AI
TopicsSearchPricing
Sign inStart tracking
S
Intelligence HubEnterprise Workspace
New Tracking
Topics DirectoryTrend AnalysisEvidence PanelSignal FeedTechnical Events
DocumentationAccount
Topics Directory/Code Repository Intelligence
Stage: Expansion

Code Repository Intelligence

Track important changes in Code Repository Intelligence, including capabilities, product updates, adoption signals, risks, and evidence worth continued monitoring.

CODE REPOSITORYTRACKING
Live from /v1/topics/code_repository_intelligence
Timeline
28 events
Signals
20 signal records
Evidence
28 evidence items
Sources
5 sources

HighTrend velocity

3 days agoLatest tracked change

Subscribe to Topic

Signal Feed

Changes worth continued tracking

20 unique signals
  1. pull requestMay 19, 2026, 3:27 AM

    Fix project key encoding for '.' and '@' in cc-connect

    This PR fixes a session lookup bug in cc-connect’s Claude Code integration by adding `.` and `@` to `encodeClaudeProjectKey()` normalization, so generated project keys match Claude Code’s on-disk project directories and `/list` no longer returns empty results for paths such as `.nvm`, `v22.22.2`, or `@anthropic-ai/claude-code`.

    What ChangedThis PR fixes a session lookup bug in cc-connect’s Claude Code integration by adding `.` and `@` to `encodeClaudeProjectKey()` normalization, so generated project keys match Claude Code’s on-disk project directories and `/list` no longer returns empty results for paths such as `.nvm`, `v22.22.2`, or `@anthropic-ai/claude-code`.
    Why It MattersUsers working in repositories or package paths with dots or scoped package names will stop seeing valid projects appear as empty in `/list`, so project sessions are discoverable again without manual cleanup or retries. The fix aligns generated keys with `~/.claude/projects` directory naming by handling `.` and `@`, and operators should continue to watch for other unhandled special characters and any unintended key collisions introduced by broader normalization.
    Final score 81Confidence 981 evidence itemencodeClaudeProjectKeyfindProjectDircc-connect/list endpoint
    Analyze Evidence
  2. pull requestMay 18, 2026, 4:10 PM

    Fix volume metadata date parsing to prevent SDK type errors

    PR #537 fixes `get_volume_file_metadata` in `databricks-solutions/ai-dev-kit` by handling `last_modified` values returned as RFC 7231 HTTP-date strings from `files.get_metadata()`, instead of calling `.isoformat()` directly on a string and crashing.

    What ChangedPR #537 fixes `get_volume_file_metadata` in `databricks-solutions/ai-dev-kit` by handling `last_modified` values returned as RFC 7231 HTTP-date strings from `files.get_metadata()`, instead of calling `.isoformat()` directly on a string and crashing.
    Why It MattersOperators and developers using volume metadata calls can avoid intermittent metadata fetch crashes, so storage automation and sync jobs are less likely to fail when a workspace file returns `last_modified` as a date string instead of a datetime. The returned timestamp format is now aligned with existing `list_volume_files` output, which reduces downstream parsing surprises; monitor for future Databricks SDK changes in `last_modified` shape and any non-HTTP-date formats that increase fallback usage.
    Final score 81Confidence 991 evidence itemget_volume_file_metadatafiles.get_metadatalast_modifiedemail.utils.parsedate_to_datetimeISO 8601Unity Catalog volume files
    Analyze Evidence
  3. pull requestMay 19, 2026, 9:58 AM

    dotnet-test merges smell-detection into test-anti-patterns to remove plugin activation conflict

    Variant C of PR #672 removes `test-smell-detection` as a separate skill and makes `test-anti-patterns` the single smell-audit entry point, moving the smell catalog and four evaluation scenarios into that skill’s suite so plugin-mode activation is no longer split between competing siblings.

    What ChangedVariant C of PR #672 removes `test-smell-detection` as a separate skill and makes `test-anti-patterns` the single smell-audit entry point, moving the smell catalog and four evaluation scenarios into that skill’s suite so plugin-mode activation is no longer split between competing siblings.
    Why It MattersDevelopers and operators running plugin-mode audits should see more reliable activation behavior in dotnet test smell checks, because one overlapping skill was removed and the remaining smell checks now route through a single entry point. Technically, `test-smell-detection` is deleted, its 19-smell catalog is moved under `test-anti-patterns/references`, and its four eval scenarios/fixtures are ported into the `test-anti-patterns` suite; README and `test-quality-auditor` references are also updated to reflect the new canonical skill. This is a breaking change for consumers that explicitly target `test-smell-detection`, so watch for downstream configs/scripts still calling it, and track plugin selection/validation results to confirm no regressions in smell coverage or invocation semantics.
    Final score 80Confidence 961 evidence itemdotnet-testtest-anti-patternstest-smell-detectionplugin-mode activationskill-validator check
    Analyze Evidence
  4. pull requestMay 18, 2026, 10:40 PM

    Add v1 fallback for missing v2 committed checkpoint transcripts

    The PR refactors committed checkpoint reads to a shared factory-based flow (`newCommittedCheckpointReader`) and introduces `DualCheckpointReader` so CLI flows use one selection path while handling mixed-format checkpoints safely. Its key behavior is: v2 reads still take precedence, but if v2 full-transcript artifacts or v2-only compact transcript metadata are missing, the code falls back to existing v1 raw transcript/session artifacts.

    What ChangedThe PR refactors committed checkpoint reads to a shared factory-based flow (`newCommittedCheckpointReader`) and introduces `DualCheckpointReader` so CLI flows use one selection path while handling mixed-format checkpoints safely. Its key behavior is: v2 reads still take precedence, but if v2 full-transcript artifacts or v2-only compact transcript metadata are missing, the code falls back to existing v1 raw transcript/session artifacts.
    Why It MattersOperators and developers using session restore paths on repositories with mixed checkpoint formats are less likely to hit missing-checkpoint failures, so recovery workflows stay usable even when v2 transcript files are incomplete or partially missing. The implementation now routes all committed checkpoint reads through one reader pipeline and a v2-first fallback strategy; watch for edge cases in mixed v1/v2 repos where artifact availability and session ID/offset mapping could still cause incorrect transcript selection.
    Final score 79Confidence 941 evidence itemCommittedReadV1DualCheckpointReadernewCommittedCheckpointReaderv1 checkpoint artifactsv2 checkpoint artifactssession transcript fallback
    Analyze Evidence
  5. pull requestMay 19, 2026, 2:36 AM

    Add non-Linux `CheckLinger` stub to unblock cc-connect builds

    The PR adds `daemon/linger_stub.go` with a `//go:build !linux` guard implementing `CheckLinger()` for non-Linux platforms, resolving a cross-platform compile failure where `cmd/cc-connect/daemon.go` called `daemon.CheckLinger` but only the Linux/systemd implementation existed.

    What ChangedThe PR adds `daemon/linger_stub.go` with a `//go:build !linux` guard implementing `CheckLinger()` for non-Linux platforms, resolving a cross-platform compile failure where `cmd/cc-connect/daemon.go` called `daemon.CheckLinger` but only the Linux/systemd implementation existed.
    Why It MattersBuilds of cc-connect on macOS and Windows no longer fail at compile time, so maintainers can release and test cross-platform binaries without platform-specific breakage. The change uses a `!linux`-scoped stub (`linger_stub.go`) that returns a default linger value and user string, preventing the `undefined: daemon.CheckLinger` symbol error from the Linux-only systemd implementation. Watch for any non-Linux code paths that rely on actual systemd linger behavior, since the stub is a compatibility no-op and may mask missing platform-specific semantics.
    Final score 79Confidence 991 evidence itemCheckLingerdaemoncmd/cc-connect/daemon.godaemon/linger_stub.gogo:build !linuxmacOSWindowsgo build
    Analyze Evidence
  6. pull requestMay 19, 2026, 2:21 AM

    Fix img_2_b64 to return a real string

    LlamaIndex fixed a correctness bug in `img_2_b64()` where the function still returned `bytes` at runtime even though it was type-cast to `str`, by decoding the base64 result before returning it.

    What ChangedLlamaIndex fixed a correctness bug in `img_2_b64()` where the function still returned `bytes` at runtime even though it was type-cast to `str`, by decoding the base64 result before returning it.
    Why It MattersDevelopers and services that call `img_2_b64()` no longer trip over runtime `TypeError` crashes when building `data:image/...` payloads or serializing image data to JSON, so image conversion steps in multimodal pipelines become more reliable without fallback logic. The function now produces the expected string output at runtime, while teams should continue watching for similar cast-only return paths in nearby image helpers and add explicit type tests for base64 conversion outputs to prevent regressions.
    Final score 79Confidence 981 evidence itemimg_2_b64base64.b64encodetyping.castJSON serializationrun-llama/llama_index
    Analyze Evidence
  7. pull requestMay 19, 2026, 12:21 PM

    Normalize task editor file-tree paths and render from hierarchical children

    The PR refactors task-editor file-tree rendering to use a hierarchical `FileNode` model with per-folder `children`, and normalizes local filesystem paths to POSIX-style forms before load, reveal, add/remove, and watch operations. This fixes the root cause where Windows backslash paths were treated as flat IDs (e.g., `src\routes\+page.svelte`), causing duplicated folder/file-like rows in the tree.

    What ChangedThe PR refactors task-editor file-tree rendering to use a hierarchical `FileNode` model with per-folder `children`, and normalizes local filesystem paths to POSIX-style forms before load, reveal, add/remove, and watch operations. This fixes the root cause where Windows backslash paths were treated as flat IDs (e.g., `src\routes\+page.svelte`), causing duplicated folder/file-like rows in the tree.
    Why It MattersWindows users and task-editing teams will see a corrected file tree view (no duplicated folders/files), so expanding folders and selecting files in local projects becomes reliable and less frustrating; continue monitoring path normalization in file-watch/reveal flows for any remaining Windows- and environment-specific edge cases. Technically, the implementation replaces flat parent-index row generation with `rootNodes` traversal over `children`, while normalizing paths at load/store/processing boundaries and preserving existing expansion snapshots, which should also reduce incorrect identity mapping for local file nodes.
    Final score 77Confidence 961 evidence itemFileNodechildrenPOSIX path normalizationLocalFileSystem.relPathexpandedPathstask editor file treelazy loading
    Analyze Evidence
  8. pull requestMay 19, 2026, 12:11 PM

    Fix duplicated Windows file-tree rows by normalizing hierarchical task editor paths

    The PR replaces the task editor’s flat file-tree model with a hierarchical `FileNode` structure using per-folder `children`, then normalizes local file paths to POSIX-style relative paths so nested entries render as real hierarchy; this removes duplicated folder/file wrappers seen when Windows paths arrived with backslashes, while keeping initial loading root-only and expanding directories lazily.

    What ChangedThe PR replaces the task editor’s flat file-tree model with a hierarchical `FileNode` structure using per-folder `children`, then normalizes local file paths to POSIX-style relative paths so nested entries render as real hierarchy; this removes duplicated folder/file wrappers seen when Windows paths arrived with backslashes, while keeping initial loading root-only and expanding directories lazily.
    Why It MattersWindows-based task editors now show nested project files in the intended hierarchy instead of duplicated top-level wrappers, so developers can navigate and edit files without selecting the wrong path or getting confused by fake folder entries; continue watching Windows path handling in live watch/reveal flows to confirm normalization remains consistent across rename/delete/create events and does not reintroduce path mis-grouping in long-running sessions. This change mainly improves UI correctness by making repository state reliable at the file-tree level, which matters for day-to-day editing accuracy and reduced operator friction.
    Final score 76Confidence 961 evidence itemFileNodechildrenPOSIX-relative pathsLocalFileSystem.relPathexpandedPathstask editor file treeWindows path normalization
    Analyze Evidence
  9. releaseMay 18, 2026, 8:16 PM

    Fix onboarding tool regression in oraios/serena v1.5.1

    The v1.5.1 release is a hotfix that addresses a bug in Serena’s onboarding tool (reported in issue #1503), correcting a setup-flow problem that could block users during onboarding.

    What ChangedThe v1.5.1 release is a hotfix that addresses a bug in Serena’s onboarding tool (reported in issue #1503), correcting a setup-flow problem that could block users during onboarding.
    Why It MattersDevelopers using Serena’s onboarding flow can complete initial setup more reliably after upgrading, reducing setup blockers and avoiding manual workarounds when first-time initialization hits the regression; next, watch whether any remaining edge-case onboarding paths still fail in production environments and whether issue #1503-like patterns reappear in user reports. This is a targeted release fix to the onboarding path only, so unrelated features are not expected to change.
    Final score 75Confidence 961 evidence itemoraios/serenav1.5.1onboarding toolGitHub issue 1503
    Analyze Evidence
  10. pull requestMay 21, 2026, 3:42 PM

    Re-enable Julia files in aider repo mapping

    This PR restores repository map construction for Julia files, reversing the earlier broad skip logic that excluded all Julia files to avoid parse issues, and therefore fixes issue coverage regressions referenced in #4867 and #4888.

    What ChangedThis PR restores repository map construction for Julia files, reversing the earlier broad skip logic that excluded all Julia files to avoid parse issues, and therefore fixes issue coverage regressions referenced in #4867 and #4888.
    Why It MattersDevelopers using aider on mixed-language or Julia-heavy repos can now keep Julia files visible to repo-map-driven features, which improves context quality for code editing and reduces missed references caused by blind omission of those files. The change also lowers the operational need to keep manual exclusions in place, but teams should still watch for remaining Julia parser-edge failures and verify that repos with unusual Julia syntax still build maps consistently during follow-up runs.
    Final score 74Confidence 911 evidence itemaiderrepo mapJulia filesPR 5138
    Analyze Evidence
  11. pull requestMay 19, 2026, 4:21 AM

    Fix resume instructions to load Per-Unit Design artifacts from the correct unit directory

    The PR corrects `session-continuity.md` so Per-Unit Design resume guidance matches actual Construction output, specifying `aidlc-docs/construction/{unit-name}/{functional-design,nfr-requirements,nfr-design,infrastructure-design}/`, requiring in-progress unit selection from `aidlc-state.md`, and removing outdated hardcoded filenames.

    What ChangedThe PR corrects `session-continuity.md` so Per-Unit Design resume guidance matches actual Construction output, specifying `aidlc-docs/construction/{unit-name}/{functional-design,nfr-requirements,nfr-design,infrastructure-design}/`, requiring in-progress unit selection from `aidlc-state.md`, and removing outdated hardcoded filenames.
    Why It MattersOperators resuming multi-unit Construction sessions can now follow the correct artifact path for the active unit, so they are less likely to hit broken resume steps from missing files and can continue context restoration with fewer manual corrections. The change addresses a direct correctness issue in continuity guidance that was shown in a 6-unit resume run; next, teams should watch for future Construction output-path or naming changes that could reintroduce mismatch between docs and stage artifacts.
    Final score 74Confidence 951 evidence itemawslabs/aidlc-workflowssession-continuity.mdaidlc-docs/construction/{unit-name}/...aidlc-state.mdunit-of-work-dependency.md
    Analyze Evidence
  12. releaseMay 19, 2026, 7:30 AM

    entireio/cli fixes checkpoint fallback to recover from broken v2 trail data

    This nightly release centers on the dual-checkpoint reader path: it tightens fallback behavior so malformed or missing v2 checkpoint data no longer aborts checkpoint reads, instead allowing reads to continue via v1 checkpoint sources.

    What ChangedThis nightly release centers on the dual-checkpoint reader path: it tightens fallback behavior so malformed or missing v2 checkpoint data no longer aborts checkpoint reads, instead allowing reads to continue via v1 checkpoint sources.
    Why It MattersUsers running review/trace workflows in `entireio/cli` are less likely to see failed or blocked operations when checkpoint storage is partially damaged, so they can continue work without switching to manual workarounds during an investigation. The implementation now prefers a shared fallback sequence from v2 to v1 sources, so monitor for cases where fallback is triggered unexpectedly, where recovered data could be stale relative to current state, and whether any silent fallback switches hide upstream data-quality regressions.
    Final score 73Confidence 881 evidence itementireio/clidual checkpoint readerv2 checkpoint storev1 raw transcriptscheckpoint fallback
    Analyze Evidence
  13. pull requestMay 19, 2026, 9:03 AM

    Normalize RunCommand `kilocode_change` markers to cut merge noise

    In `packages/opencode/src/cli/cmd/run.ts`, the PR reverts a noisy yargs reformat and rewrites the `kilocode_change` sections so the upstream diff reflects only real Kilo-specific logic (for example `--auto` and `KILO_SERVER_PASSWORD`) rather than a large formatting-only block.

    What ChangedIn `packages/opencode/src/cli/cmd/run.ts`, the PR reverts a noisy yargs reformat and rewrites the `kilocode_change` sections so the upstream diff reflects only real Kilo-specific logic (for example `--auto` and `KILO_SERVER_PASSWORD`) rather than a large formatting-only block.
    Why It MattersDevelopers maintaining the Kilo fork should find upstream CLI merges in `run.ts` easier and safer, since the file now highlights only real Kilo-specific behavior changes and avoids a large false-positive diff that previously obscured what actually changed. This lowers merge-review effort and reduces the chance of missing or reintroducing changes around `--auto`, `--cloud-fork`, env handling, task tracking, retries, and stdin flow; teams should watch for future edits that drift from the documented markers and reintroduce formatting churn in `run.ts`.
    Final score 72Confidence 951 evidence itemrun.tskilocode_changeRunCommandyargs--autoKILO_SERVER_PASSWORD--cloud-fork
    Analyze Evidence
  14. issueMay 19, 2026, 7:46 AM

    New Code Repository Intelligence signal is ready for review

    A source-backed change was recorded for Code Repository Intelligence. Review the signal detail for evidence and context.

    What ChangedCode Repository Intelligence recorded a source-backed change that affects how teams should keep watching this topic.
    Why It MattersIt matters because repeated evidence-backed changes help separate durable movement from noisy update streams.
    Final score 72Confidence 871 evidence itemworktreesessionproject workspacesource branchUI controls
    Analyze Evidence
  15. pull requestMay 19, 2026, 9:02 AM

    Document and test concurrent callback re-entry in csync.Map.GetOrSet

    This change adds explicit documentation and a focused concurrency test for GetOrSet, clarifying that the provided callback function may execute multiple times when many goroutines contend on the same key, which makes the TOCTOU behavior of the cache helper visible to users.

    What ChangedThis change adds explicit documentation and a focused concurrency test for GetOrSet, clarifying that the provided callback function may execute multiple times when many goroutines contend on the same key, which makes the TOCTOU behavior of the cache helper visible to users.
    Why It MattersDevelopers calling csync.Map.GetOrSet in Go services should now assume the callback may be triggered concurrently, so code that mutates shared state in the callback can avoid hidden duplicate side effects and race-related production issues by making callback logic idempotent or externally synchronized. This reduces surprise failures during concurrent cache access and gives maintainers a concrete test that reproduces the contention window; continue monitoring whether future changes keep the strict single-execution assertion disabled and whether non-idempotent callback patterns still surface as intermittent logic bugs.
    Final score 71Confidence 961 evidence itemGetOrSetcsync.MapTOCTOUconcurrent testgoroutines
    Analyze Evidence
  16. pull requestMay 17, 2026, 5:05 AM

    Add file search support in Nezha (PR #170)

    A merged pull request in Nezha adds file search support, introducing a new primary capability for finding repository files through a search path rather than manual navigation. The change is focused on a user-facing workflow improvement: making file discovery part of the codebase behavior.

    What ChangedA merged pull request in Nezha adds file search support, introducing a new primary capability for finding repository files through a search path rather than manual navigation. The change is focused on a user-facing workflow improvement: making file discovery part of the codebase behavior.
    Why It MattersDevelopers and operators using Nezha can find files faster through the new search capability, which reduces time spent scanning tree structures during debugging, code review, and onboarding; monitor whether query accuracy, indexing freshness, and response time remain stable as projects grow. If the feature relies on an internal index or cache, watch for stale results after rapid file updates and check permission handling to ensure search does not expose unauthorized paths.
    Final score 71Confidence 841 evidence itemNezhafile searchpull_request_170
    Analyze Evidence
  17. commit burstMay 18, 2026, 10:40 PM

    New Code Repository Intelligence signal is ready for review

    A source-backed change was recorded for Code Repository Intelligence. Review the signal detail for evidence and context.

    What ChangedCode Repository Intelligence recorded a source-backed change that affects how teams should keep watching this topic.
    Why It MattersIt matters because repeated evidence-backed changes help separate durable movement from noisy update streams.
    Final score 67Confidence 861 evidence itemdual checkpoint readerv2 checkpoint transcriptv1 checkpoint transcriptfallbacksummary generation
    Analyze Evidence
  18. pull requestMay 14, 2026, 9:31 AM

    dmux pane workspaces now persist and sync linked nested repos

    This PR updates dmux so a pane workspace can manage selected nested repositories alongside the root repo and keep them aligned across create, reopen, resume, bootstrap, and cleanup flows.

    What ChangedThis PR updates dmux so a pane workspace can manage selected nested repositories alongside the root repo and keep them aligned across create, reopen, resume, bootstrap, and cleanup flows.
    Why It MattersDevelopers managing related repos in one dmux pane can keep workspace state consistent after restarts, so nested repos are less likely to drift out of sync or require manual repair during resume/cleanup. The PR stores linked-repo metadata in the worktree state and threads it through lifecycle transitions, reducing operational overhead for multi-repo setups and lowering the chance of orphaned or misaligned child repos. Continue monitoring whether existing single-repo workflows remain unaffected, whether migration of older worktree metadata is reliable, and how failures are surfaced when a linked repo is missing or partially configured during bootstrap.
    Final score 63Confidence 961 evidence itemdmuxpane workspacelinked nested repositoryworktree statereopen/resumebootstrapcleanup
    Analyze Evidence
  19. feasibility assessmentApr 21, 2026, 12:00 AM

    In-House Sourcegraph-equivalent: 90-Item Audit with 3-Year Cost Scenarios

    The post publishes an internal feasibility assessment for building a Sourcegraph-like code-intelligence platform, documenting 90 engineering requirements across 10 categories and adding modeled 3-year costs for different deployment sizes to support build-vs-buy planning.

    What ChangedThe post publishes an internal feasibility assessment for building a Sourcegraph-like code-intelligence platform, documenting 90 engineering requirements across 10 categories and adding modeled 3-year costs for different deployment sizes to support build-vs-buy planning.
    Why It MattersOrganizations evaluating an internal code-intelligence platform can use this study to estimate whether an in-house build is financially and operationally viable before committing teams and infrastructure, reducing the risk of unexpected build-time overruns and misaligned staffing bets. The work also reveals breadth (90 requirements in 10 categories) and scale-sensitive cost behavior, but teams should continue monitoring implementation assumptions, hidden maintenance burden, and security/compliance coverage as they operationalize the model.
    Final score 52Confidence 941 evidence itemcode_intelligenceSourcegraph-equivalentengineering_requirements3_year_cost_modelenvironment_scale
    Analyze Evidence
  20. analysis reportMay 8, 2026, 12:00 AM

    Sourcegraph maps five recurring coding-agent failures in large repos

    Sourcegraph reports a single primary finding: large-scale analysis of coding-agent runs revealed five repeatable failure patterns in enterprise-relevant repositories, each linked to a corresponding infrastructure fix. This replaces guesswork with a concrete, repeatable reliability playbook for teams scaling agent workflows.

    What ChangedSourcegraph reports a single primary finding: large-scale analysis of coding-agent runs revealed five repeatable failure patterns in enterprise-relevant repositories, each linked to a corresponding infrastructure fix. This replaces guesswork with a concrete, repeatable reliability playbook for teams scaling agent workflows.
    Why It MattersTeams running AI coding agents on large codebases can reduce avoidable production incidents, because the study shows a repeatable set of failure patterns in real runs and the infrastructure changes that were used to fix them instead of requiring ad hoc troubleshooting. The practical next step is to verify whether these same five patterns hold in private and enterprise codebases, and to track whether applying the fixes actually shifts incidents toward other bottlenecks (for example orchestration, permissions, or prompt quality).
    Final score 48Confidence 841 evidence itemcoding agentslarge codebasesSourcegraphagent run telemetryinfrastructure fixes
    Analyze Evidence

Topic Timeline

How the topic has changed over time

28 events
  1. May 21, 2026, 3:42 PM

    pull request

    Re-enable Julia files in aider repo mapping

    This PR restores repository map construction for Julia files, reversing the earlier broad skip logic that excluded all Julia files to avoid parse issues, and therefore fixes issue coverage regressions referenced in #4867 and #4888.
    ContributionFixes a repo-map behavior regression by including Julia files in map generation again, replacing the previous all-or-nothing exclusion that was introduced as a parser-error workaround.
    ImpactDevelopers using aider on mixed-language or Julia-heavy repos can now keep Julia files visible to repo-map-driven features, which improves context quality for code editing and reduces missed references caused by blind omission of those files. The change also lowers the operational need to keep manual exclusions in place, but teams should still watch for remaining Julia parser-edge failures and verify that repos with unusual Julia syntax still build maps consistently during follow-up runs.
  2. May 19, 2026, 12:21 PM

    pull request

    Normalize task editor file-tree paths and render from hierarchical children

    The PR refactors task-editor file-tree rendering to use a hierarchical `FileNode` model with per-folder `children`, and normalizes local filesystem paths to POSIX-style forms before load, reveal, add/remove, and watch operations. This fixes the root cause where Windows backslash paths were treated as flat IDs (e.g., `src\routes\+page.svelte`), causing duplicated folder/file-like rows in the tree.
    ContributionIntroduced a path-stable, child-walked tree model for the task editor: file nodes now persist hierarchical structure, initial rendering starts from root-only, and nested nodes load on expansion/reveal, preventing backslash-based path variants from producing incorrect duplicate folder/file nodes on Windows.
    ImpactWindows users and task-editing teams will see a corrected file tree view (no duplicated folders/files), so expanding folders and selecting files in local projects becomes reliable and less frustrating; continue monitoring path normalization in file-watch/reveal flows for any remaining Windows- and environment-specific edge cases. Technically, the implementation replaces flat parent-index row generation with `rootNodes` traversal over `children`, while normalizing paths at load/store/processing boundaries and preserving existing expansion snapshots, which should also reduce incorrect identity mapping for local file nodes.
  3. May 19, 2026, 12:11 PM

    pull request

    Fix duplicated Windows file-tree rows by normalizing hierarchical task editor paths

    The PR replaces the task editor’s flat file-tree model with a hierarchical `FileNode` structure using per-folder `children`, then normalizes local file paths to POSIX-style relative paths so nested entries render as real hierarchy; this removes duplicated folder/file wrappers seen when Windows paths arrived with backslashes, while keeping initial loading root-only and expanding directories lazily.
    ContributionIntroduced a real tree representation for task files by adding `children` to `FileNode` and deriving visible rows from root/expanded nodes, added canonicalization of file paths before store/load/reveal/watch operations (including `LocalFileSystem.relPath()`), and preserved expansion snapshots so users keep their folder open/closed state; this directly fixes mis-rendered nested path identities.
    ImpactWindows-based task editors now show nested project files in the intended hierarchy instead of duplicated top-level wrappers, so developers can navigate and edit files without selecting the wrong path or getting confused by fake folder entries; continue watching Windows path handling in live watch/reveal flows to confirm normalization remains consistent across rename/delete/create events and does not reintroduce path mis-grouping in long-running sessions. This change mainly improves UI correctness by making repository state reliable at the file-tree level, which matters for day-to-day editing accuracy and reduced operator friction.
  4. May 19, 2026, 9:58 AM

    pull request

    dotnet-test merges smell-detection into test-anti-patterns to remove plugin activation conflict

    Variant C of PR #672 removes `test-smell-detection` as a separate skill and makes `test-anti-patterns` the single smell-audit entry point, moving the smell catalog and four evaluation scenarios into that skill’s suite so plugin-mode activation is no longer split between competing siblings.
    ContributionThis change fixes plugin-mode activation correctness by consolidating overlapping smell-audit behavior into one public skill: `test-anti-patterns` now owns the smell-audit triggers, catalog, and eval coverage previously split with `test-smell-detection`, which had caused sibling competition during activation.
    ImpactDevelopers and operators running plugin-mode audits should see more reliable activation behavior in dotnet test smell checks, because one overlapping skill was removed and the remaining smell checks now route through a single entry point. Technically, `test-smell-detection` is deleted, its 19-smell catalog is moved under `test-anti-patterns/references`, and its four eval scenarios/fixtures are ported into the `test-anti-patterns` suite; README and `test-quality-auditor` references are also updated to reflect the new canonical skill. This is a breaking change for consumers that explicitly target `test-smell-detection`, so watch for downstream configs/scripts still calling it, and track plugin selection/validation results to confirm no regressions in smell coverage or invocation semantics.
  5. May 19, 2026, 9:03 AM

    pull request

    Normalize RunCommand `kilocode_change` markers to cut merge noise

    In `packages/opencode/src/cli/cmd/run.ts`, the PR reverts a noisy yargs reformat and rewrites the `kilocode_change` sections so the upstream diff reflects only real Kilo-specific logic (for example `--auto` and `KILO_SERVER_PASSWORD`) rather than a large formatting-only block.
    ContributionThe concrete change is a mergeability-focused refactor: it removes a formatting-only parenthesize/indent churn from `RunCommand` and adds explanatory annotations to each `kilocode_change` marker, so future upstream syncs can be reviewed against true behavioral deltas only.
    ImpactDevelopers maintaining the Kilo fork should find upstream CLI merges in `run.ts` easier and safer, since the file now highlights only real Kilo-specific behavior changes and avoids a large false-positive diff that previously obscured what actually changed. This lowers merge-review effort and reduces the chance of missing or reintroducing changes around `--auto`, `--cloud-fork`, env handling, task tracking, retries, and stdin flow; teams should watch for future edits that drift from the documented markers and reintroduce formatting churn in `run.ts`.
  6. May 19, 2026, 9:02 AM

    pull request

    Document and test concurrent callback re-entry in csync.Map.GetOrSet

    This change adds explicit documentation and a focused concurrency test for GetOrSet, clarifying that the provided callback function may execute multiple times when many goroutines contend on the same key, which makes the TOCTOU behavior of the cache helper visible to users.
    ContributionDocumented GetOrSet's concurrency contract that the callback can be invoked repeatedly under contention and added TestMap_GetOrSet_Concurrent (10 goroutines, start barrier, sleep to widen race window, invocation-count logging) to verify this race path and expose repeated-callback behavior.
    ImpactDevelopers calling csync.Map.GetOrSet in Go services should now assume the callback may be triggered concurrently, so code that mutates shared state in the callback can avoid hidden duplicate side effects and race-related production issues by making callback logic idempotent or externally synchronized. This reduces surprise failures during concurrent cache access and gives maintainers a concrete test that reproduces the contention window; continue monitoring whether future changes keep the strict single-execution assertion disabled and whether non-idempotent callback patterns still surface as intermittent logic bugs.
  7. May 19, 2026, 7:46 AM

    issue

    Fix project key encoding for '.' and '@' in cc-connect

    Code Repository Intelligence showed a tracked change with evidence attached, making the topic easier to monitor over time.
    ContributionAdds evidence to the topic's change timeline.
    ImpactHelps teams decide whether this direction deserves continued tracking.
  8. May 19, 2026, 7:30 AM

    release

    entireio/cli fixes checkpoint fallback to recover from broken v2 trail data

    This nightly release centers on the dual-checkpoint reader path: it tightens fallback behavior so malformed or missing v2 checkpoint data no longer aborts checkpoint reads, instead allowing reads to continue via v1 checkpoint sources.
    ContributionAdded and hardened the fallback mechanism in checkpoint loading so malformed v2 checkpoint states and missing full v2 stores are handled by a controlled dual-read recovery path, including preserved v1 transcript offsets.
    ImpactUsers running review/trace workflows in `entireio/cli` are less likely to see failed or blocked operations when checkpoint storage is partially damaged, so they can continue work without switching to manual workarounds during an investigation. The implementation now prefers a shared fallback sequence from v2 to v1 sources, so monitor for cases where fallback is triggered unexpectedly, where recovered data could be stale relative to current state, and whether any silent fallback switches hide upstream data-quality regressions.
  9. May 19, 2026, 4:21 AM

    pull request

    Fix resume instructions to load Per-Unit Design artifacts from the correct unit directory

    The PR corrects `session-continuity.md` so Per-Unit Design resume guidance matches actual Construction output, specifying `aidlc-docs/construction/{unit-name}/{functional-design,nfr-requirements,nfr-design,infrastructure-design}/`, requiring in-progress unit selection from `aidlc-state.md`, and removing outdated hardcoded filenames.
    ContributionAligned the Per-Unit Design session-continuity guidance with actual artifact layout and dependency rules, changing resume behavior from an inaccurate fixed file list to unit-aware paths and explicit unit selection.
    ImpactOperators resuming multi-unit Construction sessions can now follow the correct artifact path for the active unit, so they are less likely to hit broken resume steps from missing files and can continue context restoration with fewer manual corrections. The change addresses a direct correctness issue in continuity guidance that was shown in a 6-unit resume run; next, teams should watch for future Construction output-path or naming changes that could reintroduce mismatch between docs and stage artifacts.
  10. May 19, 2026, 3:37 AM

    commit burst

    Added Aliababa Singapore provider support in charmbracelet/crush

    charmbracelet/crush added a new Aliababa Singapore provider in the v0.70.0 burst, introducing a new regional backend option; other commits in the window are mostly legal, formatting, and housekeeping updates.
    ContributionAdded provider integration for Aliababa Singapore in v0.70.0, expanding the set of usable backends for deployments that require this regional connection path.
    ImpactDevelopers and operators using Crush now have an additional regional option through the Aliababa Singapore provider, which can enable region-aware deployment choices and reduce pressure on existing provider routes. The key follow-up is to validate credential handling and request-path stability on that new backend, because newly added provider code can introduce authentication mismatches or connectivity edge-case failures under real traffic.
  11. May 19, 2026, 3:27 AM

    pull request

    Fix project key encoding for '.' and '@' in cc-connect

    This PR fixes a session lookup bug in cc-connect’s Claude Code integration by adding `.` and `@` to `encodeClaudeProjectKey()` normalization, so generated project keys match Claude Code’s on-disk project directories and `/list` no longer returns empty results for paths such as `.nvm`, `v22.22.2`, or `@anthropic-ai/claude-code`.
    ContributionAdded explicit normalization of dots and at-signs when encoding Claude project keys, preventing key mismatches that caused project/session lookup failures in specific directory patterns.
    ImpactUsers working in repositories or package paths with dots or scoped package names will stop seeing valid projects appear as empty in `/list`, so project sessions are discoverable again without manual cleanup or retries. The fix aligns generated keys with `~/.claude/projects` directory naming by handling `.` and `@`, and operators should continue to watch for other unhandled special characters and any unintended key collisions introduced by broader normalization.
  12. May 19, 2026, 2:36 AM

    pull request

    Add non-Linux `CheckLinger` stub to unblock cc-connect builds

    The PR adds `daemon/linger_stub.go` with a `//go:build !linux` guard implementing `CheckLinger()` for non-Linux platforms, resolving a cross-platform compile failure where `cmd/cc-connect/daemon.go` called `daemon.CheckLinger` but only the Linux/systemd implementation existed.
    ContributionIntroduced a non-Linux `CheckLinger` build-stub in `daemon/linger_stub.go` so the new `daemon.CheckLinger` call in daemon startup code resolves on all platforms, not just Linux.
    ImpactBuilds of cc-connect on macOS and Windows no longer fail at compile time, so maintainers can release and test cross-platform binaries without platform-specific breakage. The change uses a `!linux`-scoped stub (`linger_stub.go`) that returns a default linger value and user string, preventing the `undefined: daemon.CheckLinger` symbol error from the Linux-only systemd implementation. Watch for any non-Linux code paths that rely on actual systemd linger behavior, since the stub is a compatibility no-op and may mask missing platform-specific semantics.
  13. May 19, 2026, 2:21 AM

    bugfix

    Fix img_2_b64 to return a real string

    LlamaIndex fixed a correctness bug in `img_2_b64()` where the function still returned `bytes` at runtime even though it was type-cast to `str`, by decoding the base64 result before returning it.
    ContributionChanged the image utility to return a decoded base64 string instead of a runtime `bytes` value in `img_2_b64()`, removing the unsafe `typing.cast`-only conversion and stopping a concrete type-mismatch failure path.
    ImpactDevelopers and services that call `img_2_b64()` no longer trip over runtime `TypeError` crashes when building `data:image/...` payloads or serializing image data to JSON, so image conversion steps in multimodal pipelines become more reliable without fallback logic. The function now produces the expected string output at runtime, while teams should continue watching for similar cast-only return paths in nearby image helpers and add explicit type tests for base64 conversion outputs to prevent regressions.
  14. May 18, 2026, 10:40 PM

    pull request

    Add v1 fallback for missing v2 committed checkpoint transcripts

    The PR refactors committed checkpoint reads to a shared factory-based flow (`newCommittedCheckpointReader`) and introduces `DualCheckpointReader` so CLI flows use one selection path while handling mixed-format checkpoints safely. Its key behavior is: v2 reads still take precedence, but if v2 full-transcript artifacts or v2-only compact transcript metadata are missing, the code falls back to existing v1 raw transcript/session artifacts.
    ContributionIntroduced a shared committed-checkpoint reader factory and explicit dual-mode fallback logic so `explain`, `resume`, `rewind`, and restore paths no longer depend on duplicated v1/v2 reader branching logic. The fix specifically restores session transcript reading for v2 reads by falling back to v1 raw transcript artifacts when v2 full-transcript or compact-transcript metadata is unavailable.
    ImpactOperators and developers using session restore paths on repositories with mixed checkpoint formats are less likely to hit missing-checkpoint failures, so recovery workflows stay usable even when v2 transcript files are incomplete or partially missing. The implementation now routes all committed checkpoint reads through one reader pipeline and a v2-first fallback strategy; watch for edge cases in mixed v1/v2 repos where artifact availability and session ID/offset mapping could still cause incorrect transcript selection.
  15. May 18, 2026, 10:40 PM

    commit burst

    Fix project key encoding for '.' and '@' in cc-connect

    Code Repository Intelligence showed a tracked change with evidence attached, making the topic easier to monitor over time.
    ContributionAdds evidence to the topic's change timeline.
    ImpactHelps teams decide whether this direction deserves continued tracking.
  16. May 18, 2026, 10:11 PM

    pull request

    Fix dataset queue behavior in topoteretes/cognee

    PR #2864 is a single change request aimed at fixing the dataset queue in cognee, indicating a correction to how dataset items are managed in the queue flow.
    ContributionAdds a queue-corrective change for dataset processing, targeting reliability of dataset job scheduling and execution rather than introducing a new feature.
    ImpactOperators running dataset ingestion through cognee should get more stable pipeline behavior if this change is merged, because queue handling bugs are a common source of stuck or skipped dataset tasks. Watch next for whether the fix actually removes queue stalls/retries in high-throughput runs, whether duplicate enqueues or ordering regressions appear, and whether this introduces any change in throughput when multiple workers process datasets concurrently.
  17. May 18, 2026, 8:16 PM

    release hotfix

    Fix onboarding tool regression in oraios/serena v1.5.1

    The v1.5.1 release is a hotfix that addresses a bug in Serena’s onboarding tool (reported in issue #1503), correcting a setup-flow problem that could block users during onboarding.
    ContributionCorrected a concrete failure in the onboarding workflow so the setup path works as intended instead of halting due to the regression fixed in v1.5.1.
    ImpactDevelopers using Serena’s onboarding flow can complete initial setup more reliably after upgrading, reducing setup blockers and avoiding manual workarounds when first-time initialization hits the regression; next, watch whether any remaining edge-case onboarding paths still fail in production environments and whether issue #1503-like patterns reappear in user reports. This is a targeted release fix to the onboarding path only, so unrelated features are not expected to change.
  18. May 18, 2026, 5:54 PM

    commit burst

    CLI auto-resumes after network reconnects

    The commit burst’s strongest executable change is a CLI fix that auto-resumes operations when a network reconnection occurs, replacing manual retry behavior after transient connectivity loss.
    ContributionIntroduced automatic resume handling in CLI network recovery so temporary disconnects can continue existing command flows without forcing users to restart the task.
    ImpactDevelopers and operators using the kilocode CLI on unstable networks can avoid interrupted workflows when links flap, which reduces manual restarts and wasted time on long-running commands. The change appears to add reconnect-handling recovery in the CLI execution path; teams should monitor for reconnect retry loops, duplicate command execution, and whether state is preserved correctly in non-idempotent operations after a resumed connection.
  19. May 18, 2026, 4:10 PM

    pull request

    Fix volume metadata date parsing to prevent SDK type errors

    PR #537 fixes `get_volume_file_metadata` in `databricks-solutions/ai-dev-kit` by handling `last_modified` values returned as RFC 7231 HTTP-date strings from `files.get_metadata()`, instead of calling `.isoformat()` directly on a string and crashing.
    ContributionIntroduced a concrete parsing fix for a real SDK type mismatch: `get_volume_file_metadata` now parses RFC 7231 HTTP-date strings with `parsedate_to_datetime` and returns normalized ISO 8601 timestamps, with fallback-to-raw-value handling if parsing fails, eliminating the `AttributeError: 'str' object has no attribute 'isoformat'` path.
    ImpactOperators and developers using volume metadata calls can avoid intermittent metadata fetch crashes, so storage automation and sync jobs are less likely to fail when a workspace file returns `last_modified` as a date string instead of a datetime. The returned timestamp format is now aligned with existing `list_volume_files` output, which reduces downstream parsing surprises; monitor for future Databricks SDK changes in `last_modified` shape and any non-HTTP-date formats that increase fallback usage.
  20. May 18, 2026, 9:09 AM

    pull request

    Update repository activity link target

    PR #1206 updates the repository’s activity link reference, so navigation to project activity should use the updated link target instead of the previous one.
    ContributionChanged the repository’s activity link definition in the project-facing metadata/docs path, redirecting users to the intended activity page and reducing mismatched navigation when checking recent updates.
    ImpactContributors and project operators can follow the activity link and reach the project’s current activity page more reliably, reducing confusion when tracking commits and release updates; the team should verify the link still resolves correctly after subsequent merges and watch for any reports of wrong or broken activity destinations.
  21. May 17, 2026, 5:05 AM

    pull request

    Add file search support in Nezha (PR #170)

    A merged pull request in Nezha adds file search support, introducing a new primary capability for finding repository files through a search path rather than manual navigation. The change is focused on a user-facing workflow improvement: making file discovery part of the codebase behavior.
    ContributionIntroduced a file search feature in the repository workflow, enabling direct lookup of files by query terms instead of manual directory browsing.
    ImpactDevelopers and operators using Nezha can find files faster through the new search capability, which reduces time spent scanning tree structures during debugging, code review, and onboarding; monitor whether query accuracy, indexing freshness, and response time remain stable as projects grow. If the feature relies on an internal index or cache, watch for stale results after rapid file updates and check permission handling to ensure search does not expose unauthorized paths.
  22. May 15, 2026, 5:52 PM

    release

    Roo-Code publishes v3.54.0 stable release tag

    Code Repository Intelligence showed a tracked change with evidence attached, making the topic easier to monitor over time.
    ContributionAdds evidence to the topic's change timeline.
    ImpactHelps teams decide whether this direction deserves continued tracking.
  23. May 14, 2026, 11:56 AM

    release

    jcode v0.12.2 release tag published

    Repository 1jehuang/jcode published the v0.12.2 release, advancing from v0.12.1 and exposing a full changelog URL for the version diff.
    ContributionIntroduced a new tagged release (v0.12.2) and published the official compare link so consumers can inspect exactly what changed versus v0.12.1.
    ImpactDevelopers and operators now have a concrete upgrade checkpoint for jcode (v0.12.2), so they can schedule and coordinate updates explicitly, but this signal does not describe the concrete fixes, so teams should review the linked changelog and validate compatibility before rollout to avoid unexpected behavior changes. Watch for behavioral, dependency, or interface changes in the v0.12.2 diff that could affect production integrations.
  24. May 14, 2026, 9:31 AM

    pull request

    dmux pane workspaces now persist and sync linked nested repos

    This PR updates dmux so a pane workspace can manage selected nested repositories alongside the root repo and keep them aligned across create, reopen, resume, bootstrap, and cleanup flows.
    ContributionIntroduces pane-level linked child-repo selection and state persistence, making nested repositories first-class lifecycle participants (create, reopen, resume, bootstrap, cleanup) instead of being detached from the pane’s root repository management.
    ImpactDevelopers managing related repos in one dmux pane can keep workspace state consistent after restarts, so nested repos are less likely to drift out of sync or require manual repair during resume/cleanup. The PR stores linked-repo metadata in the worktree state and threads it through lifecycle transitions, reducing operational overhead for multi-repo setups and lowering the chance of orphaned or misaligned child repos. Continue monitoring whether existing single-repo workflows remain unaffected, whether migration of older worktree metadata is reliable, and how failures are surfaced when a linked repo is missing or partially configured during bootstrap.
  25. May 11, 2026, 6:32 PM

    release

    Serena v1.3.0 release published with changelog reference

    A GitHub release for oraios/serena version 1.3.0 was published, and the release entry points users to the repository CHANGELOG for the specific update details.
    ContributionIntroduced the v1.3.0 release record and centralized the detailed change list in CHANGELOG.md, giving teams a fixed upstream source to review before upgrading.
    ImpactDevelopers and operators upgrading Serena to v1.3.0 need to review the linked changelog before rollout, because the release announcement itself does not state what behavior or compatibility changes are included and unreviewed changes can affect downstream tools. The release functions as a pointer-only index to details, so the next watch point is whether the listed delta introduces breakages or performance changes in existing pipelines, which should be validated through targeted regression checks after upgrade.
  26. May 10, 2026, 7:09 AM

    release

    abtop v0.4.4 adds cross-platform prebuilt installation artifacts

    Release v0.4.4 shifts distribution to downloadable, platform-specific binaries for Apple macOS, Windows, and Linux (x64/ARM64), and publishes installer paths via shell script, PowerShell script, and Homebrew.
    ContributionIntroduces a ready-to-use release distribution package set (tar.xz/zip artifacts and checksummed downloads) across six OS/architecture targets, reducing the need to build or package abtop from source for common environments.
    ImpactOperators and developers can install and verify abtop 0.4.4 on more platforms with fewer setup steps, so deployments become quicker and less error-prone when onboarding or rolling out updates on macOS, Windows, and Linux. The main technical change is the explicit release of per-platform binary artifacts plus installer scripts and checksum files, and the next watch point is whether installers remain functional and checksums stay accurate for each platform in subsequent releases.
  27. May 8, 2026, 12:00 AM

    analysis report

    Sourcegraph maps five recurring coding-agent failures in large repos

    Sourcegraph reports a single primary finding: large-scale analysis of coding-agent runs revealed five repeatable failure patterns in enterprise-relevant repositories, each linked to a corresponding infrastructure fix. This replaces guesswork with a concrete, repeatable reliability playbook for teams scaling agent workflows.
    ContributionExtracted an evidence-based taxonomy of five recurring coding-agent failure modes and paired each mode with actionable infrastructure remediation guidance, giving operators a focused checklist for reducing repeated agent breaks in large repositories.
    ImpactTeams running AI coding agents on large codebases can reduce avoidable production incidents, because the study shows a repeatable set of failure patterns in real runs and the infrastructure changes that were used to fix them instead of requiring ad hoc troubleshooting. The practical next step is to verify whether these same five patterns hold in private and enterprise codebases, and to track whether applying the fixes actually shifts incidents toward other bottlenecks (for example orchestration, permissions, or prompt quality).
  28. Apr 21, 2026, 12:00 AM

    feasibility assessment

    In-House Sourcegraph-equivalent: 90-Item Audit with 3-Year Cost Scenarios

    The post publishes an internal feasibility assessment for building a Sourcegraph-like code-intelligence platform, documenting 90 engineering requirements across 10 categories and adding modeled 3-year costs for different deployment sizes to support build-vs-buy planning.
    ContributionIt introduces a concrete decision framework by enumerating 90 required engineering capabilities and quantifying 3-year operational cost scenarios, replacing vague planning with structured requirements and budgeting inputs for internal code-intelligence adoption.
    ImpactOrganizations evaluating an internal code-intelligence platform can use this study to estimate whether an in-house build is financially and operationally viable before committing teams and infrastructure, reducing the risk of unexpected build-time overruns and misaligned staffing bets. The work also reveals breadth (90 requirements in 10 categories) and scale-sensitive cost behavior, but teams should continue monitoring implementation assumptions, hidden maintenance burden, and security/compliance coverage as they operationalize the model.

Evidence Trail

  1. github_pull_request

    aider-ai/aider PR #5162: fix crash with Julia files

    PR 5138 ignored all Julia files when building the repo map; this change keeps Julia files in the map-building path so they are included again while the prior workaround remains available only for parsing-error cases.

    Open Source
  2. github_pull_request

    generalaction/emdash PR #2113: fix(editor): render file tree from normalized children

    Fixes duplicated root-level wrappers in the editor file tree by normalizing local paths and deriving visible rows from each node’s children.

    Open Source
  3. github_pull_request

    generalaction/emdash PR #2112: fix(editor): render file tree from normalized children

    Fixes #1952: Refactor the task editor file tree to use normalized hierarchical nodes with stable POSIX paths, lazy directory loading, and path normalization across tree operations.

    Open Source
  4. github_pull_request

    dotnet/skills PR #672: test-anti-patterns: merge test-smell-detection in (Variant C)

    Validation shows plugin skill count drops from 22 to 21 after deleting `test-smell-detection`, moving its references/cases into `test-anti-patterns`, and updating `plugins/dotnet-test` docs/config references.

    Open Source

Source Coverage

github pull request
16 events · 16 evidence items
3 days ago
github release
6 events · 6 evidence items
5 days ago
github commit burst
3 events · 3 evidence items
5 days ago
rss feed
2 events · 2 evidence items
16 days ago
github issue
1 event · 1 evidence item
5 days ago

Subscribe to this topic

Keep tracking Code Repository Intelligence with weekly digests and high-signal alerts once your account subscription is active.

Sign in to subscribeReview Pro tracking

Watching Next

Code Repository Intelligence tracks source-backed changes, trend stages, evidence volume, and the signals worth watching over time.

Turn on alerts