원클릭으로
store-setup
Guide the user through setting up a product store — either connecting Shopify or creating an internal product catalog.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide the user through setting up a product store — either connecting Shopify or creating an internal product catalog.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to setup your knowledge base, improve your setup, edit /support/summary, change tone of voice, setup daily reporting, setup human escalation.
Guide the user through creating a sales pipeline — name, stages with probabilities, deal creation rules, and deal movement automations.
Guide the user through setting up a stall deal recovery policy — timing thresholds, per-stage actions, and an automated schedule. Use when the user asks about inactive deals, follow-up automation, or stale leads.
Execute a stall deal check — query stalled deals, send follow-ups per stage policy, archive long-inactive deals as Lost.
Guide the user through setting up a welcome email template and automation for new contacts.
Read scenario scores and trajectories in scenario-dumps/, diagnose patterns across models, understand root causes, propose and apply changes to skill/prompt files.
| name | store-setup |
| description | Guide the user through setting up a product store — either connecting Shopify or creating an internal product catalog. |
First check if a shop already exists: erp_table_data(table_name="com_shop")
If no shop exists, ask: "Do you have a Shopify store to connect, or should I set up a product catalog here?"
shopify(op="connect", args={"shop_domain": "mystore.myshopify.com"})shopify(op="status") — products sync automaticallyshopify(op="help") for full list of operations: create/update/delete products, manage collections, set discounts, adjust inventoryConnected stores sync products, orders, payments, refunds, and shipments automatically.
erp_table_crud(op="create", table_name="com_shop", data={"shop_type": "internal", "shop_name": "..."})erp_table_crud(op="create", table_name="com_product", data={...})erp_table_crud(op="create", table_name="com_product_variant", data={"pvar_product_id": "...", "pvar_price": ..., ...})Use erp_table_meta(table_name="com_product") and erp_table_meta(table_name="com_product_variant") to see available fields.
Walk through the catalog conversationally — ask broad questions, don't go field by field. If they have a website, read it first and propose a catalog. Create products as you go, confirm each one.