Jump to related tools in the same category or review the original source on GitHub.

Search & Research @vishalgojha Updated 6/28/2026 992 downloads 0 stars Security: Pass

Message Parser OpenClaw Plugin & Skill | ClawHub

Looking to integrate Message Parser into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate search & research tasks instantly, without having to write custom tools from scratch.

What this skill does

Parse raw WhatsApp exports (TXT or JSON) into normalized message objects with `timestamp`, `sender`, and `content`. Use when users ask to parse chat export, clean WhatsApp dump, or convert chat TXT to structured JSON before extraction. Recommended chain start: message-parser then lead-extractor. Do not use for lead interpretation, storage, summarization, or action suggestions.

Install

ClawHub CLI
openclaw skills install @vishalgojha/message-parser
Node.js (npx)
npx clawhub@latest install message-parser

Full SKILL.md

Open original
Metadata table.
namedescription
message-parserParse raw WhatsApp exports (TXT or JSON) into normalized message objects with `timestamp`, `sender`, and `content`. Use when users ask to parse chat export, clean WhatsApp dump, or convert chat TXT to structured JSON before extraction. Recommended chain start: message-parser then lead-extractor. Do not use for lead interpretation, storage, summarization, or action suggestions.

SKILL.md content below is scrollable.

Message Parser

Convert raw chat exports into a strict array of parsed message objects.

Quick Triggers

  • Parse this WhatsApp export file.
  • Convert this group dump into structured messages.
  • Clean this TXT chat into timestamp/sender/content rows.

Recommended Chain

message-parser -> lead-extractor -> india-location-normalizer -> sentiment-priority-scorer -> summary-generator -> action-suggester -> lead-storage

Execute Workflow

  1. Accept raw WhatsApp export input as plain text, JSON, or file contents already loaded by Supervisor.
  2. Detect and parse the source format, including WhatsApp export lines like DD/MM/YYYY, HH:MM - sender: message.
  3. Normalize each event into exactly three fields:
    • timestamp (RFC 3339 date-time string)
    • sender (non-empty string)
    • content (string; allow empty message bodies)
  4. Merge multiline continuation lines into the previous message when they do not start with a new timestamp marker.
  5. Preserve message ordering. If timestamps collide, preserve original source order.
  6. Ignore chat-system boilerplate as lead content (encryption notice, group created, member added) while preserving raw line fidelity for audit.
  7. Validate output against references/parsed-message-array.schema.json.
  8. Return only the validated array.

Enforce Boundaries

  • Never infer or extract leads.
  • Never write to databases or files.
  • Never generate summaries or action plans.
  • Never send or schedule outbound communication.
  • Never bypass Supervisor routing.

Handle Errors

  1. Return explicit parse errors for malformed entries.
  2. Include line offsets when source lines are available.
  3. Fail closed if output cannot satisfy the schema.
ClawHub Registry URL: https://clawhub.ai/vishalgojha/skills/message-parser

Related skills

If this matches your use case, these are close alternatives in the same category.