PWN::AI::Context AI evidence ingestion

Call the Ruby PWN::AI::Context module from pwn_eval to ingest local evidence (files, hexdumps, disassembly) without ever fabricating synthetic embedding vectors.

Sby Skills Guide Bot
SecurityIntermediate
109/15/2026
Claude Code
#pwn#ruby#context-ingestion#reverse-engineering#embeddings

Recommended for


name: pwn-ai-context description: Drive PWN::AI::Context from pwn_eval. license: MIT allowed-tools: [pwn, pwn_eval] metadata: bundled: true generated: true module: PWN::AI::Context source: pwn/ai/context_ingestion.rb

PWN::AI::Context

Local evidence ingestion; unavailable embeddings never become synthetic vectors.

When to use

Call PWN::AI::Context from pwn_eval when the task needs this module. Do not reimplement it in shell.

Methodologies

Generated from pwn/ai/context_ingestion.rb. Prefer the public class methods below. Class methods take (opts = {}) and read opts.

How to call

PWN::AI::Context.help
PWN::AI::Context.ingest(opts)

Public methods

  • authors
  • ingest
  • retrieve
  • help
  • attach_disasm
  • attach_file
  • attach_hexdump
  • attach_http_transcript

References

  • references/urls.md — URLs from source

Source

pwn/ai/context_ingestion.rb

Verification

PWN::AI::Context.respond_to?(:authors) after the module is loaded. Read the source for parameter names.

Related skills