r/GithubCopilot

▲ 6 r/GithubCopilot+1 crossposts

What kind of guardrails do you guys recommend?

I have been using opencode and codex for a while and iirc opencode using the linter to verify code, live, as it outputs, which helps curb tokens costs. I saw code quality increase by making some small changes to lint, and was wondering what other guardrails you guys use?

Aside from basic CI/CD workflows(worked scoped int tests, regression, building etc etc) is there anything you guys do to improve coding with codex?

reddit.com
u/gungoesclick — 12 hours ago
▲ 32 r/GithubCopilot+9 crossposts

Local coding models need better repo context, not just bigger context windows

Local coding models have a repo-context problem.

When using llama/qwen/mistral/gemma for coding, the hard part is often not the model itself. It is getting the right files/functions into context without dumping too much raw source.

Long context helps, but it does not solve retrieval.

If the model never sees the right file, it still guesses.

I’ve been building SigMap, a zero-dependency CLI that creates a compact repo map for coding workflows.

Instead of sending raw source first, it extracts:

  • function signatures
  • classes/interfaces
  • exports
  • import relationships
  • ranked file matches per query

The workflow is simple:

repo map first → find likely files → read full source only where needed

Benchmarked across 18 repos / 90 tasks:

  • 81.1% hit@5 vs 13.6% random baseline
  • ~6× better file retrieval
  • 96.9% token reduction in the benchmark setup
  • 41.4% fewer prompts per task

No embeddings. No vector DB. No npm dependencies.

This is not meant to replace LSPs, grep, agent search, MCP tools, or full-file reads.

It is meant to give local coding models / agents a cheap first-pass structure map before deeper inspection.

Repo: https://github.com/manojmallick/sigmap

Benchmark suite: https://github.com/manojmallick/sigmap-benchmark-suite

Curious how people here handle repo context with local coding models.

Are you mostly using grep/search, RAG, repo maps, MCP tools, or just relying on longer-context models?

Edit: Good point from the comments — SigMap core is model-agnostic. The docs currently look too focused on proprietary assistants, so I’ll add clearer examples for VSCodium/Open VSX, Continue, Cline/Roo Code, Aider, OpenHands, and local Ollama/llama.cpp workflows.

u/Independent-Flow3408 — 21 hours ago

A model launching isn't the finish line: how we kept improving GPT-5.5 after release

We A/B tested different system prompts for GPT-5.5 in VS Code, and just changing the prompt made it faster and more token-efficient.

We figured this was worth sharing because we don't think people realize how much work continues after a model launches. Launch day isn't the finish line and our engineering teams keep iterating on prompts, validating changes, and improving things behind the scenes.

Check it out: https://code.visualstudio.com/blogs/2026/07/06/optimizing-vscode-coding-harness-model-providers

u/jukasper — 18 hours ago

Sonnet 5 much slower at writing code than any Gpt model?

Hey all,

today I tried out Sonnet 5 for the first time on our business plan. But it's just so slow. It takes 10 minutes for something that Gpt 5.4/5.4 mini or 5.5 do in 2-3 minutes.

Are there any tricks or settings to make it think and write faster? I'm using the default reasoning.

reddit.com
u/Type-21 — 17 hours ago

Quitting on GHCP, need alternative suggestions

This used to be my favourite product and have developed lot of things with it's flat pricing era.

Now, it's just 2-3 hours of serious work and BOOM!, monthly quota expired within few hours. I seriously don't understand what kind of pricing model is this?

Can anyone please suggest an alternative?

reddit.com
u/SirWayneIsHere — 1 day ago

Appreciating github copilot

In my experience, there is nothing close that compares to github copilot.
Its feature rich integration with VScode is lovely, its clean, simple, and with the Integrated browser, copilot CLI and extensions support for vscode, everything is possible with just Vscode and copilot.

Yes there is a whole world of local AI with softwares, I used few of them ollama, openrouter, cline, continue, aider etc. Basically you dont have to worry about huge hardware cost and low context size support with local AI and integrating multiple other softwares to make the local AI actually work.

