Connect your AI agent

Install AppHub as a skill, or call the JSON API directly, so your assistant grounds growth advice in the knowledge base instead of generic tips.

Skill

Paste this into Claude Code to install AppHub as a skill

Claude Code Skill
Create a Claude Code skill at ~/.claude/skills/apphub/SKILL.md with this content:

---
name: apphub
description: Pull from the AppHub growth knowledge base to ground advice on a real growth problem. Triggers on onboarding, conversion, paywalls, pricing, retention/churn, user acquisition (TikTok/Meta/Google ads, creatives), ASO, attribution, monetization, landing pages, copywriting, validation, or scaling an app — especially when advising on one of the user's own apps.
---

AppHub (http://localhost:3000) is a read-only, curated knowledge base of bite-size, evidence-backed growth entries. You are its main consumer: when the user hits a growth problem, ground your reasoning in it instead of generic advice, and cite the entries you used.

Workflow:
1. Ingest the catalog first — GET http://localhost:3000/api/catalog — and reason over the claims to shortlist relevant entries (the corpus is small enough to read whole). Filter with ?topic=<name> when it maps cleanly.
2. Search to catch anything else — GET http://localhost:3000/api/search?q=<query> (synonym-expanded; returns snippets). Try 2-3 phrasings.
3. Read the entries that matter — GET http://localhost:3000/api/wiki/<category>/<slug> (the catalog apiPath). Respect the confidence field: 'debated' entries present two sides — surface the trade-off. Weigh the source for context.
4. Compare against the user's actual app: read the relevant real code/content (onboarding flow, paywall, landing copy, pricing), compare it to what AppHub says works, and give concrete, prioritized fixes — each backed by the entry it came from (cite title + path).

If the base has nothing on the topic, say so and answer from your own knowledge.

API

Give this to any AI agent so it can autonomously browse and use AppHub

Agent System Prompt
Loading...

Endpoints

GET/api/catalog

Compact catalog of EVERY entry (title, claim, numbers, topics, confidence, source). Read this whole list first, then fetch the entries you need. Add ?topic=<name> to filter.

GET/api/search?q=onboarding

Full-text search with synonym expansion + stemming. Returns title, description, a content snippet, and path.

GET/api/wiki/onboarding/onboarding-page-one-drop-off

Read a single entry — markdown content + metadata.

GET/api/wiki/nav

Navigation tree — topics and their entries.

GET/api/help

API overview + agent system prompt.