
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@rankcli/agent-runtime
Advanced tools
Core SEO engine for RankCLI. 280+ checks, 7 deep analyzers, framework-specific fix generation.
First SEO engine with AI search optimization:
import { analyzers } from '@rankcli/agent-runtime';
// Comprehensive analysis
const result = await analyzers.analyzeComprehensive(html, url);
// Individual analyzers
const geo = await analyzers.analyzeGEO(html, url, robotsTxt);
const cwv = analyzers.analyzeCoreWebVitals(html, url);
const security = analyzers.analyzeSecurityHeaders(headers, url);
const schema = analyzers.analyzeStructuredData(html, url);
const images = analyzers.analyzeImages(html, url);
const links = analyzers.analyzeInternalLinking(html, url);
const mobile = analyzers.analyzeMobileSEO(html, url);
| Analyzer | Checks |
|---|---|
| GEO | AI crawler access, robots.txt, SSR detection, LLM signals |
| Core Web Vitals | LCP, CLS, INP, TTFB estimation |
| Security | HTTPS, HSTS, CSP, grades A+ to F |
| Structured Data | JSON-LD validation, rich results |
| Images | Alt text, dimensions, formats, lazy loading |
| Internal Links | Anchor text, orphan detection |
| Mobile | Viewport, touch targets, PWA |
Auto-generate SEO fixes for 25+ frameworks:
import { generateFrameworkFix } from '@rankcli/agent-runtime';
const fix = generateFrameworkFix({
framework: 'nextjs-app',
issue: { code: 'MISSING_TITLE', ... },
siteMeta: { title: 'My Site', description: '...' }
});
Supported:
Isomorphic engine - works in Node.js, Deno, and WASM:
src/
├── analyzers/ # 7 deep analyzers (GEO, CWV, etc.)
├── audit/ # 280+ individual checks
├── fixer/ # Framework-specific fix generation
├── frameworks/ # Framework detection
├── content/ # Content analysis
├── geo/ # GEO tracking
├── git/ # PR/commit helpers
└── index.ts
pnpm add @rankcli/agent-runtime
import { runFullAudit, generateFixes } from '@rankcli/agent-runtime';
const audit = await runFullAudit({
url: 'https://example.com',
maxPages: 5,
});
const fixes = await generateFixes(audit.issues, { cwd: process.cwd(), url: 'https://example.com' });
GEO/AI-readiness checks (crawler access, LLM content signals, citation readiness) run as part of every full audit — no separate flag needed.
import { analyzers } from '@rankcli/agent-runtime';
const robotsTxt = analyzers.generateAIFriendlyRobotsTxt('https://example.com');
import { analyzers } from '@rankcli/agent-runtime';
const schema = analyzers.generateSchemaTemplate('article', {
siteName: 'My Blog',
siteUrl: 'https://myblog.com',
authorName: 'John Doe'
});
pnpm install
pnpm dev # Watch mode
pnpm test # Run tests
pnpm build # Build Node.js + Deno
MIT
FAQs
RankCLI agent runtime - executes SEO audits and fixes with AI
The npm package @rankcli/agent-runtime receives a total of 944 weekly downloads. As such, @rankcli/agent-runtime popularity was classified as not popular.
We found that @rankcli/agent-runtime 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.