If copilot was not there, it would have been hard, I likely would have gone with openrouter cloud models plus cline or something with VScode. Just happy to have copilot man. Eager to see deepseek, glm on copilot cli.

This post is not about pricing or subscription costs or tokens cost.

reddit.com
u/Zacky_vengeance — 1 day ago
▲ 25 r/GithubCopilot+1 crossposts

GitHub Copilot for JetBrains - June Updates

Hi everyone — we’re excited to share the latest updates for GitHub Copilot in JetBrains.

In the latest release (v1.10.0), we added several key capabilities, including additional Usage-Based Billing UX improvements, new agentic features for Copilot CLI sessions, Agent Customizations editor, Agent Debug Panel, and social login with Google and Apple.

We’re also sharing a preview at what’s coming next and hope you continue to provide feedback for our product!

New Features

  • Added: Agent picker support for Copilot CLI sessions, with Agent (default), Ask, Plan, and Custom agent modes.
  • Added: Support MCP configuration for Copilot CLI sessions.
  • Added: Support BYOK for Copilot CLI sessions.
  • Added: /compact slash command for Copilot CLI sessions.
  • Added: /chronicle slash command for Copilot CLI sessions.
  • Added: /plan slash command for Copilot CLI sessions.
  • Added: Agent customizations editor for Copilot CLI sessions.
  • Added: Agent debug panel in Public Preview.
  • Added: GitHub Coding Agent (Cloud agent) integrated into the unified sessions view.
  • Added: Thinking effort configuration for supported models.
  • Added: More sign-in choices with Google and Apple

User Experience

  • Improved: Smoother NES experience with improved trigger strategy and detection logic.
  • Improved: Unified session views with improved layout and readability.
  • Improved: Account/session isolation between different editors.

Bug Fixes

  • Resolved: An issue where the stop button was missing during CLI agent execution.
  • Improved: Unified session persistence and state management.
  • Improved: Overall UI freeze handling and stability.

Changed

  • Agent skills are generally available.
  • Agent hooks are generally available.
  • Prompt files are generally available.
  • Anthropic Thinking is generally available.
  • BYOK is available without the Editor Preview feature flag, and availability for Copilot Business and Enterprise is controlled by GitHub policy.

Looking ahead, we plan to continue rolling out the Copilot CLI agent harness in JetBrains and introduce several additional capabilities in upcoming releases, including:

  • Customization editor support for Hooks, MCP, plugins, and customization file creation
  • Chat UX improvements
  • Approval settings
  • Organizational and enterprise agents
  • In-product cost-saving tips for Usage-Based Billing

We hope you like Copilot for JetBrains, and please share feedback with us at any time.

You can fill in a private survey here: https://aka.ms/ghcp-jb-survey with an optional paid interview or directly submit an issue (bug or feature ask) at https://github.com/microsoft/copilot-intellij-feedback/issues, thank you so much!

u/nickzhu9 — 1 day ago

GitHub Copilot needs to get their s*** together!

https://preview.redd.it/wxdpvkiuhibh1.png?width=655&format=png&auto=webp&s=eadc87de4c78afe81c94d03557ed626deace44f4

