Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
davila7 avatar

Adaptyv

  • 244 installs
  • 30.1k repo stars
  • Updated August 4, 2026
  • davila7/claude-code-templates

adaptyv is an agent skill that integrates Adapty-style mobile subscription SDKs for developers who need paywalls, entitlements, trials, and purchase restore flows on iOS and Android.

About

adaptyv is a claude-code-templates skill for embedding mobile subscription infrastructure into iOS and Android applications. It guides developers through Adapty-style SDK integration patterns covering paywall presentation, entitlement checks, free-trial configuration, restore-purchases handling, and subscription analytics hooks across platform-specific build targets. The skill helps agents place SDK initialization, customer identification, product catalog wiring, and receipt validation in the correct app lifecycle points without relearning store billing APIs from scratch. Developers reach for adaptyv when shipping freemium or premium mobile features that require cross-platform subscription state, trial conversion tracking, and compliant restore flows on App Store and Google Play builds. It assumes an existing mobile codebase rather than greenfield backend services.

  • Paywall and entitlement SDK setup
  • Trial and subscription lifecycle
  • Restore purchases flows
  • Receipt validation hooks
  • Cross-platform mobile billing

Adaptyv by the numbers

  • 244 all-time installs (skills.sh)
  • Ranked #397 of 1,039 Mobile Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/davila7/claude-code-templates --skill adaptyv

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs244
repo stars30.1k
Last updatedAugust 4, 2026
Repositorydavila7/claude-code-templates

How do you integrate mobile subscription paywalls on iOS?

Integrate Adapty-style mobile subscription SDKs: paywalls, entitlements, trials, restore purchases, and analytics across iOS and Android builds.

Who is it for?

Mobile developers adding cross-platform in-app subscriptions, trials, and paywalls to existing iOS and Android apps using an Adapty-style SDK.

Skip if: Web-only SaaS billing, server-side Stripe checkout, or apps with no in-app purchase requirements.

When should I use this skill?

A mobile app needs paywall screens, subscription entitlements, free trials, restore purchases, or subscription analytics integrated into native builds.

What you get

SDK initialization code, paywall UI hooks, entitlement guards, trial configuration, and restore-purchase handlers in iOS and Android project files.

  • SDK integration code
  • Paywall configuration
  • Entitlement check helpers

Files

SKILL.mdMarkdownGitHub ↗

Adaptyv

Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or web interface and receive experimental results in approximately 21 days.

Quick Start

Authentication Setup

Adaptyv requires API authentication. Set up your credentials:

1. Contact support@adaptyvbio.com to request API access (platform is in alpha/beta) 2. Receive your API access token 3. Set environment variable:

export ADAPTYV_API_KEY="your_api_key_here"

Or create a .env file:

ADAPTYV_API_KEY=your_api_key_here

Installation

Install the required package using uv:

uv pip install requests python-dotenv

Basic Usage

Submit protein sequences for testing:

import os
import requests
from dotenv import load_dotenv

load_dotenv()

api_key = os.getenv("ADAPTYV_API_KEY")
base_url = "https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws"

headers = {
    "Authorization": f"Bearer {api_key}",
    "Content-Type": "application/json"
}

# Submit experiment
response = requests.post(
    f"{base_url}/experiments",
    headers=headers,
    json={
        "sequences": ">protein1\nMKVLWALLGLLGAA...",
        "experiment_type": "binding",
        "webhook_url": "https://your-webhook.com/callback"
    }
)

experiment_id = response.json()["experiment_id"]

Available Experiment Types

Adaptyv supports multiple assay types:

  • Binding assays - Test protein-target interactions using biolayer interferometry
  • Expression testing - Measure protein expression levels
  • Thermostability - Characterize protein thermal stability
  • Enzyme activity - Assess enzymatic function

See reference/experiments.md for detailed information on each experiment type and workflows.

Protein Sequence Optimization

Before submitting sequences, optimize them for better expression and stability:

Common issues to address:

  • Unpaired cysteines that create unwanted disulfides
  • Excessive hydrophobic regions causing aggregation
  • Poor solubility predictions

Recommended tools:

  • NetSolP / SoluProt - Initial solubility filtering
  • SolubleMPNN - Sequence redesign for improved solubility
  • ESM - Sequence likelihood scoring
  • ipTM - Interface stability assessment
  • pSAE - Hydrophobic exposure quantification

See reference/protein_optimization.md for detailed optimization workflows and tool usage.

API Reference

For complete API documentation including all endpoints, request/response formats, and authentication details, see reference/api_reference.md.

Examples

For concrete code examples covering common use cases (experiment submission, status tracking, result retrieval, batch processing), see reference/examples.md.

Important Notes

  • Platform is currently in alpha/beta phase with features subject to change
  • Not all platform features are available via API yet
  • Results typically delivered in ~21 days
  • Contact support@adaptyvbio.com for access requests or questions
  • Suitable for high-throughput AI-driven protein design workflows

Related skills

How it compares

Use adaptyv for native mobile subscription SDK wiring; use a web payments or backend billing skill when checkout lives on a server or web app instead of in-app stores.

FAQ

What platforms does adaptyv cover?

adaptyv covers iOS and Android mobile builds, wiring Adapty-style subscription SDK patterns for paywalls, entitlements, trials, restore purchases, and analytics in each platform's native project structure.

Does adaptyv replace App Store billing APIs?

adaptyv does not replace store billing APIs. adaptyv guides SDK integration atop App Store and Google Play in-app purchase systems, handling paywall UI, entitlement state, and analytics rather than raw store server notifications alone.

Mobile Developmentpaymentspricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.