Skip to content

Early Adopter Program

creator35lwb-web edited this page Apr 10, 2026 · 3 revisions

Early Adopter Program — v0.5.12 "Polar Integration"

Join the VerifiMind™ PEAS Early Adopter program and get 3 months free access to v0.6.0-Beta when it launches.


What Is the Early Adopter Program?

The Early Adopter (EA) program gives users who register now priority access and 3 months free of the upcoming v0.6.0-Beta release. In return, your feedback directly shapes what we build next.

Registration is consent-first (Z-Protocol v1.1 compliant): you explicitly agree to the Terms & Conditions and Privacy Policy before anything is stored. Only email is required. Everything else is optional.


How to Register

Option A — Web Form (Recommended)

Visit the registration page directly in your browser:

https://verifimind.ysenseai.org/register

The form guides you through:

  1. Enter your email (required) and name (optional)
  2. Share feedback about yourself — new user, returning user, or recommendation (optional)
  3. Check the Terms & Conditions box (required)
  4. Check the Privacy Policy box (required)
  5. Optionally opt-in to product update emails
  6. Click Join Early Adopter Program

On success, you'll receive a UUID — your Early Adopter access key. Save it. You'll need it to check your status and claim v0.6.0-Beta access.


Option B — API (Direct / Programmatic)

curl -X POST https://verifimind.ysenseai.org/early-adopters/register \
  -H "Content-Type: application/json" \
  -d '{
    "email": "your@email.com",
    "name": "Your Name",
    "tc_accepted": true,
    "privacy_acknowledged": true,
    "updates_consent": false,
    "feedback": "Optional: tell us about yourself",
    "feedback_type": "new_user"
  }'

Required fields:

Field Type Description
email string Your email address
tc_accepted boolean Must be true — you accept the Terms & Conditions v1.0
privacy_acknowledged boolean Must be true — you acknowledge the Privacy Policy v2.0

Optional fields:

Field Type Description
name string Your display name (max 100 chars)
feedback string Tell us about yourself (max 1000 chars)
feedback_type string new_user | returning_user | issue | recommendation | general
updates_consent boolean Receive product update emails (default: false)

Successful response (HTTP 201):

{
  "uuid": "019d189e-ff43-727f-89bc-30eedefd5cf6",
  "email_masked": "y***@example.com",
  "tier": "early_adopter",
  "registered_at": "2026-03-23T04:00:00.000000+00:00",
  "benefits_free_until": "2026-06-22T04:00:00.000000+00:00",
  "tc_version": "1.0",
  "privacy_version": "1.0",
  "message": "Welcome to the VerifiMind-PEAS Early Adopter program! ...",
  "opt_out_url": "/early-adopters/optout/019d189e-...",
  "feedback_received": false
}

Idempotent: Registering with the same email twice returns your existing UUID — no duplicate records are created.


Check Your EA Status

Once registered, check your status any time using your UUID:

curl https://verifimind.ysenseai.org/early-adopters/status/{your-uuid}

Response:

{
  "uuid": "019d189e-ff43-727f-89bc-30eedefd5cf6",
  "tier": "early_adopter",
  "registered_at": "2026-03-23T04:00:00.000000+00:00",
  "benefits_free_until": "2026-06-22T04:00:00.000000+00:00",
  "status": "active",
  "updates_consent": false
}

Submit Feedback

Registered EAs and anonymous users can submit feedback at any time:

curl -X POST https://verifimind.ysenseai.org/early-adopters/feedback \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Your feedback here",
    "feedback_type": "recommendation",
    "uuid": "your-ea-uuid-optional"
  }'

feedback_type options: feedback | issue | recommendation | general


Opt Out & Data Deletion

You can opt out and request full data deletion at any time — no questions asked.

Option A — Web Form

Visit: https://verifimind.ysenseai.org/optout

Enter your UUID, confirm, and click Request Data Deletion.

Option B — API

curl -X POST https://verifimind.ysenseai.org/early-adopters/optout/{your-uuid} \
  -H "Content-Length: 0"

What happens:

  • Status is immediately set to deletion_requested
  • PII fields (email, name) are nullified immediately
  • Full record is purged within 7 business days
  • Your UUID will no longer grant EA benefits after deletion completes
  • The free Trinity validation tier (v0.5.12+) remains available without registration

Policies

Document Link
Privacy Policy v2.0 verifimind.ysenseai.org/privacy
Terms & Conditions v1.0 verifimind.ysenseai.org/terms

EA Benefits Summary

Benefit Details
v0.6.0-Beta access 3 months free when Beta launches
Priority feedback Your input shapes feature priority
UUID access key Persistent identifier across versions
Z-Protocol protection Consent-first, data minimization, GDPR right to erasure

Technical Details (Z-Protocol v1.1 Compliance)

The Early Adopter registration system is built under Z-Protocol v1.1 — VerifiMind's internal ethics and consent framework:

  • Consent-first: Both T&C and Privacy Policy must be explicitly accepted before data is stored
  • Data minimization: Only email is required; feedback is never linked to email in storage
  • Right to erasure: Opt-out is accessible without authentication; PII nullified immediately on request
  • Transparency: Consent timestamps, policy versions, and benefit expiry are all stored and returned
  • UUIDv7: Timestamp-ordered UUIDs used as access keys (never store passwords)
  • Idempotency: Same email always returns the same UUID — no silent duplicates

Storage: Google Cloud Firestore (GCP project ysense-platform-v4-1)


Announcement

Read the v0.5.12 "Polar Integration" release announcement: GitHub Discussion #100 — v0.5.12 "Polar Integration" Released


Early Adopter Program — v0.5.12 "Polar Integration" (launched March 2026) Z-Protocol v1.1 compliant | GDPR | PDPA (SG)

Clone this wiki locally