From 525ec0a00d89b8161c8137a91e9ac18ff5baf9be Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Fri, 19 Jun 2026 18:03:07 +0800 Subject: [PATCH] fix(skills):Update the smock-test skill to use make up in docker mode (#3656) --- .agent/skills/smoke-test/SKILL.md | 6 +++--- .agent/skills/smoke-test/references/SOP.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.agent/skills/smoke-test/SKILL.md b/.agent/skills/smoke-test/SKILL.md index c185068cd..2796d870b 100644 --- a/.agent/skills/smoke-test/SKILL.md +++ b/.agent/skills/smoke-test/SKILL.md @@ -82,12 +82,12 @@ smoke-test/ 1. **Check dependencies** - Run `make check` 2. **Install dependencies** - Run `make install` 3. **(Optional) Pre-pull the sandbox image** - If needed, run `make setup-sandbox` -4. **Start services** - Run `make dev-daemon` (background mode, recommended) or `make dev` (foreground mode) +4. **Start services** - Run `make start` (production mode) 5. **Wait for startup** - Give all services enough time to start completely (90-120 seconds recommended) **Docker mode deployment** (if Docker is selected): 1. **Initialize Docker environment** - Run `make docker-init` -2. **Start Docker services** - Run `make docker-start` +2. **Start Docker services** - Run `make up` (production mode) 3. **Wait for startup** - Give all containers enough time to start completely (60 seconds recommended) ### Phase 5: Service Health Check @@ -166,7 +166,7 @@ Smoke test pass criteria (Docker mode): - [x] Docker environment check passes - [x] Configuration files are set up correctly - [x] `make docker-init` completes successfully -- [x] `make docker-start` completes successfully +- [x] `make up` completes successfully - [x] All Docker containers run normally - [x] Frontend page is accessible - [x] Frontend route smoke check passes (`/workspace` key routes) diff --git a/.agent/skills/smoke-test/references/SOP.md b/.agent/skills/smoke-test/references/SOP.md index 6b2cca888..e55b0ecfc 100644 --- a/.agent/skills/smoke-test/references/SOP.md +++ b/.agent/skills/smoke-test/references/SOP.md @@ -291,9 +291,9 @@ This document describes the detailed operating steps for each phase of the DeerF #### 4.2.2 Start Docker Services **Steps**: -1. Run `make docker-start` +1. Run `make up` -**Description**: This command builds and starts all required Docker containers. +**Description**: This command builds and starts all required Docker containers in production. ---