@moltflow/skills 1.4.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,188 @@
1
+ # Changelog
2
+
3
+ All notable changes to the **MoltFlow Skills** package are documented here.
4
+
5
+ ---
6
+
7
+ ## [2.1.0] - 2026-02-12 — "Import & Delete"
8
+
9
+ > Import contacts from WhatsApp groups, delete your account with full cascade, and GDPR scripts for everything.
10
+
11
+ ### Added
12
+
13
+ - **WhatsApp Group Import** — `GET /custom-groups/wa-groups` lists all WA groups across sessions; `POST /custom-groups/from-wa-groups` creates a custom group by resolving and deduplicating participants from selected WA groups
14
+ - **Account Deletion** — `DELETE /users/me` with password confirmation cascades through 32+ tables (GDPR Article 17)
15
+ - `outreach.py` — added `list_wa_groups()` and `create_group_from_wa_groups()` functions
16
+ - `gdpr.py` — added `delete_account(password)` function
17
+ - Scripts table — added `gdpr.py` and `group_monitor.py` to main SKILL.md documentation
18
+ - moltflow-outreach sub-skill — documented WA group import endpoints and examples
19
+
20
+ ### Changed
21
+
22
+ - Custom Groups endpoint table expanded from 10 to 12 endpoints (both main SKILL.md and moltflow-outreach)
23
+ - Version bumped to 2.1.0 across package.json, main SKILL.md, and moltflow-outreach
24
+
25
+ ---
26
+
27
+ ## [2.0.0] - 2026-02-12 — "The Full Platform"
28
+
29
+ > Every feature, every endpoint, every workflow — v2 is the complete MoltFlow experience.
30
+
31
+ ### Highlights
32
+
33
+ - **Scheduled Messages** — One-time, daily/weekly/monthly, or custom cron expressions. Timezone-aware. Pause, resume, cancel. Full execution history tracking.
34
+ - **Bulk Messaging** — Broadcast to custom groups with ban-safe throttling (random 30s–2min delays). Real-time SSE progress. Pause/resume/cancel mid-flight.
35
+ - **Custom Groups** — Build targeted contact lists from WhatsApp conversations. Import members, export CSV/JSON. Feed into Bulk Send or Scheduled Messages.
36
+ - **Lead Management** — Auto-detected leads with full pipeline tracking (new → contacted → qualified → converted). Bulk status updates, bulk add-to-group, CSV/JSON export, reciprocity checks.
37
+ - **Knowledge Base (RAG)** — Upload PDF/TXT documents, semantic search with embeddings. AI uses your docs to answer customer questions accurately.
38
+ - **Voice Transcription** — Whisper-powered voice message transcription with async task queue and status tracking.
39
+ - **Comprehensive Feature Matrix** — All 18 platform capabilities listed upfront with full descriptions.
40
+ - **90+ API Endpoints** — 6 new API sections (14–19) covering everything added since v1.6.
41
+ - **Yearly Billing** — Save up to 17% with annual plans. Highlighted throughout.
42
+
43
+ ### Added
44
+
45
+ - Section 14: Scheduled Messages API (9 endpoints) — create, list, pause/resume/cancel, execution history
46
+ - Section 15: Bulk Send API (7 endpoints) — create jobs, SSE progress, pause/resume/cancel
47
+ - Section 16: Custom Groups API (10 endpoints) — create, manage members, CSV/JSON export
48
+ - Section 17: Leads API (8 endpoints) — list/filter, status update, bulk ops, CSV/JSON export
49
+ - Section 18: Knowledge Base / RAG API (4 endpoints) — ingest, search, list, delete
50
+ - Section 19: Voice Transcription API (3 endpoints) — transcribe, status, get transcript
51
+ - Comparison table: "Outreach & Scheduling" section (7 new features)
52
+ - Comparison table: Bulk lead operations and Lead export rows
53
+ - Use case categories: "Bulk messaging & scheduling" and "AI & knowledge"
54
+ - Feature matrix table at top of skill with all 18 capability categories
55
+ - Sub-skill: `moltflow-outreach` — Bulk Send, Scheduled Messages, Custom Groups (26 endpoints)
56
+ - Sub-skill: `moltflow-leads` — Lead Detection & CRM Pipeline (8 endpoints)
57
+ - Sub-skill: `moltflow-admin` — re-included in package (GDPR contact erasure, tenant settings, platform admin)
58
+ - GDPR contact erasure endpoint (`POST /gdpr/contact-erasure`) documented in moltflow-admin
59
+ - Tenant settings endpoints (`GET/PATCH /tenant/settings`) documented in moltflow-admin
60
+ - Session settings endpoint (`PATCH /sessions/{id}/settings`) documented in moltflow core
61
+ - New scripts: `outreach.py` (bulk send, scheduled messages, custom groups) and `leads.py` (lead pipeline)
62
+
63
+ ### Fixed
64
+
65
+ - `send_message.py` — wrong endpoint `/messages` (now `/messages/send`) and wrong field `content` (now `message`)
66
+ - `ai_config.py` — used non-existent endpoints; rewritten to use actual RAG, style, and reply generation APIs
67
+ - `outreach.py` — field names corrected: `custom_group_id` (not `group_id`), `message_content` (not `message`), `schedule_type` (not `recurrence_type`), member format as objects (not strings)
68
+ - `leads.py` — field names corrected: `source_group_id` (not `group_id`), `custom_group_id` in bulk add, PATCH path for status update, separate CSV/JSON export functions
69
+ - `admin.py` — removed phantom `description` parameter from `create_api_key`
70
+ - Main SKILL.md: billing portal method GET→POST, phantom `/webhooks/{id}/deliveries` endpoint removed, all field names in Sections 14-17 corrected
71
+ - `moltflow/SKILL.md`: monitor modes corrected (added `mentions`, `first_message`; removed `none`), rate limits table corrected to match actual plan tiers
72
+ - `moltflow-ai/SKILL.md`: Enterprise→Business in plan table
73
+ - `moltflow-reviews/SKILL.md`: export format `csv`→`html` (API supports `json|html`)
74
+ - `moltflow-leads/SKILL.md`: removed invalid `spam` status, fixed all field names and paths
75
+ - `moltflow-outreach/SKILL.md`: corrected all field names, schedule types, DELETE path, member format
76
+
77
+ ### Changed
78
+
79
+ - Version bumped to 2.0.0
80
+ - Description expanded to list all major features
81
+ - "When to use" section expanded from 13 to 19 items
82
+ - Total feature count updated: 80+ (was 63+)
83
+ - Business features count updated: 55+ (was 45+)
84
+
85
+ ---
86
+
87
+ ## [1.6.0] - 2026-02-11 — "Anti-Spam Shield & Yearly Savings"
88
+
89
+ > Protect every message with intelligent anti-spam safeguards, plus save big with our new yearly plan.
90
+
91
+ ### Highlights
92
+
93
+ - **Anti-Spam Protection** — Every outbound message now passes through reciprocity checks, burst rate limiting, and health monitoring. Contacts must message you first before you can reach out, keeping your WhatsApp number safe and your reputation spotless.
94
+ - **Yearly Billing — Over 70% Off** — Following a brief service outage, we're making it right. Lock in yearly pricing at **$239.90/year** — that's over 70% off monthly rates. No catch, no fine print.
95
+ - **Expanded API Docs** — Full session lifecycle, webhook configuration, and auth flow documentation added to the main skill.
96
+ - **4 Focused Sub-Skills** — Break down the platform into bite-sized pieces: `moltflow` (core), `moltflow-ai` (auto-replies & RAG), `moltflow-a2a` (agent protocol), and `moltflow-reviews` (feedback collection).
97
+
98
+ ### Added
99
+
100
+ - Anti-spam `MessageProcessor` wired into all 4 REST send endpoints and A2A handler
101
+ - Inbound message reciprocity tracking via webhook handler
102
+ - Sub-skills published as part of the npm package (`moltflow`, `moltflow-ai`, `moltflow-a2a`, `moltflow-reviews`)
103
+ - Interactive architecture diagram in Help Center (marketing + technical views)
104
+ - Yearly billing option with Stripe checkout integration
105
+
106
+ ### Fixed
107
+
108
+ - ClawHub security scan findings (domain mismatch, broken import)
109
+ - `disableModelInvocation` set consistently across all sub-skills
110
+
111
+ ### Security
112
+
113
+ - Removed admin sub-skill from published package (internal use only)
114
+ - All sub-skills enforce `disableModelInvocation: true`
115
+
116
+ ---
117
+
118
+ ## [1.5.0] - 2026-02-07 — "Simplified Plans & Billing"
119
+
120
+ > Streamlined pricing, richer billing APIs, and a full security audit.
121
+
122
+ ### Highlights
123
+
124
+ - **Simplified Plan Structure** — Cleaner plan tiers with transparent limits. No more guessing what's included.
125
+ - **Richer Billing API** — Checkout sessions, billing portal, subscription status, and usage tracking all in one place.
126
+ - **Security Hardened** — Full audit: removed `.env` from git, hardened SQL queries, sanitized error messages, locked down prompt injection vectors.
127
+
128
+ ### Added
129
+
130
+ - Billing endpoints: checkout, portal, cancel, plans list, signup-checkout
131
+ - Usage tracking: current month, history, daily breakdown
132
+ - Accessibility audit pass on all skill documentation
133
+
134
+ ### Fixed
135
+
136
+ - Rate limits updated and consistent across all docs and help page
137
+ - Pricing grid centered and polished with real use cases
138
+
139
+ ---
140
+
141
+ ## [1.4.0] - 2026-02-06 — "Anti-Spam Rules & Safeguards"
142
+
143
+ > Complete anti-spam and content safety layer for WhatsApp automation.
144
+
145
+ ### Highlights
146
+
147
+ - **Anti-Spam Rules** — Rate limits, duplicate message blocking, and pattern-based filters to keep conversations clean.
148
+ - **Content Safeguards** — Block secrets, PII, and prompt injection attempts before they leave your outbox.
149
+ - **Lead Intelligence** — Auto-detect purchase intent in group conversations, label contacts by sentiment, and route leads to your sales team.
150
+
151
+ ### Added
152
+
153
+ - Anti-spam rule configuration endpoints
154
+ - Content safeguard policies (secrets, PII, prompt injection)
155
+ - Auto-feedback collection with 14+ language sentiment analysis
156
+ - Intention detection and lead management
157
+ - Testimonial export (JSON/HTML)
158
+
159
+ ### Changed
160
+
161
+ - SKILL.md restructured with anti-spam and safeguards sections
162
+ - API URLs corrected to `apiv2.waiflow.app`
163
+ - Security scan triggers removed for ClawHub Benign rating
164
+
165
+ ---
166
+
167
+ ## [1.0.0] - 2026-02-06 — "Launch"
168
+
169
+ > MoltFlow hits ClawHub. One skill to automate WhatsApp at scale.
170
+
171
+ ### Highlights
172
+
173
+ - **All-in-One WhatsApp API** — Sessions, messaging, groups, labels, webhooks, AI replies, reviews, and A2A — unified under a single skill.
174
+ - **Agent-to-Agent Protocol** — JSON-RPC 2.0 with X25519-AES256GCM encryption. Your agents can discover, message, and collaborate with other agents securely.
175
+ - **AI That Learns Your Voice** — Train style profiles from your message history. Auto-replies sound like you, not a bot.
176
+
177
+ ### Added
178
+
179
+ - Core WhatsApp automation: sessions, contacts, messages, groups, labels
180
+ - AI features: auto-replies, voice transcription, RAG knowledge base, style profiles
181
+ - A2A protocol: agent discovery, encrypted messaging, group management, content policy
182
+ - Review collection: sentiment scoring, testimonial extraction, approval workflows
183
+ - 6 ready-to-run Python scripts: quickstart, send message, AI config, A2A client, reviews, admin
184
+ - Full API reference with curl examples
185
+
186
+ ---
187
+
188
+ *Built with care by the [MoltFlow](https://waiflow.app) team.*