Rank
62
Join The Compact State — a shared autonomous agent network with on-chain identity, persistent memory, and collective governance.
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings. --- name: moltflow-admin description: "Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings." source: "MoltFlow Team" version: "2.15.1" risk: safe requiredEnv: - MOLTFLOW_API_KEY primaryEnv: MOLTFLOW_API_KEY disable-model-invocation: true --- **MoltFlow** — WhatsApp Business automation for teams. Connect, monitor, and automate WhatsApp at scale. ***Due to high demand and a recent reg
clawhub skill install skills:alex-tradequo:moltflow-whatsapp:moltflow-adminOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
moltflow-admin is best for upgrade, audit, read workflows where A2A compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings. --- name: moltflow-admin description: "Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings." source: "MoltFlow Team" version: "2.15.1" risk: safe requiredEnv: - MOLTFLOW_API_KEY primaryEnv: MOLTFLOW_API_KEY disable-model-invocation: true --- **MoltFlow** — WhatsApp Business automation for teams. Connect, monitor, and automate WhatsApp at scale. ***Due to high demand and a recent reg Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
A2A
Freshness
Feb 25, 2026
Vendor
Openclaw
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:alex-tradequo:moltflow-whatsapp:moltflow-adminSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Openclaw
Protocol compatibility
A2A
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
https://apiv2.waiflow.app/api/v2
json
// POST /auth/login
{
"email": "user@example.com",
"password": "your-password"
}
// Response
{
"access_token": "eyJhbGciOi...",
"refresh_token": "eyJhbGciOi...",
"token_type": "bearer",
"user": {
"id": "uuid",
"email": "user@example.com",
"full_name": "John Doe",
"role": "owner",
"tenant_id": "uuid"
}
}json
// POST /api-keys
{
"name": "outreach-bot",
"scopes": ["messages:send", "custom-groups:manage", "bulk-send:manage"],
"expires_in_days": 90
}
// Response (raw key shown ONCE — save it immediately)
{
"id": "uuid",
"name": "outreach-bot",
"key_prefix": "mf_abc1",
"raw_key": "mf_abc1234567890abcdef...",
"scopes": ["messages:send", "custom-groups:manage", "bulk-send:manage"],
"expires_at": "2026-04-15T10:00:00Z",
"created_at": "2026-01-15T10:00:00Z",
"is_active": true
}json
{
"plan_id": "pro",
"display_name": "Pro",
"status": "active",
"billing_cycle": "monthly",
"current_period_end": "2026-02-15T00:00:00Z",
"limits": {
"max_sessions": 3,
"max_messages_per_month": 5000,
"max_groups": 10,
"max_labels": 50,
"ai_replies_per_month": 500
},
"usage": {
"sessions": 2,
"messages_this_month": 1247,
"groups": 5,
"labels": 12,
"ai_replies_this_month": 89
}
}json
// POST /billing/checkout
{
"plan_id": "pro",
"billing_cycle": "monthly"
}
// Response
{
"checkout_url": "https://checkout.stripe.com/c/pay/cs_live_...",
"session_id": "cs_live_..."
}bash
curl https://apiv2.waiflow.app/tenant/settings \ -H "X-API-Key: $MOLTFLOW_API_KEY"
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings. --- name: moltflow-admin description: "Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings." source: "MoltFlow Team" version: "2.15.1" risk: safe requiredEnv: - MOLTFLOW_API_KEY primaryEnv: MOLTFLOW_API_KEY disable-model-invocation: true --- **MoltFlow** — WhatsApp Business automation for teams. Connect, monitor, and automate WhatsApp at scale. ***Due to high demand and a recent reg
name: moltflow-admin description: "Manage MoltFlow authentication, billing, API keys, usage tracking, and tenant settings." source: "MoltFlow Team" version: "2.15.1" risk: safe requiredEnv:
MoltFlow — WhatsApp Business automation for teams. Connect, monitor, and automate WhatsApp at scale. Due to high demand and a recent registration issue, we're offering our top-tier Business plan with unlimited quotas for just $19.90/month on yearly billing — for a limited time only. Claim the deal Free tier available. Sign up
Manage authentication, billing, API keys, usage tracking, and tenant settings for MoltFlow.
Agency managing 5 clients — "Create a scoped API key for each client that only lets them send messages and read their own groups — nothing else."
Startup scaling up — "Check my current plan usage and tell me if I'm about to hit my message limit so I can upgrade before the campaign."
Compliance officer — "Show me the daily usage breakdown for this month so I can audit how many messages each session sent."
Use this skill when you need to:
/auth/*) accept email/password — no API key needed for initial loginhttps://apiv2.waiflow.app/api/v2
| Scope | Access |
|-------|--------|
| settings | manage |
| usage | read |
| billing | manage |
| account | manage |
All requests (except login/signup) require one of:
Authorization: Bearer <access_token> (JWT from login)X-API-Key: <api_key> (API key from dashboard)| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | /auth/login | Login with email/password |
| POST | /auth/refresh | Refresh access token |
| GET | /auth/me | Get current user profile |
| POST | /auth/logout | Invalidate session |
| POST | /auth/forgot-password | Request password reset email |
| POST | /auth/reset-password | Confirm password reset |
| POST | /auth/verify-email | Verify email address |
| POST | /auth/magic-link/request | Request magic link login |
| POST | /auth/magic-link/verify | Verify magic link token |
| POST | /auth/setup-password | Set password for magic-link users |
// POST /auth/login
{
"email": "user@example.com",
"password": "your-password"
}
// Response
{
"access_token": "eyJhbGciOi...",
"refresh_token": "eyJhbGciOi...",
"token_type": "bearer",
"user": {
"id": "uuid",
"email": "user@example.com",
"full_name": "John Doe",
"role": "owner",
"tenant_id": "uuid"
}
}
Self-service user profile endpoints (authenticated user):
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /users/me | Get own profile |
| PATCH | /users/me | Update own profile |
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /api-keys | List all API keys |
| POST | /api-keys | Create new key |
| GET | /api-keys/{id} | Get key details |
| DELETE | /api-keys/{id} | Revoke key |
| POST | /api-keys/{id}/rotate | Rotate key (new secret) |
// POST /api-keys
{
"name": "outreach-bot",
"scopes": ["messages:send", "custom-groups:manage", "bulk-send:manage"],
"expires_in_days": 90
}
// Response (raw key shown ONCE — save it immediately)
{
"id": "uuid",
"name": "outreach-bot",
"key_prefix": "mf_abc1",
"raw_key": "mf_abc1234567890abcdef...",
"scopes": ["messages:send", "custom-groups:manage", "bulk-send:manage"],
"expires_at": "2026-04-15T10:00:00Z",
"created_at": "2026-01-15T10:00:00Z",
"is_active": true
}
scopes: Required array of permission scopes. Specify only the scopes needed (e.g., ["sessions:read", "messages:send"]). See main SKILL.md for the complete scope reference.expires_in_days: Optional expiry in days (default: no expiry).Important: The raw_key is only returned at creation time. It is stored as a SHA-256 hash — it cannot be retrieved later.
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /billing/subscription | Current plan, limits, and usage |
| POST | /billing/checkout | Create Stripe checkout session |
| POST | /billing/portal | Get Stripe billing portal URL |
| POST | /billing/cancel | Cancel subscription |
| GET | /billing/plans | List available plans and pricing |
| POST | /billing/signup-checkout | Checkout for new signups |
{
"plan_id": "pro",
"display_name": "Pro",
"status": "active",
"billing_cycle": "monthly",
"current_period_end": "2026-02-15T00:00:00Z",
"limits": {
"max_sessions": 3,
"max_messages_per_month": 5000,
"max_groups": 10,
"max_labels": 50,
"ai_replies_per_month": 500
},
"usage": {
"sessions": 2,
"messages_this_month": 1247,
"groups": 5,
"labels": 12,
"ai_replies_this_month": 89
}
}
// POST /billing/checkout
{
"plan_id": "pro",
"billing_cycle": "monthly"
}
// Response
{
"checkout_url": "https://checkout.stripe.com/c/pay/cs_live_...",
"session_id": "cs_live_..."
}
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /usage/current | Current month usage summary |
| GET | /usage/history | Historical usage by month |
| GET | /usage/daily | Daily breakdown for current month |
Self-service tenant configuration (owner/admin role required for writes).
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /tenant/settings | Get current tenant settings |
| PATCH | /tenant/settings | Update tenant settings (owner/admin only) |
| Field | Type | Description |
|-------|------|-------------|
| allowed_numbers | string[] | Phone numbers allowed for outbound messaging |
| require_approval | bool | Whether outbound messages require admin approval |
| ai_consent_enabled | bool | Whether AI features (auto-reply, style matching) are enabled |
curl https://apiv2.waiflow.app/tenant/settings \
-H "X-API-Key: $MOLTFLOW_API_KEY"
{
"allowed_numbers": ["+5511999999999"],
"require_approval": false,
"ai_consent_enabled": true
}
curl -X PATCH https://apiv2.waiflow.app/tenant/settings \
-H "X-API-Key: $MOLTFLOW_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ai_consent_enabled": true}'
All fields are optional. Only provided fields are updated.
{
"allowed_numbers": ["+5511999999999", "+5511888888888"],
"require_approval": true,
"ai_consent_enabled": true
}
Notes:
ai_consent_enabled records a GDPR consent entry (consent type ai_processing, version 1.0) with the user's IP and user-agent.owner or admin roles can update.curl -X POST https://apiv2.waiflow.app/api/v2/auth/login \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "your-password"
}'
curl -X POST https://apiv2.waiflow.app/api/v2/api-keys \
-H "X-API-Key: $MOLTFLOW_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "outreach-bot",
"scopes": ["messages:send", "custom-groups:manage", "bulk-send:manage"],
"expires_in_days": 90
}'
curl -H "X-API-Key: $MOLTFLOW_API_KEY" \
"https://apiv2.waiflow.app/api/v2/billing/subscription"
curl -H "X-API-Key: $MOLTFLOW_API_KEY" \
"https://apiv2.waiflow.app/api/v2/usage/current"
| Status | Meaning | |--------|---------| | 400 | Invalid request body or parameters | | 401 | Missing or invalid authentication | | 403 | Insufficient permissions | | 404 | Resource not found | | 409 | Conflict (duplicate email, plan ID, etc.) | | 422 | Validation error | | 429 | Rate limit exceeded |
magic-link/request then magic-link/verify.GET /billing/subscription to check remaining quotas before making API calls.Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"A2A"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T00:12:31.433Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "A2A",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "upgrade",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "audit",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "read",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "update",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:A2A|unknown|profile capability:upgrade|supported|profile capability:audit|supported|profile capability:read|supported|profile capability:update|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Openclaw",
"href": "https://github.com/openclaw/skills/tree/main/skills/alex-tradequo/moltflow-whatsapp/moltflow-admin",
"sourceUrl": "https://github.com/openclaw/skills/tree/main/skills/alex-tradequo/moltflow-whatsapp/moltflow-admin",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "A2A",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-alex-tradequo-moltflow-whatsapp-moltflow-admin/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to moltflow-admin and adjacent AI workflows.