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

@the3asic/opencode-smart-title

v0.2.2

Published

OpenCode plugin that automatically generates meaningful session titles using AI and smart context selection

Readme

Smart Title Plugin (Fork)

This plugin auto-generates meaningful OpenCode session titles from your conversation.

Fork Notice

This repository is a fork of:

  • Upstream: Tarquinen/opencode-smart-title
  • Fork: the3asic/opencode-smart-title

The npm package for this fork is:

  • @the3asic/opencode-smart-title

What This Fork Adds

Compared to upstream, this fork adds:

  • Custom prompt support via config (prompt)
  • Directory exclusion (excludeDirectories) so specific paths are ignored
  • Config model fallback flow with better provider/model selection behavior
  • Subagent skip logic (does not rename subagent sessions)
  • Smarter context extraction (keeps full user message + first/last assistant reply per turn)
  • Improved logging and error output for debugging and operations

How It Works

  1. Plugin listens for OpenCode session.status events.
  2. When status becomes idle, it checks gates:
    • plugin enabled
    • not a subagent session
    • current directory not excluded
    • updateThreshold reached
  3. It loads recent conversation context and builds a compact prompt payload.
  4. It picks a model:
    • use configured model first (if set)
    • fallback to authenticated providers in priority order
  5. It generates a short title and updates the current session title.

Installation

npm install @the3asic/opencode-smart-title

Add to ~/.config/opencode/opencode.json:

{
  "plugin": ["@the3asic/opencode-smart-title"]
}

Configuration

The plugin supports global and project-level config:

  • Global: ~/.config/opencode/smart-title.jsonc
  • Project: .opencode/smart-title.jsonc (overrides global)

The plugin auto-creates a default global config on first run.

{
  "enabled": true,
  "debug": false,
  // Optional, for example: "opencode/gpt-5-nano"
  // "model": "anthropic/claude-haiku-4-5",
  // Optional custom generation prompt
  // "prompt": "Generate very short technical titles...",
  "updateThreshold": 1,
  // Optional directory blacklist
  // "excludeDirectories": ["/home/ubuntu/.heartbeat"]
}

Local Development (Optional)

If you are actively developing this plugin, you can load local build output directly:

{
  "plugin": [
    "file:///absolute/path/to/opencode-smart-title/dist/index.js"
  ]
}

Use package install for daily usage across machines, and local file mode only for development/debugging.

License

MIT