read-write-memory

Read and write process memory across data types via CLI, TCP, or bridge.

15|4|Updated Mar 7, 2026
One-click install
npx skills add https://github.com/vzco/arc-probe --skill read-write-memory
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: read-write-memory
Source: https://github.com/vzco/arc-probe/tree/main/plugins/arc-probe/skills/read-write-memory
Command: npx skills add https://github.com/vzco/arc-probe --skill read-write-memory

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Read and write memory across all data types to enable precise memory inspection and patching.

Core Features & Use Cases

  • Read memory from a live process across raw bytes and typed reads (ints, floats, strings) to diagnose issues.
  • Write memory with safety rules to patch values, toggle flags, or modify behavior during debugging.
  • Use three delivery methods (CLI, TCP, or bridge) to integrate with automation and agents.

Quick Start

Run a read command against a known address to verify memory access.

Frequently Asked Questions about read-write-memory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I read and write process memory during live debugging?

Read and write process memory during live debugging by targeting addresses across raw bytes, ints, floats, and strings to inspect and patch values safely without destabilizing the target process.

What is the best way to safely patch memory values in a live application?

Safely patch memory values in a live application by applying explicit safety rules and proper pointer handling to modify behavior, toggle flags, or update values while preventing target process crashes.

Can I integrate memory inspection into an automated agent workflow?

Integrate memory inspection into an automated agent workflow using TCP or bridge delivery methods to execute typed reads and writes remotely alongside your existing automation tools.

Does process memory manipulation support typed data reads like floats and strings?

Process memory manipulation supports typed data reads including integers, floats, and strings, allowing precise inspection and modification of specific data structures within the target process.

Why does writing to process memory destabilize my target application?

Writing to process memory destabilizes your target application when explicit safety rules and correct data-type operations are skipped, causing improper pointer handling that crashes the target process.