
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@opena2a/ai-classifier
Advanced tools
Tier-based AI package classification (native / adjacent / unrelated) for OpenA2A trust tooling
Decides whether a package is AI-native, AI-adjacent, or unrelated so ai-trust, hackmyagent, and opena2a can route it correctly.
ai-trust is for AI packages. Scanning lodash with it produces confusing scores and wastes the user's time. This package is the shared rulebook that every OpenA2A CLI uses to answer one question: does AI trust apply to this package?
| Tier | Meaning | Example | ai-trust behavior |
|---|---|---|---|
| native | AI-specific (MCP server, A2A agent, skill, AI tool, LLM) | @modelcontextprotocol/server-filesystem | Full trust verification |
| adjacent | General-purpose but in the AI trust boundary | openai, dotenv | Stubbed in v0.3 → v0.4 |
| unrelated | General-purpose library, no AI surface | express, chalk, typescript | Defer to HMA |
| unknown | Can't classify confidently | novel or unnamed packages | Surface uncertainty, let user decide |
import { classify, isAiTrustScope } from "@opena2a/ai-classifier";
const result = classify({ name: "express", packageType: "library" });
// { tier: "unrelated", reasons: [], reasoning: "Registered as a general-purpose library" }
if (isAiTrustScope(result)) {
// run ai-trust verification
} else {
// route to HMA
}
package_type is the strongest signal. We trust the registry's classification first.chalk, typescript, @types/*, etc.).unknown, not unrelated. False rejections (dropping an AI package from an audit) are worse than uncertainty.FAQs
Tier-based AI package classification (native / adjacent / unrelated) for OpenA2A trust tooling
The npm package @opena2a/ai-classifier receives a total of 64 weekly downloads. As such, @opena2a/ai-classifier popularity was classified as not popular.
We found that @opena2a/ai-classifier 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 campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.