一键导入
setup
Launch all services for the Retail-Agentic-Commerce project. Use when the user types setup, install, or asks to start, launch, or run the project stack.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Launch all services for the Retail-Agentic-Commerce project. Use when the user types setup, install, or asks to start, launch, or run the project stack.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Discoverability shim for the Retail-Agentic-Commerce CVE remediation Codex skill. Use for CVE, BDSA, GHSA, OSV, Dependabot, Black Duck, Snyk, npm, PyPI, or package advisory remediation.
Discoverability shim for the Retail-Agentic-Commerce backend feature Codex skill. Use when writing or modifying Python backend code, routes, services, models, tests, or protocol logic.
Discoverability shim for the Retail-Agentic-Commerce pre-commit analysis Codex skill. Use before commits, after significant changes, or for implementation-quality validation.
Discoverability shim for the Retail-Agentic-Commerce setup Codex skill. Use when the user asks to setup, install, start, launch, or run the project stack.
Discoverability shim for the Retail-Agentic-Commerce UI Codex skill. Use when creating or modifying frontend pages, components, hooks, styling, tests, or browser behavior.
Dependency vulnerability remediation workflow for this repository. Use when fixing CVE, BDSA, GHSA, OSV, npm, PyPI, Dependabot, Black Duck, Snyk, or other package vulnerability findings, especially when the user asks for minimal package-only updates, validation, commits, branches, or pull requests.
基于 SOC 职业分类
| name | setup |
| description | Launch all services for the Retail-Agentic-Commerce project. Use when the user types setup, install, or asks to start, launch, or run the project stack. |
This skill sets up and launches the Retail-Agentic-Commerce project. It supports Docker deployment and local development.
Ask which deployment mode the user wants before proceeding unless they already specified one:
If the user says "setup" or "install" without specifying a mode, ask them. Default to Docker only if the user explicitly says to use the default.
Create .env from the template if it does not exist:
cp env.example .env
Do not overwrite an existing .env.
Validate that NVIDIA_API_KEY is set to a real key:
nvapi- and is not the placeholder.nvapi-xxx.If the key is missing or placeholder, stop and tell the user to create a key at https://build.nvidia.com/settings/api-keys and set it in .env.
Confirm these public NIM endpoint defaults unless the user intentionally configured another host:
NIM_LLM_BASE_URL=https://integrate.api.nvidia.com/v1
NIM_EMBED_BASE_URL=https://integrate.api.nvidia.com/v1
Check prerequisites:
docker --version
docker compose version
docker info
Launch services:
docker network create acp-infra-network || true
docker compose -f docker-compose.infra.yml -f docker-compose.yml up --build -d
Check service status:
docker compose -f docker-compose.infra.yml -f docker-compose.yml ps
Verify core health endpoints:
curl -s http://localhost/api/health
curl -s http://localhost/psp/health
curl -s http://localhost/apps-sdk/health
Verify NAT agents from the merchant container because Docker agents are internal-only:
docker compose -f docker-compose.infra.yml -f docker-compose.yml exec merchant \
python -c "
import urllib.request as u
for name, url in [
('promotion', 'http://promotion-agent:8002/health'),
('post-purchase', 'http://post-purchase-agent:8003/health'),
('recommendation', 'http://recommendation-agent:8004/health'),
('search', 'http://search-agent:8005/health'),
]:
try:
status = u.urlopen(url, timeout=5).status
print(f'{name}: {status}')
except Exception as e:
print(f'{name}: FAILED ({e})')
"
Report these URLs when Docker setup succeeds:
Demo UI: http://localhost
API Health: http://localhost/api/health
PSP Health: http://localhost/psp/health
Apps SDK Health: http://localhost/apps-sdk/health
API OpenAPI: http://localhost/api/openapi.json
PSP OpenAPI: http://localhost/psp/openapi.json
Apps SDK OpenAPI: http://localhost/apps-sdk/openapi.json
Phoenix Traces: http://localhost:6006
MinIO Console: http://localhost:9001
Run the automated setup script from the repo root:
./install.sh
Stop services with:
./stop.sh
The script validates prerequisites, creates .env from env.example if missing, validates NVIDIA_API_KEY, installs dependencies, starts services, and runs health checks.
Expected local URLs:
Demo UI: http://localhost:3000
Merchant API: http://localhost:8000/docs
PSP: http://localhost:8001/docs
Apps SDK MCP: http://localhost:2091/docs
Phoenix Traces: http://localhost:6006
MinIO Console: http://localhost:9001
tail -f logs/<service>.log.docker compose -f docker-compose.infra.yml -f docker-compose.yml logs -f <service-name>.lsof -i :<port>.docker compose -f docker-compose.infra.yml -f docker-compose.yml down -v, then launch again.Report the chosen mode, commands run, health check results, URLs, and any services that failed to start.