
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
@howaboua/opencode-per-agent-skills
Advanced tools
Filter OpenCode skills on a per-agent basis using configurable allowlists and blocklists
Filter OpenCode skills on a per-agent basis using configurable allowlists and blocklists.
Prevent skill leakage, enforce agent roles, and keep your system prompt clean.
Add to your OpenCode config:
// opencode.jsonc
{
"plugin": ["@howaboua/opencode-per-agent-skills@latest"],
}
Using @latest ensures you always get the newest version automatically when OpenCode starts.
Restart OpenCode. The plugin will automatically start filtering skills based on your configuration.
The plugin uses its own config file:
~/.config/opencode/per-agent-skills.jsonc, created automatically on first run.{
// ===========================================================================
// OpenCode Per-Agent Skills Configuration
// ===========================================================================
// 1. Global Filtering (Applies to ALL agents)
"global": {
// Skills to show to EVERY agent (overrides agent-specific excludes)
// "include": ["basic-file-ops"],
// Skills to hide from EVERY agent
// "exclude": ["deprecated-skill"]
},
// 2. Per-Agent Configuration
"agents": {
// Example: Restricted "compaction" agent
"compaction": {
"include": ["git-release", "code-summary"],
"exclude": ["code-modification"],
},
// Example: Broad "exploration" agent
"exploration": {
"include": ["*-analysis", "*-docs", "file-discovery"],
"exclude": ["git-push"],
},
},
// 3. Metadata Filters (Advanced)
"metadataFilters": {
"category": {
"review": {
"include": ["security", "linting"],
},
},
},
// 4. Debugging
"verbose": false,
}
include) and blocklists (exclude) for each agent.git-*, *-analysis, or * patterns.SKILL.md files.experimental.chat.system.transform.<available_skills> XML block in the system prompt based on your configuration.To install from source for development:
git clone https://github.com/IgorWarzocha/Opencode-per-agent-skills-plugin.git
cd Opencode-per-agent-skills-plugin
bun install && bun run build
{
"plugins": ["/path/to/Opencode-per-agent-skills-plugin"],
}
MIT
FAQs
Filter OpenCode skills on a per-agent basis using configurable allowlists and blocklists
The npm package @howaboua/opencode-per-agent-skills receives a total of 1 weekly downloads. As such, @howaboua/opencode-per-agent-skills popularity was classified as not popular.
We found that @howaboua/opencode-per-agent-skills 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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.