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

oh-my-renesas

v0.1.5

Published

OpenCode plugin for Renesas MCU development

Downloads

696

Readme

oh-my-renesas

OpenCode plugin for Renesas MCU development with 4 specialized AI agents and 17 tools.

Features

  • renesas-fsp-expert — FSP expert for RA MCU development (drivers, interrupts, clocks, build, flash)
  • renesas-librarian — Product information specialist (MCU family search and comparison)
  • renesas-community — Community knowledge agent (accesses community.renesas.com via Playwright)
  • renesas-freertos-expert — FreeRTOS expert for RA MCU development (task design, config, debugging, TCP/FAT)
  • 17 tools — 9 FSP tools + 2 hardware tools + 2 product tools + 3 FreeRTOS tools

Installation

Quick Install (Recommended)

bunx oh-my-renesas
# or
npx oh-my-renesas

Manual Install

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

{
  "plugin": ["oh-my-renesas"]
}

Uninstall

bunx oh-my-renesas --uninstall

Configuration (Optional)

Create ~/.config/opencode/oh-my-renesas.json:

{
  "agents": {
    "renesas-fsp-expert": { "model": "anthropic/claude-opus-4-5" },
    "renesas-freertos-expert": { "model": "anthropic/claude-sonnet-4-20250514" }
  },
  "fsp": {
    "fsp_pack_path": "/path/to/fsp",
    "jlink_path": "/path/to/JLink",
    "e2studio_cli": "/path/to/e2studio"
  }
}

Tools

FSP Tools

  • RenesasGetDriverForPeripheral — Find correct FSP driver for MCU family + peripheral
  • RenesasGetApiUsage — Get open/configure/use/close code example for a driver
  • RenesasCompareMcuFamilies — Side-by-side MCU family comparison
  • RenesasGetInterruptConfig — IRQ setup checklist for driver + family
  • RenesasDiagnoseError — Root cause analysis for FSP error codes
  • RenesasGetClockConfig — Clock setup recipe for MCU family + goal
  • RenesasSearchFspDocs — Full-text search across FSP documentation
  • RenesasGetFspModules — List FSP modules for a family
  • RenesasGetFspErrors — All known FSP error codes

Hardware Tools

  • RenesasRaBuildProject — Build RA project via e2studio CLI or CMake
  • RenesasRaFlashFirmware — Flash firmware via J-Link
  • RenesasRaReadRegister — Read MCU register/memory via J-Link

Product Tools

  • searchRenesasProducts — Search Renesas MCU families by keyword/core/application
  • getProductFamily — Get detailed info about a specific MCU family

FreeRTOS Tools

  • RenesasGetFreertosConfig — FreeRTOSConfig.h setup recipe for MCU family + goal (basic-multitasking, tcp-networking, fat-filesystem)
  • RenesasDiagnoseFreertosIssue — Root cause analysis and fixes for FreeRTOS issues (stack overflow, deadlock, priority inversion)
  • RenesasGetFreertosApiUsage — FreeRTOS API code examples (task-creation, queue, mutex, semaphore, timer, event-group)

Requirements

  • OpenCode with plugin support
  • Playwright MCP (for renesas-community agent)
  • J-Link (optional, for hardware tools)
  • e2studio CLI (optional, for build tool)
  • Renesas FSP pack (optional, for RenesasSearchFspDocs)

Migration

See MIGRATION.md if upgrading from fsp-mcp.