npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

oc-ghcp-headers

v0.1.1

Published

OpenCode plugin that customizes GitHub Copilot x-initiator headers

Readme

oc-ghcp-headers

[!WARNING] This is experimental software provided as-is. Use it at your own risk. Modifying request behavior may lead to degraded service, policy enforcement, or account-level actions. The authors and contributors are not responsible for any resulting account issues, restrictions, or losses.

This plugin controls the x-initiator header for GitHub Copilot requests in OpenCode.

Behavior

  • First user message in a session: x-initiator is randomized between user and agent.
  • Follow-up user messages: x-initiator defaults to agent, with optional chance to send user.

The plugin determines first vs follow-up by reading recent session messages and checking for prior assistant/tool activity. It explicitly ignores the current turn's pre-created user message and assistant placeholder so first-turn detection stays accurate.

If session history cannot be loaded, it fails closed to agent.

Setup

Install from npm:

bun add oc-ghcp-headers

Then enable it in ~/.config/opencode/opencode.jsonc:

{
  "plugin": ["oc-ghcp-headers"]
}

Restart OpenCode after updating config.

Configuration

Configure percentages in opencode.json / opencode.jsonc under provider.github-copilot.options:

{
  "provider": {
    "github-copilot": {
      "options": {
        "firstMessageAgentPercent": 0,
        "followupMessageAgentPercent": 100
      }
    }
  }
}
  • firstMessageAgentPercent (default 0)
    • Percentage chance first message is sent as agent
    • 0 => always user
    • 10 => 10% agent, 90% user
    • 100 => always agent
  • followupMessageAgentPercent (default 100)
    • Percentage chance follow-up message is sent as agent
    • 100 => always agent
    • 90 => 90% agent, 10% user
    • 0 => always user
  • DEBUG_ENABLED
    • Enable/disable plugin debug logging

Scope

  • Applies only to models where providerID includes github-copilot.
  • This plugin only sets request headers; auth/token handling remains managed by OpenCode.

Debug Log

  • Log file: /tmp/oc-ghcp-headers-debug.log
  • Watch live:
tail -f /tmp/oc-ghcp-headers-debug.log

Maintainer Docs

  • Publishing and release process: docs/release.md

License

  • MIT. See LICENSE.

Credits