api-and-interface-desi…
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Analyze credential pooling operations and API reseller business models — economics, risks, detection patterns, and sustainability
$ npx -y skills add kevinnft/ai-agent-skills --skill credential-pooling-analysis --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/credential-pooling-analysisContext preview
The summary Claude sees to decide when to auto-load this skill.
Analyze credential pooling operations and API reseller business models — economics, risks, detection patterns, and sustainability
name: credential-pooling-analysis description: Analyze credential pooling operations and API reseller business models — economics, risks, detection patterns, and sustainability tags: [business-analysis, api-reseller, credential-pooling, arbitrage, economics] related_skills: [web-scraping, cloud-browser-automation] origin: unknown source_license: see upstream language: en
Framework for analyzing API reseller operations that use credential pooling (bulk account creation → free tier exploitation → resell access at markup).
**Definition**: Acquiring many free/trial accounts from a service, pooling their credits/quotas, and reselling access to end-users at a markup.
**Common pattern**:
User → Reseller API → Credential Pool (100s of accounts) → Official API (Claude/GPT/etc)
**Economics**:
**Signals that indicate credential pooling**:
✅ **Pricing signals**:
✅ **Technical signals**:
✅ **Business signals**:
**Target pages**:
**Use escalation ladder** (see `cloud-browser-automation` skill): 1. Try `web_fetch` first 2. Try direct curl with headers 3. Try Hermes browser 4. Use Browserbase if Cloudflare-protected
**Key data to extract**:
{
"site": "example.com",
"tagline": "...",
"models": ["claude-opus-4", "gpt-5", ...],
"pricing": {"claude-opus-4": "$X per 1M tokens"},
"features": ["streaming", "openai-compatible", ...],
"contact": {"email": "...", "discord": "...", "telegram": "..."},
"location": "...",
"legal_docs": ["terms", "privacy", ...]
}**Calculate unit economics**:
# Input costs accounts_cost = 100 * 0.02 # $2 for 100 Google accounts credits_per_account = 7.5 # $7.50 average free credits total_credits = 100 * credits_per_account # $750 # Output revenue markup = 0.5 # 50% of official price official_price = 1.0 reseller_price = official_price * markup revenue = total_credits / reseller_price # How much they can sell # Profit profit = revenue - accounts_cost roi = profit / accounts_cost
**Key metrics**:
**Operational risks**:
| Risk | Impact | Likelihood | Mitigation | |------|--------|------------|------------| | High ban rate | Service disruption | High (30-60%) | Diversify providers | | Provider closes loophole | Business death | Medium | Have backup sources | | Legal action | Shutdown | Low (hard to enforce) | Offshore entity | | Detection patterns | Account bans | High | Rotate IPs, randomize usage | | Credit exhaustion | Revenue loss | High | Continuous account creation |
**Provider-specific ban rates** (from user's data):
**Detection signals providers look for**:
**Short-term (0-6 months)**:
**Medium-term (6-18 months)**:
**Long-term (18+ months)**:
**Compare multiple operations**:
| Operator | Models | Pricing | Location | Stage | Risk Level | |----------|--------|---------|----------|-------|------------| | adye.dev | 7 models | 50% off | Unknown | Operational | High | | enowxlabs.com | Unknown | Unknown | Indonesia | Beta | Medium |
**Differentiation strategies**:
**Characteristics**:
**Pros**:
**Cons**:
**Characteristics**:
**Pros**:
**Cons**:
**Character
191 attribution-first agent skills for Hermes Agent, Claude Code, Cursor — one installer, 28 categories, searchable catalog. See NOTICE for upstream attribution.
Repo: kevinnft/ai-agent-skills
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Tests in real browsers. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze…
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test…
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to…
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend…
Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure…