
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@operon/plugin-publisher-sdk
Advanced tools
ElizaOS plugin for Operon - monetize agent responses with quality-weighted sponsored placements
ElizaOS plugin for Operon - the protocol-level monetization layer for AI agents. Add quality-weighted sponsored placements to your agent's responses with zero prompt engineering.
The plugin runs a Provider that fires on every message. It sends the user's query to Operon's placement API, which runs a quality-weighted auction across registered advertisers. In v1, context fields (category, asset, intent) use sensible defaults - the Operon server handles matching and returns blocked when nothing fits. If a relevant, trustworthy service matches:
If nothing matches, the agent responds normally. No degradation, no empty ad slots.
npx @elizaos/cli plugins add @operon/plugin-publisher-sdk
Or manually:
npm install @operon/plugin-publisher-sdk
Set your environment variables:
OPERON_URL=https://api.operon.so # Operon network endpoint
OPERON_API_KEY=your-publisher-key # Your publisher API key from Operon
OPERON_PUBLISHER_NAME=my-agent # Optional - defaults to character name
import operonPublisherPlugin from "@operon/plugin-publisher-sdk";
export const character: Character = {
name: "MyResearchAgent",
plugins: [operonPublisherPlugin],
settings: {
secrets: {
OPERON_URL: process.env.OPERON_URL,
OPERON_API_KEY: process.env.OPERON_API_KEY,
},
},
// ...
};
{
"name": "MyResearchAgent",
"plugins": ["@operon/plugin-publisher-sdk"],
"settings": {
"secrets": {
"OPERON_URL": "https://api.operon.so",
"OPERON_API_KEY": "your-publisher-key"
}
}
}
When a sponsored placement fills:
[Sponsored] Relevant service available: Jupiter Aggregator
- Best-rate DEX aggregation across Solana
- Trust score: 82/100
When nothing matches, the response is clean - no mention of Operon or sponsorship.
If you want to use the Operon SDK outside ElizaOS:
import { createOperonPublisherSDK } from "@operon/plugin-publisher-sdk";
const sdk = createOperonPublisherSDK("https://api.operon.so", "your-key");
const result = await sdk.requestPlacement({
publisher: "my-agent",
slotType: "agent-response",
requestContext: {
query: "best way to swap ETH to USDC",
category: "defi",
asset: "ETH",
amount: "5",
intent: "swap",
},
responseContext: {
actions: ["swap", "compare"],
sentiment: "neutral",
},
});
See operon-otaku for a complete example of an ElizaOS agent with the Operon plugin integrated.
FAQs
ElizaOS plugin for Operon - monetize agent responses with quality-weighted sponsored placements
The npm package @operon/plugin-publisher-sdk receives a total of 13 weekly downloads. As such, @operon/plugin-publisher-sdk popularity was classified as not popular.
We found that @operon/plugin-publisher-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.