register

register is a command for coding agents from TheQmaks/areclaw-plugin. It costs 14 tokens per session (1,513 once invoked), scanned A, original, MIT.

An Android app command that automates creating an account, including filling registration forms and confirming an email address through a temporary email service.

In plain words
What is it for?
Use it to explore an app’s interface, identify its registration flow, enter account details, and complete email verification.
Why use it?
It removes the repeated manual work of testing different sign-up screens and verification steps.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the areclaw plugin — 1 skill, 6 commands shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/theqmaks/areclaw-plugin/register
Clone the repo
git clone --depth 1 https://github.com/TheQmaks/areclaw-plugin

Or install areclaw, the plugin that ships this one along with the rest of its 1 skill, 6 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for register

README.md
[![agentmods](https://agentmods.dev/badge/commands/theqmaks/areclaw-plugin/register.svg)](https://agentmods.dev/commands/theqmaks/areclaw-plugin/register)
Your own site
<a href="https://agentmods.dev/commands/theqmaks/areclaw-plugin/register"><img src="https://agentmods.dev/badge/commands/theqmaks/areclaw-plugin/register.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,513 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00014 $0.01513
Opus 5 $0.00007 $0.00757
Sonnet 5 $0.00003 $0.00303
Haiku 4.5 $0.00001 $0.00151

Measured 3d ago against content hash 60432ede0163, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

register scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/areclaw/commands/register.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/register

Automate the account registration process for an Android application. This uses UI automation to fill forms, temporary email services for verification, and intelligent form detection to handle different registration flows.

Instructions

1. Perform UI reconnaissance

Take a snapshot of the current app state:

python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py snapshot --output-dir workspace/output

Read the snapshot and determine:

  • Is the app on a login screen, registration screen, or splash screen?
  • What kind of registration is offered? Email, phone, social login, or a combination?
  • What fields are visible?

2. Navigate to the registration screen

If the app is not already on the registration screen, look for sign-up buttons:

# Try common button labels
python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py tap --text "Sign Up"
# or
python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py tap --text "Register"
# or
python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py tap --text "Create Account"
# or use XPath
python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py tap --xpath '//node[contains(@text,"Sign") or contains(@text,"Register") or contains(@text,"Create")]'

Take another snapshot to verify navigation succeeded.

3. Map the registration form

python ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/pytools/ui_explorer.py dump

Identify all input fields by resource-id, text, or content-desc. Common patterns:

  • Email field: resource-id contains email, mail, or username.
  • Password field: class="android.widget.EditText" with password="true".
  • Name fields: name, first_name, last_name, full_name.
  • Phone: phone, mobile, tel.

4. Create an identity

4a. Generate an email address

Try temporary mail first:

tema create

Read the full file on GitHub · 169 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 169 lines · 14 tokens per session scan A 60432ede0163

Subscribe to this mod's changes

register is a command published in the GitHub repository TheQmaks/areclaw-plugin (2 stars, last pushed 5mo ago), licensed MIT. It adds 14 tokens to every session and 1,513 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.