Even though no response was returned, it burned through 50% of my usage... I tried to create a ticket at Copilot's recommended page but it keeps just giving me AI recommendations which aren't helpful at all instead of creating a support ticket. Their AI is preventing me from creating a ticket apparently (probably not on purpose, but as a side effect because it's too "stupid"). Meh. Not sure what to do other than not use Fable (this is where it happened).

reddit.com
u/iKontact — 1 day ago

GitHub Copilot does not have the Claude Sonnet 5 model.

I have an annual subscription to GitHub Copilot Pro, but the GitHub Copilot plugins in both JetBrains and VS Code do not include the Claude Sonnet 5 model. Is anyone else experiencing this issue?

reddit.com
u/TimGong — 1 day ago
▲ 11 r/GithubCopilot+5 crossposts

eval-harness - agent harness evaluation framework

Hello folks,

I wanted to build out my own personal list of evaluations, early on into putting this together I realised I wanted a way to not just evaluate the model but also the agentic harness that the model is running within, as I find the majority of my use of LLMs is more and more inside of a suite of CLI agentic harnesses.

I've listed in the video a multitutde of motivations for why I built this, but the primary ones were all the hype announcements and wanting a way to see for myself what models and their capabilities were like in the actual tools I use.

A paper by Google over on Kaggle recently went as far as to state that which LLM being used inside of an agentic harness perhaps only contributes 10% towards how effecitve that harness will be for a given task. I am not sure I agree with the figure, but I do agree with the sentiment.

One question I keep asking myself is when do I need to switch from my qwen3.6-27b that I am running locally on my twin 3090 setup, to a cloud model. At the moment I am making this decision on vibes/gut feel, and I think that might be okay for when I am working closely with the model but I am using these cli tools headlessly in quite a few workflows now and not just personally but professionally, so I want to make sure I am picking the right combo for the task.

The repo can be found here: https://github.com/ScottRBK/eval-harness, there is an explanation of the architecture. I have added example evaluations as I built it out to help me think about the different patterns I have utilise for evaluations.

The evaluations are quite easy as they are about resources contained within the model weights. The idea behind it is though I (and anyone else whom might want to fork the repo and curate their own) will build out a private list of evals that are held away from public that people can use to evaluate existing and new models and harnesses as they are released.

I also spent a good bit of time seeing how well cli agents themselves are able to build evaluations and have put together a list of skills that they can use alongside the tool. They do an okay job, but you need to really step through the logic of whatever they produce, they often produce quite brittle evaluations, so try getting them to stick to the example patterns already provided helps quite a bit.

An ideal position for me will be having the ability to ask the agent to generate an evaluation using the skills having just finished a session where I found a particular agent was struggling to complete a task. Theres often been a time where I've come across a problem that the agent has struggled to resolve and I've wished at that point I could make an evaluation out of it, but you are often in the middle of something and it ends up just as another item on my ever growing TODO: list.

This is my first time building an actual evaluation suite or framework of this kind for that matter. I have previously used existing frameworks, such as deepeval, so I was not toally unfamiliar with the topic but as with the other motivations already listed I built this as a learning exercise as well as to get a tool out of it.

If it is useful for you please get in touch and let me know, any feedback as well is also appreciated, as this is my first go and this kind of framework - i expect there is a lot that can be improved and I have potentially got wrong.

Enjoy the rest of your sunday folks.

youtube.com
u/Maasu — 1 day ago

Github Copilot vs Other Harnesses

I look after AI delivery in my organisation. We currently have Github Copilot as our enterprise AI software development harness, adoption has been slow and the engineers haven’t really built a practice around structuring the repos to be AI optimized , creating agents that do certain tasks well, etc..

The head of software development in our org is now making a push to move to Claude Code and transforming into a full on AI-SDLC. He suggested a rather weird set up (imo) where we build agents using bedrock and agentcore , and use the claude agent SDK.

I believe we can reach 90% of the value of AI assisted coding with copilot github as opposed to other harnesses , and should focus our effort on training engineers so that they build an AI friendly engineering practice/context/repo structure etc..

Is my instinct wrong here? I have been following this space for a while, and while Copilot 365, Copilot Github, and Copilot Studio have a bad rep for being the worst AI offering, Microsoft has been really improving their value over the past few months.

reddit.com
u/FewNobody6138 — 2 days ago
▲ 1 r/GithubCopilot+1 crossposts

🎉 GitHub Copilot Student is back! 🚀

I just applied for the GitHub Copilot Student plan and got approved! 🎓✅

If you're a student, don't miss this opportunity. You'll get access to an AI coding assistant that can help you:
✨ Write code faster
💡 Generate code suggestions instantly
🐞 Debug and fix errors more efficiently
📚 Learn new programming concepts while coding
⏱️ Save hours of development time

If you're eligible, apply now and start taking advantage of it. Happy coding! 💻🔥

Link: https://docs.github.com/en/copilot/how-tos/copilot-on-github/set-up-copilot/enable-copilot/set-up-for-students

u/NormalStretch6749 — 1 day ago

GPT 5.4 doesn't seem to work on Insiders

For some reason the response gets cut abruptly. The model returns "Thinking..." and then simply stops.

Is this a known issue on VS Code Insiders? How do I debug the root cause?

reddit.com
u/lppedd — 2 days ago
▲ 2 r/GithubCopilot+1 crossposts

Visual Studio 2022 not reading/applying ConfiguredBringYourOwnModel_v1.json

What would cause Visual Studio 2022 to not read/apply "ConfiguredBringYourOwnModel_v1.json"?

On my machine with both Visual Studio 2022 and Visual Studio 2026, I've configured Visual Studio 2026's GitHub Copilot to use Ollama and my custom models show up in both versions of Visual Studio.

However, a co-worker only has Visual Studio 2022 installed and even though they manually copy the same json file to "%LOCALAPPDATA%\Microsoft\VisualStudio\Copilot\BringYourOwnModel\ConfiguredBringYourOwnModel_v1.json", the custom models are not available for selection.

What is the missing piece to activate BYOM with an Ollama Provider in Visual Studio 2022?

We are using the latest versions of Visual Studio 2022 and using a GitHub account not tied to an Enterprise organization.

[
  {
    "Name": "Ollama",
    "IsApiKeyAvailable": true,
    "Models": [
      {
        "ProviderName": "Ollama",
        "IsCustom": false,
        "IsSelected": true,
        "CustomURL": "http://localhost:11434",
        "Id": "My Custom Model",
        "DisplayName": "My Custom Model",
        "IsToolCallingEnabled": true,
        "IsVisionEnabled": true,
        "MaxInputTokens": 1000000,
        "MaxOutputTokens": 8192
      }
    ],
    "Endpoint": 10
  }
]

Thank you.

reddit.com
u/icnocop — 1 day ago

Has anyone gotten Kimi K2.7 to work?

For me, it just says: "Sorry, the response hit the length limit. Please rephrase your prompt."

Any tips on how to use it?

reddit.com
u/mogadichu — 2 days ago

GitHub Copilot App vs Claude Desktop App

Is GitHub Copilot App similar to Claude Desktop app ? At first insight they look quite similar

But would like to know more about GitHub Copilot App and how we can leverage it to its max ?

reddit.com
u/KookyOky — 2 days ago

Copilot’s BYOK Blocking for Inline Completion Makes No Sense. [THE FIX]

GitHub Copilot allows Bring Your Own Key (BYOK) for its Chat window, but it explicitly blocks those exact same custom models from being used for inline code auto-completion.

The official justification from the VS Code team is a supposed "lack of capable FIM (Fill-in-the-Middle) models." However, this excuse doesn't hold water:

  • It shifts blame incorrectly: If a user configures an incapable model for inline completion and it breaks, that is a user configuration error, not a flaw in VS Code.
  • It ignores standard error handling: Why is the team over-policing the user's model choice? They could easily validate the model's response, throw a clear error if it fails to support FIM formatting, and offer a fallback option to the default Copilot model.

Instead of removing those few lines that blocks user defined models, the issue remains buried in the "forever-backlog" (see VS Code Issue #318545).

🔥 The Fix: A Community Solution That Actually Works: 🔥

Frustrated by this arbitrary limitation, I looked for alternatives and found a new extension that bridges the gap: GitHub Copilot LLM Gateway. (Thanks to the Andrew Butson and Contributors)

This extension enables true inline completion support for local and custom models. While it is still a work in progress and doesn't handle responses as flawlessly as the native Copilot integration just yet it proves that the functionality is entirely possible.

If you care about local LLM freedom and open-source control over your dev environment, consider checking out the repo and contributing to help perfect it!

The good news is that it's actually open source, so anyone can keep using it forever. Now let's just hope Microsoft doesn't "solve the problem" by removing it from the VS Code Marketplace. 😂

u/studentofknowledg3 — 2 days ago

Any new GitHub Copilot features or real-world use cases worth sharing in a technical presentation?

I'm preparing a technical presentation for my team about GitHub Copilot. I'd like to include some of the latest features and practical, real-world use cases beyond basic code completion Any "hidden gem" features that aren't widely known.

Thanks in advance

reddit.com
u/CompetitiveStatus698 — 3 days ago