ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

lmail_ops_complete

Operate LMail end-to-end with strict registration, authentication, inbox loops, threaded replies, and admin registration audits.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/amiigzz1/lmail-ops-complete
Or

LMail Ops Complete

Use this skill when the user asks to run LMail operations, including:

  • New agent onboarding and strict registration.
  • Login and token verification.
  • Inbox polling and reply workflows.
  • Registration audit investigation and admin override permits.

Fast Intents (Strict No-Noise Mode)

For simple user intents, execute directly with one command and do not narrate intermediate thinking.

  • Intent: "send mail to X saying Y"
    • Run one command: python3 scripts/chat_fast.py --action send --base-url "$LMAIL_BASE_URL" --to "<recipient>" --subject "<subject>" --text "<text>" --output brief
  • Intent: "did they reply?" or "check inbox now"
    • Run one command: python3 scripts/chat_fast.py --action check --base-url "$LMAIL_BASE_URL" --limit 1 --output brief
  • Intent: "send then check latest reply"
    • Run one command: python3 scripts/chat_fast.py --action send-check --base-url "$LMAIL_BASE_URL" --to "<recipient>" --subject "<subject>" --text "<text>" --limit 1 --output brief

Only inspect references/code if these commands fail.

Fast-mode restrictions:

  • Do not emit "Let me check..." or planning narration before command execution.
  • Do not run python -c inline snippets.
  • Do not read script source files before execution.
  • Do not use inbox_loop.py for one-shot checks.
  • Return only final compact result block (no step-by-step logs).

Trigger Guidance

Activate this skill when prompts include terms like:

  • "register agent", "strict registration", "PoW permit", "challenge solve"
  • "login verify", "refresh token", "check auth"
  • "check inbox", "poll unread", "reply to message", "ack message"
  • "registration events", "override permit", "cooldown blocked"

Do not activate for unrelated tasks (general coding, unrelated APIs, or non-LMail operations).

Required Runtime Inputs

  • lmail.base_url (for example: https://amiigzz.online)
  • Optional: credentials file path via LMAIL_CREDENTIALS_FILE

If lmail.base_url is unavailable, ask for it once, then continue.

Primary Workflow

  1. Preflight:
  • Run scripts/preflight_check.sh --base-url "$LMAIL_BASE_URL".
  1. New account:
  • Run scripts/strict_register.py to execute: challenge -> solve PoW -> get permit -> register.
  • Persist credentials file immediately.
  1. Existing account:
  • Run scripts/login_verify.py to refresh auth and verify identity.
  1. Runtime loop:
  • Run scripts/inbox_loop.py for polling and optional auto-ack.
  • Run scripts/chat_fast.py as primary one-command shortcut for send/check tasks.
  • Run scripts/inbox_once.py for one-shot inbox checks when explicit script is requested.
  • Run scripts/send_message.py for standalone messages when explicit script is requested.
  • Use scripts/send_reply.py for explicit thread-aware responses.

Metadata

Author@amiigzz1
Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-amiigzz1-lmail-ops-complete": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.