Cross-Pollinate Hex MCP Servers
Description
Diff-driven audit: find real transferable changes across hex-line-mcp, hex-ssh-mcp, hex-graph-mcp. Each delta is classified, not blindly ported. | Server | Directory | Tools | Role | |--------|-------
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for levnikolaevich/claude-code-skills, shared by 22 entries
in this directory. It describes the repository, not this entry specifically.
description: "Audit hex MCP servers for transferable optimizations using diff-driven transfer matrix" allowed-tools: "Bash,Agent,mcp__hex-line__read_file,mcp__hex-line__grep_search,mcp__hex-line__outline,mcp__hex-line__directory_tree,mcp__hex-line__edit_file,mcp__hex-line__write_file"
Cross-Pollinate Hex MCP Servers
Diff-driven audit: find real transferable changes across hex-line-mcp, hex-ssh-mcp, hex-graph-mcp. Each delta is classified, not blindly ported.
| Server | Directory | Tools | Role |
|---|---|---|---|
| hex-line-mcp | mcp/hex-line-mcp/ |
11 | Local file ops (source of current deltas) |
| hex-ssh-mcp | mcp/hex-ssh-mcp/ |
6 | SSH remote ops |
| hex-graph-mcp | mcp/hex-graph-mcp/ |
7 | Code knowledge graph |
Phase 0: Change Inventory
Start from actual changes, not theoretical checklists.
git diff --stat -- mcp/hex-line-mcp/
git status -- mcp/hex-line-mcp/
Read each changed file's diff. Classify changes into categories:
| Category | Examples |
|---|---|
| API/schema | New params, changed descriptions, tool registration |
| Runtime behavior | Edit logic, search logic, error handling |
| Output normalization | Dedup, truncate, format pipelines |
| Shared infra | Version sourcing, update-check, coerce, security |
| Tests | New test coverage |
| Docs | README, descriptions |
Phase 1: Transfer Matrix
For EACH change from Phase 0, check if it applies to hex-ssh and hex-graph.
**Decision categories:**
APPLY— real gap, same pattern needed in target serverALREADY_PRESENT— target already has equivalent implementationN/A_BY_DESIGN— change is domain-specific to source (e.g., local-only, SSH-only)REJECT— change would hurt target server
**Required evidence:** file + line reference for BOTH source change AND target server status.
Output:
| Change | Evidence (hex-line) | hex-ssh status | hex-graph status | Decision | Rationale |
|---|
Shared optimization checks (always verify these):
| Check | What to look for |
|---|---|
| Dynamic version | createRequire(...)("./package.json") vs hardcoded string in McpServer constructor and checkForUpdates |
| Missing dependencies | All imports have matching entries in package.json dependencies |
| Safe process spawning | execFileSync (arg array) vs execSync (shell string interpolation) in production code |
| CRLF normalization | Consistent .replace(/\r\n/g, "\n") where files are read |
| Benchmark parity | README claims token efficiency → benchmark.mjs exists with reproducible numbers |
Phase 2: Apply Transfers
Implement all `APPLY` decisions from Phase 1.
For each change:
- Read target file with hex-line tools
- Apply the change (edit_file or write_file)
- Verify syntax:
npm run checkin target package
Phase 3: Local Cleanup (optional)
If Phase 0 revealed drift in hex-line's ow
Related Skills
Fastapi Review
Review a FastAPI application for architecture, async correctness, dependency injection, Pydantic schemas, secu
Security Defense in Depth
Implement multi-layered testing and security best practices.
Security SecLists Official Repository
[OWASP Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
Security Threat Hunting with Sigma Rules
Use Sigma detection rules to hunt for threats and analyze security events
Security Maintenance Walkthrough - 2026-03-29
- Re-triaged the full 2026-03-15 security finding set against current `main` and wrote a fresh current-head re
Security Google Workspace Model Armor
Filter user-generated content for safety
Security Related Agents
Django Reviewer
Expert Django code reviewer specializing in ORM correctness, DRF patterns, migration safety, security misconfi
Token Auditor
Scans ui/src/ for hardcoded visual values, duplicate components, and shadcn replacement candidates; produces d
Gitnexus Security Boundary Reviewer
GitNexus security and trust-boundary reviewer. Use for auth, permissions, secrets, injection, unsafe parsing,