🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

creator-skill-v2

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

creator-skill-v2

Standalone Creator SKILL MCP service

pipPyPI
Version
0.2.1
Weekly downloads
60
Maintainers
1

creator-skill-v2

Standalone Creator SKILL service (SKILL-02) — MCP + REST API + independent billing. Source repo: apps/skill-service.

Quick start

cd apps/skill-service
python -m venv .venv
.venv/Scripts/python -m pip install -U pip
.venv/Scripts/pip install -e .
cp .env.example .env   # edit database / modash keys
.venv/Scripts/python scripts/init_db.py
.venv/Scripts/python scripts/seed_dev_account.py --email dev@demo.com --password "12345678" --credits 5000
.venv/Scripts/python main.py

Health: GET http://127.0.0.1:8080/health
MCP: http://127.0.0.1:8080/mcp (Bearer sk_live_...)

Production

  • Release (Stripe only): docs/PRODUCTION_RELEASE.md
  • Prod deploy script: python scripts/deploy_prod_server.py (uses prod.yaml + .env_prod)
  • Deploy: docs/DEPLOY_CHECKLIST.md
  • Local dev: docker compose -f docker-compose.dev.yml up -d --build or scripts/dev_up.ps1 -Build
  • Payments: docs/PAYMENT_CALLBACKS.md
  • Payment E2E (Plan A/C): docs/PAYMENT_E2E_TEST.md
  • Subscription E2E: docs/SUBSCRIPTION_E2E_TEST.md
  • OpenClaw + ClawHub E2E: docs/OPENCLAW_E2E_TEST.md
  • Stripe 测试环境配置: docs/STRIPE_TEST_ENV_SETUP.md
  • MCP Registry: output/registry/
  • Coze HTTP SOP: deinai_backend/output/coze/PATH-A-SOP.md

Stdio bridge (Cursor / Claude Desktop)

export SKILL_TOKEN="sk_live_..."
creator-skill-v2-match
# or: uvx --from creator-skill-v2 creator-skill-v2-match

Optional: SKILL_MCP_URL (default https://skill.deinai.ai/mcp).

Status

  • Independent account / session (sk_sess_) / API token (sk_live_)
  • Wallet, recharge, consumption ledger
  • Portal (/portal/): login, recharge, mock checkout, token management
  • Payment checkout: POST /recharge/orders returns payParams (mock / wechat / alipay)
  • MCP tools: ping, get_location_ids, searchInfluencers
  • REST: GET /api/v1/account/status, POST /api/v1/search/influencers
  • Admin: credit packages, consume rules, audit logs

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts