npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

nyx-memory

v1.0.0

Published

Structured pentest engagement memory for the Nyx autonomous agent

Readme

nyx-memory

Structured pentest engagement memory for AI agents. nyx-memory is an MCP server that gives your AI coding assistant persistent, structured storage for penetration testing engagements — hosts, services, findings, credentials, evidence, attack narratives, and command logs.

Quick start

npx nyx-memory serve

MCP configuration

Claude Desktop / Claude Code

{
  "mcpServers": {
    "nyx-memory": {
      "command": "npx",
      "args": ["nyx-memory", "serve"]
    }
  }
}

opencode

{
  "mcpServers": {
    "nyx-memory": {
      "type": "stdio",
      "command": "npx",
      "args": ["nyx-memory", "serve"]
    }
  }
}

Tools (19)

Engagement lifecycle

| Tool | Description | |------|-------------| | engagement_create | Create a new pentest engagement with target, scope, and rules of engagement | | engagement_list | List all engagements | | engagement_resume | Resume a previous engagement | | engagement_status | Get status summary of the active engagement | | engagement_close | Close the active engagement |

Host & service tracking

| Tool | Description | |------|-------------| | host_discover | Add or merge a host with services (additive merge on re-discover) | | host_update | Append to a host section (enumeration, vulnerabilities, exploitation, etc.) |

Findings

| Tool | Description | |------|-------------| | finding_add | Record a vulnerability finding with severity and CVSS | | finding_update | Update finding status/notes (notes are appended) |

Credentials

| Tool | Description | |------|-------------| | credential_add | Store a discovered credential |

Evidence

| Tool | Description | |------|-------------| | evidence_save | Save evidence file content to the engagement |

Narrative

| Tool | Description | |------|-------------| | attack_path_update | Append a step to the attack path narrative | | executive_summary_update | Update the executive summary |

Tracking

| Tool | Description | |------|-------------| | dead_end_log | Record a technique that didn't work (prevents re-trying) | | todo_add | Add a TODO item with priority | | todo_complete | Mark a TODO as completed |

Reading

| Tool | Description | |------|-------------| | notes_read | Read findings, hosts, TODOs, credentials, attack path, command log, or search |

Ingestion

| Tool | Description | |------|-------------| | command_log | Log a command execution | | ingest_tool_output | Parse and ingest structured output from nmap, masscan, gobuster, nikto |

CLI

# Create an engagement
nyx-memory create --target "Acme Corp" --scope 10.0.0.0/24 192.168.1.0/24

# Check status
nyx-memory status

# List engagements
nyx-memory list

# Ingest tool output
nyx-memory ingest --tool nmap --file scan.xml

# Pipe output and log it
nmap -sV 10.0.0.1 | nyx-memory log --tool nmap --target 10.0.0.1

nyx-log

nyx-log is a transparent command wrapper that runs any command normally while capturing its output and logging it to the active engagement.

# Wrap any command — same stdout/stderr/exit code, but output is logged
nyx-log nmap -sV -p- 10.0.0.1
nyx-log gobuster dir -u http://10.0.0.1 -w /usr/share/wordlists/common.txt

# Auto-detects tool name, target IP, and structured output files
# If nmap -oX is used, the XML file is automatically ingested
nyx-log nmap -sV -oX scan.xml 10.0.0.1

Data storage

Engagement data is stored as JSON files under ~/.nyx-memory/ (override with NYX_DATA_DIR). Each engagement gets its own directory with rendered Markdown files for easy browsing.

License

MIT