nebula-logger-plugin-development

nebula-logger-plugin-development is a skill for Claude Code, Codex from jongpie/NebulaLogger. It costs 84 tokens per session (2,400 once invoked), scanned A, original, MIT.

A development guide for adding extensions to Nebula Logger, a Salesforce logging package. It covers custom actions that run when log events occur, during batch processing, or when logs are purged, as well as outbound integrations such as Slack notifications.

In plain words
What is it for?
Creating Nebula Logger plugins, handling log events, adding cleanup actions, sending log information to external services, and testing version compatibility.
Why use it?
It explains which package version exposes the extension points and what interfaces and configuration are required. This helps avoid building a plugin against APIs that are unavailable or incompatible.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jongpie/nebulalogger/nebula-logger-plugin-development
Any agent
npx skills add jongpie/NebulaLogger --skill nebula-logger-plugin-development
Clone the repo
git clone --depth 1 https://github.com/jongpie/NebulaLogger

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nebula-logger-plugin-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/jongpie/nebulalogger/nebula-logger-plugin-development.svg)](https://agentmods.dev/skills/jongpie/nebulalogger/nebula-logger-plugin-development)
Your own site
<a href="https://agentmods.dev/skills/jongpie/nebulalogger/nebula-logger-plugin-development"><img src="https://agentmods.dev/badge/skills/jongpie/nebulalogger/nebula-logger-plugin-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,400 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00084 $0.02400
Opus 5 $0.00042 $0.01200
Sonnet 5 $0.00017 $0.00480
Haiku 4.5 $0.00008 $0.00240

Measured 4d ago against content hash 847592142cc0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

nebula-logger-plugin-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/nebula-logger-plugin-development/SKILL.md · 124 lines

How it starts

The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Building Plugins for Nebula Logger

Package Compatibility

The plugin framework is only available in the unlocked package. The managed package (namespace Nebula) does not currently expose the plugin extension points.

If you plan to write plugins, install the unlocked package. See nebula-logger-install for the choice.

Note that LoggerPlugin, LoggerPlugin.Triggerable, LoggerPlugin.Batchable, LoggerTriggerableContext, and LoggerBatchableContext are all public (not global). Everywhere else in this skill collection, the guidance is "only rely on global" (see the "Supported API Surface" section of nebula-logger-instrumentation). The plugin framework is a deliberate exception: the extension points are public because they're only reachable inside the unlocked package's own compilation unit. As with any public surface, breaking changes are possible - pin plugins to a Nebula Logger version you've tested against and re-verify after upgrades.

Plugin Framework Overview

Nebula Logger's plugin framework lets you register Apex classes to run inside two extension points:

  1. Trigger extension point - Runs during LoggerSObjectHandler execution on LogEntryEvent__e, Log__c, LogEntry__c, LogEntryTag__c, LoggerScenario__c, and LoggerTag__c triggers. Use this to add fields, enrich data, or send external notifications when a log is created.
  2. Batch extension point - Runs during LogBatchPurger execution. Use this to archive logs to an external system, apply custom purge policies, or emit metrics on purged records before they're deleted.

Both extension points are driven by LoggerPlugin__mdt records. Adding a plugin means: writing an Apex class that implements the right interface (or both, if the plugin has trigger and batch responsibilities), then creating a LoggerPlugin__mdt record that points at it.

Strongly prefer Apex over Flow for both extension points. The framework technically supports Flow-based plugins via SObjectHandlerFlowName__c / BatchPurgerFlowName__c, but Flow support currently has known issues with no fixed ETA - it may be deprecated altogether in a future release. New plugins should implement the Apex interfaces below and leave the Flow fields on the LoggerPlugin__mdt record blank.

Read the full file on GitHub · 124 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 124 lines · 84 tokens per session scan A 847592142cc0

Subscribe to this mod's changes

nebula-logger-plugin-development is a skill published in the GitHub repository jongpie/NebulaLogger (958 stars, last pushed yesterday), licensed MIT. It adds 84 tokens to every session and 2,400 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sfcc-performance

Performance optimization strategies for Salesforce B2C Commerce Cloud including caching, efficient data retrieval, index-friendly APIs, and job optimization. Use when asked about SFCC performance, caching strategies, or optimization.

taurgis/sfcc-dev-mcp · 43 tokens

sfcc-localserviceregistry

Guide for creating server-to-server integrations in Salesforce B2C Commerce using LocalServiceRegistry. Use this when asked to integrate external APIs, create HTTP services, implement OAuth flows, or configure service credentials.

taurgis/sfcc-dev-mcp · 48 tokens

sfcc-ocapi-hooks

Guide for implementing OCAPI hooks in Salesforce B2C Commerce. Use this when asked to create OCAPI hooks, extend API endpoints, validate API requests, or modify API responses.

taurgis/sfcc-dev-mcp · 43 tokens

sfcc-scapi-hooks

Guide for implementing SCAPI hooks in Salesforce B2C Commerce. Use this when asked to create SCAPI hooks, extend Shopper API endpoints, validate API requests, or modify API responses for headless commerce.

taurgis/sfcc-dev-mcp · 47 tokens

sfcc-security

Secure coding best practices for Salesforce B2C Commerce Cloud including CSRF protection, authentication, authorization, cryptography, and secrets management. Use when asked about SFCC security, input validation, or secure coding patterns.

taurgis/sfcc-dev-mcp · 47 tokens

sfcc-sfra-scss

Best practices for styling and theming SFRA storefronts using SCSS. Use when asked to create style overrides, theming, responsive layouts, or CSS customizations in SFCC.

taurgis/sfcc-dev-mcp · 44 tokens