opencode-skills-tracker-plugin
v1.0.0
Published
An OpenCode TUI plugin that displays loaded skills with their load timestamps in the sidebar footer.
Maintainers
Readme
opencode-skills-tracker-plugin
An OpenCode TUI plugin that displays loaded skills with their load timestamps in the sidebar footer.
It watches the current session's tool calls for skill invocations and lists each skill that has been loaded, along with the time it was last loaded — so you always know which skills are active in your session.
Features
- Shows every skill loaded in the current session in the sidebar
- Displays the last load time (
HH:MM:SS) for each skill - Collapsible section — click the
Skillsheader to toggle - Auto-refreshes every 2 seconds
Installation
Add the plugin to your OpenCode config (opencode.json):
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["opencode-skills-tracker-plugin"]
}OpenCode installs the package from npm automatically on next launch.
How it works
The plugin registers a sidebar_content slot and scans the active session's
message parts for completed/running skill tool calls. For each unique skill
name it records the most recent start time and renders the list, sorted by most
recently loaded.
