Best of GitHubOctober 2025

  1. 1
    Article
    Avatar of devtoDEV·29w

    Why Do You Push Code During Work Hours?" - How an Interview Question Led Me to Build a Delayed Commit Feature

    A developer built a delayed commit feature for GoCommit after an interviewer questioned their GitHub commit timestamps during work hours. The tool allows developers to schedule commits outside restricted hours, addressing privacy concerns and work-life boundaries. It intercepts commits during configured work hours, presents alternative timestamps, and uses Git's native date flags to set both author and committer dates. The feature integrates with GoCommit's AI-powered commit message generator and raises questions about whether coding schedules should be public information.

  2. 2
    Video
    Avatar of primeagenThePrimeTime·29w

    banned from github

    A developer reflects on the risks of platform dependency after witnessing a GitHub account suspension. The incident highlights how relying on centralized services like GitHub for code hosting, authentication, and SSO creates single points of failure that could lock users out of their work and connected services. While self-hosting offers independence, the practical challenges and network effects of platforms like GitHub make migration difficult, leaving developers in a convenience-versus-control dilemma with no clear solution.

  3. 3
    Article
    Avatar of aspnetASP.NET Blog·28w

    Introducing Custom Agents for .NET Developers: C# Expert & WinForms Expert

    Microsoft released two experimental custom agents for GitHub Copilot targeting .NET developers: C# Expert and WinForms Expert. C# Expert provides guidance on modern C# best practices, code integrity, and testing workflows. WinForms Expert specializes in UI design patterns, event-driven programming, and protects designer.cs files from corruption. Both agents can be downloaded from the awesome-copilot repository and integrated into projects via the .github/agents folder, with support across Copilot Coding Agent, VS Code Insiders, and upcoming Visual Studio 2022 v17.14.21.

  4. 4
    Article
    Avatar of github_updatesGitHub Changelog·32w

    One-click merge conflict resolution now in the web interface

    GitHub now allows developers to resolve merge conflicts directly in the web interface with one-click buttons. When a pull request has conflicts, users can choose to accept incoming changes, current changes, or both without leaving their browser. This feature brings the convenience of code editor merge tools like those in Visual Studio Code to the GitHub web workflow, eliminating the need to switch contexts or use local development environments.

  5. 5
    Article
    Avatar of ghblogGitHub Blog·31w

    GitHub Copilot CLI: How to get started

    GitHub Copilot CLI brings AI assistance directly to your terminal, eliminating context switching between tools. Install it via npm, authenticate with your GitHub Copilot subscription, and use it for tasks like understanding codebases, checking dependencies, finding issues, implementing fixes, and managing Git workflows. The tool asks permission before executing commands, ships with GitHub MCP server integration, and supports extending functionality with additional MCP servers. Currently in public preview, it's designed for developers who spend significant time in the terminal and want AI help without leaving their command line environment.

  6. 6
    Article
    Avatar of hnHacker News·28w

    Your vibe coded slop PR is not welcome

    AI coding tools have created an asymmetry in open source: generating code is now cheap, but reviewing it remains expensive. The author proposes a binary framework distinguishing 'prototypes' (AI-generated demos shared via branches, not PRs) from 'ready-to-review PRs' (human-vouched code meeting project standards). Maintainers face increasing volumes of low-effort AI contributions that consume disproportionate review time. The solution requires clear labeling, contributor etiquette, and recognition that AI assistance is acceptable only when contributors take full ownership of the final code quality.

  7. 7
    Article
    Avatar of nordicapisNordic APIs·30w

    10 MCP Servers to Optimize Developer Workflows

    Model Context Protocol (MCP) servers enable AI systems to interact directly with development tools and platforms, eliminating repetitive integration work. This curated list covers 10 MCP servers including GitHub MCP Server for repository management, Docker MCP for container operations, Apidog for API development, Sequential Thinking for step-by-step problem solving, Serena for language-aware coding assistance, Brave Search for privacy-focused search, DesktopCommanderMCP for local terminal control, Octocode for repository analysis, Supabase MCP for backend management, and MCP Compass for discovering other MCP servers. These tools allow developers to perform actions like pushing code changes, managing databases, and searching documentation using natural language within their AI-driven development environments.

  8. 8
    Article
    Avatar of bartwullemsThe Art of Simplicity·31w

    GitHub Copilot's starts supporting AGENTS.md: A step toward unified AI Instructions

    GitHub Copilot now supports AGENTS.md, a unified format for configuring AI coding assistants. This addresses the fragmentation problem where different AI tools required separate configuration files like .cursorrules, CLAUDE.md, and .github/copilot-instructions.md. The implementation allows both root-level and nested AGENTS.md files for project-wide and context-specific instructions, while maintaining backward compatibility with existing formats. This move positions AGENTS.md as a potential standard for AI agent configuration across tools.

  9. 9
    Article
    Avatar of itsfossIt's Foss·32w

    How I am Using Git and Obsidian for Note Version Management

    A step-by-step guide to integrating Git version control with Obsidian note-taking app on Linux. Covers creating a private GitHub repository, installing Git and GitHub CLI, authenticating credentials, cloning the repo, configuring .gitignore for Obsidian files, and using the Obsidian Git plugin to stage, commit, push, and pull changes. Provides a free cloud sync solution for markdown notes with full version history.

  10. 10
    Article
    Avatar of vscodeVisual Studio Code·31w

    September 2025 (version 1.105)

    Visual Studio Code version 1.105 introduces AI-powered merge conflict resolution, OS notifications for task completion and chat responses, and native macOS authentication. The release expands MCP marketplace support for installing servers directly from the Extensions view, adds fully-qualified tool names to avoid conflicts, and improves chat features with recent session history, chain of thought display, and better edit tools for custom models. Additional enhancements include terminal dictation controls, test coverage reporting in the runTests tool, and support for nested AGENTS.md files for workspace-specific AI instructions.

  11. 11
    Article
    Avatar of vsVisual Studio Blog·29w

    Introducing Planning in Visual Studio (Public Preview)

    Visual Studio 2022 17.14 introduces Planning in Chat, a public preview feature that enables GitHub Copilot to handle complex, multi-step coding tasks through structured plans. Instead of simple prompts, Copilot now creates markdown-based plans that break down large tasks, research codebases, and execute steps iteratively while adapting to new context. The feature uses transparent tool calls and hierarchical planning techniques, showing 15% higher success rates in SWE-bench testing. Plans are stored as temporary files with progress tracking, allowing developers to monitor and control each step of the AI-assisted workflow.

  12. 12
    Article
    Avatar of github_updatesGitHub Changelog·29w

    Selected Claude, OpenAI, and Gemini Copilot models are now deprecated

    GitHub has deprecated several AI models in Copilot as of October 23, 2025, including Claude Sonnet 3.7, Claude Opus 4, GPT o3/o1/o3/o4 mini variants, and Gemini 2.0 Flash. Users should migrate to newer alternatives like Claude Sonnet 4.5, Claude Opus 4.1, GPT-5 variants, and Gemini 2.5 Pro. Enterprise administrators may need to enable access to replacement models through Copilot settings, while deprecated models will be automatically removed without user action.

  13. 13
    Article
    Avatar of infoworldInfoWorld·30w

    Anthropic extends Claude Code to browsers

    Anthropic launched Claude Code on the web as a beta research preview for Pro and Max users, allowing developers to use the AI coding assistant directly from browsers or smartphones without a terminal. The service runs coding tasks on Anthropic-managed cloud infrastructure in isolated sandboxes, supports parallel task execution across repositories, handles Git interactions via secure proxy, and automatically creates pull requests. It's particularly effective for repository mapping, routine tasks, bug fixes, and back-end changes with test-driven development.

  14. 14
    Article
    Avatar of selfhstselfh.st·28w

    Self-Host Weekly (31 October 2025)

    GitHub's 2025 Octoverse report reveals 630 million projects with AI dominating development trends, while TypeScript becomes the most popular language. Home Assistant ranks among top open source projects by contributors. Unraid releases v7.2.0 with mobile-responsive interface and open API. New tool Home Assistant Time Machine enables configuration backup snapshots with comparison and restoration features. Docker adoption continues growing with 120% increase in Dockerfile usage.

  15. 15
    Article
    Avatar of github_updatesGitHub Changelog·28w

    New public preview features in Copilot code review: AI reviews that see the full picture

    GitHub Copilot code review now combines LLM-based analysis with deterministic tools like CodeQL and ESLint for more accurate feedback. New features include agentic tool calling for full project context, integration with security and quality linters, and direct handoff to the Copilot coding agent for automated fixes. The tool supports customizable workflows through instruction files and is available across multiple editors including VS Code, Visual Studio, JetBrains, and Xcode.

  16. 16
    Article
    Avatar of sdtimesSD Times·29w

    Microsoft announces public preview for planning to improve how Copilot in Visual Studio handles complex tasks

    Microsoft released a public preview of planning capabilities for Copilot in Visual Studio's Agent Mode. The feature breaks down complex coding tasks into smaller, manageable steps by researching the codebase and creating structured execution plans. Initial testing shows 15% higher success rates and 20% more resolved tasks with GPT-5 and Claude Sonnet 4. The planning feature automatically activates for multi-step prompts while simple queries receive direct responses. Available in Visual Studio 2022 17.14 and Visual Studio 2026 Insiders.