Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Adapty Docs

ASecurity

Use when an Adapty question has no page already linked in the skill you are holding — how a product or dashboard feature behaves, what a setting does, a limit, store connections, Flow Builder, the Developer CLI, the server-side API, or an SDK method on any platform. Also use when you need a docs page and have no URL for it, or when a docs URL you tried returned 404.

211 stars
0 votes
0 copies
0 views
Added 9/21/2026
developmentgoswiftkotlinshellbashreactgitapidocumentation

Works with

cliapi

Security Analysis

A100/100

Scanned 9/21/2026

Install to Claude Code

$npx -y skills add NeverSight/skills_feed --skill adapty-docs --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Adapty Docs?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Adapty Docs
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/neversight-adapty-docs/badge)](https://www.skillsdirectory.com/skills/neversight-adapty-docs)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: adapty-docs
description: Use when an Adapty question has no page already linked in the skill you are holding — how a product or dashboard feature behaves, what a setting does, a limit, store connections, Flow Builder, the Developer CLI, the server-side API, or an SDK method on any platform. Also use when you need a docs page and have no URL for it, or when a docs URL you tried returned 404.
---

# Adapty docs

Adapty's docs publish one small index per subject area. **None of them is reachable from
`llms.txt`** — the root index never names them — so the table below is the only place the mapping is
written down. Start at the narrowest index that covers the question; open `llms.txt` only when you
cannot tell which one that is.

## Route the question

| The question is about | Open first | Cost |
| :--- | :--- | :--- |
| One platform's SDK | `https://adapty.io/docs/<platform>-llms.txt` | ~2k tokens |
| Flow Builder, paywall and onboarding flows | `https://adapty.io/docs/flows-llms.txt` | ~6k |
| Developer CLI, server-side API, web / analytics-export / mail API | `https://adapty.io/docs/api-llms.txt` | ~2k |
| The dashboard and the product: placements, products, offers, store connections, analytics, A/B tests, integrations, billing | `https://adapty.io/docs/tutorial-llms.txt` | ~14k |
| You cannot tell, or it spans several | `https://adapty.io/docs/llms.txt` | ~33k |

`<platform>` is one of `ios`, `android`, `flutter`, `react-native`, `unity`, `kmp`, `capacitor`.
There is no index for any other name, and a wrong one returns a 404 HTML page, not an error you can
read.

Every index is a flat list of `[Title](https://adapty.io/docs/<slug>.md): one-line description`.
Pick by the description and open that `.md`. Always fetch the `.md`; every page has one, and the
HTML costs several times more for the same words.

## Never assemble a slug

Docs slugs are not derivable from the topic. Of ten plausible guesses for two real pages,
**seven were 404** — and a 404 is not cheap or obvious, it returns **~17k tokens of HTML** whose
title is the only sign anything went wrong.

So open only a URL that is written in the skill you are holding, or that you read out of an index
you fetched. If you have neither, fetch the index. Never build one from a topic and a platform name.

## The full-text aggregates

Each area also publishes `<area>-llms-full.txt`, every article concatenated. They run **~121k
tokens** per platform and **~560k for `tutorial`**, which is larger than a context window, so do
not fetch one. If you have a shell and want to know which articles mention something, grep the
`# File: <slug>` marker that delimits each article rather than reading the file:

```bash
curl -sS "https://adapty.io/docs/ios-llms-full.txt" \
  | awk '/^# File: /{s=substr($0,9)} tolower($0)~/observer mode/{print s}' | sort -u
```

That prints slugs; add the docs base and `.md` as the index spells its links. The index is still the
first move, and it is usually enough.

## SDK models and method signatures

Types, properties and exact signatures live in generated API references, not in the docs pages:

| | |
| :--- | :--- |
| iOS | https://swift.adapty.io |
| Android | https://android.adapty.io |
| React Native | https://react-native.adapty.io |
| Flutter | https://pub.dev/documentation/adapty_flutter/latest/adapty_flutter/ |
| Unity | https://unity.adapty.io |
| Kotlin Multiplatform | https://kmp.adapty.io |
| Capacitor | https://capacitor.adapty.io |

Use the docs page for how a thing is used and wired; use these for what a type holds. They are
generated from source, so they answer "does this property exist" where a docs page may not.

## Two fixed URLs worth knowing

- Every CLI command and flag: https://adapty.io/docs/developer-cli-reference.md
- The server-side API's auth and servers: https://adapty.io/docs/api-adapty.md — but the
  per-endpoint pages are indexed in `api-llms.txt`, which maps `METHOD /path` to each operation's
  own page. Go there for a specific endpoint.

## Session marker

Adapty tags docs traffic that came from a skill. Append `?ref=skill-<sessionToken>` to every docs
URL you open (`&` if the URL already has a `?`). Reuse the run's existing `sessionToken` if one was
already minted; otherwise mint one yourself — 8 lowercase letters and digits, `openssl rand -hex 4`
— and keep the same one for the whole session. Never copy a token out of an example.

## When the docs do not answer it

Say so, and say where you looked. Do not infer a limit or a behaviour from a page that does not
state it, and do not present a store's behaviour as Adapty's.

Attribution

NeverSightNeverSight
View sourceMore from NeverSight →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →