A multi-agent cybersecurity triage, vulnerability verification, and code auditing plugin for Google Antigravity, Claude Code, Cursor, and Codex, powered by nyxspecter4/kin-sft-lora.
- Live Model Triage:
kin_triage_vulnerabilitycalls the KIN model (kin-sft-loraQ4_K_M) through the publicnyxspecter4/kin-cybersecSpace when reachable. - Deterministic Rule Scan:
kin_scan_coderuns an instant, offline CWE pattern scan (SQLi, command injection, XSS, path traversal, SSRF, secrets, JWT confusion). Output is clearly labeled as rule-engine results, not model analysis. - Real CVE Data:
kin_explain_cvefetches official NVD records (description, CVSS, weaknesses, references) — never invented CVE facts. - Multi-Host Compatibility: Manifests for Antigravity, Claude Code, Cursor, and Codex; any MCP-compliant client via
mcp.json. - Honest Fallback: If the model is unreachable, triage falls back to the rule engine and says so in the response.
Place in your global plugin directory:
~/.gemini/config/plugins/kin-security/plugin install NyxSpecter4/kin-security-plugin
/add-plugin https://github.com/NyxSpecter4/kin-security-plugin
Add to your mcp.json:
{
"mcpServers": {
"kin-security": {
"command": "node",
"args": ["path/to/kin-security-plugin/mcp-server/index.cjs"]
}
}
}| Tool | Parameters | Description |
|---|---|---|
kin_triage_vulnerability |
scenario_desc, user_payload, defense_goal |
Live KIN model triage; labeled rule-engine fallback if the model is offline. |
kin_scan_code |
code, filename |
Instant deterministic CWE rule scan (labeled as regex-level). |
kin_explain_cve |
cve_id, context |
Official NVD record for a CVE: description, CVSS, weaknesses, references. |
kin-security-plugin/
├── plugin.json # Plugin metadata
├── mcp.json # MCP server registry
├── .antigravity-plugin # Antigravity host manifest
├── .claude-plugin # Claude Code host manifest
├── .cursor-plugin # Cursor host manifest
├── .codex-plugin # Codex host manifest
├── mcp-server/
│ ├── index.cjs # JSON-RPC 2.0 stdio MCP server
│ ├── test-client.cjs # MCP smoke test
│ └── live-test.cjs # End-to-end test incl. NVD lookup
├── skills/
│ └── kin-security/
│ └── SKILL.md # Agent instructions & prompt engineering
└── README.md
- Model:
nyxspecter4/kin-sft-lora(3B Qwen2.5 + LoRA; Q4_K_M GGUF in-repo). - Dataset:
nyxspecter4/kin-cyber-dpo-v2(1,637 DPO pairs; 5 viewer configs). - Live endpoint:
nyxspecter4/kin-cybersec(CPU, Q4_K_M).
KIN_SPACE_URL— override the Space base URL (default:https://nyxspecter4-kin-cybersec.hf.space).KIN_MODEL_TIMEOUT_MS— model call timeout (default75000; free-tier cold starts can take 30-60s).
Built at BountyWarz — the cyber-education platform behind this tool. More from the same studio: kin-security-action · kin-security-plugin · monk-plugin · Kinetigor Desk.
MIT © NyxSpecter4