AgentSkillsCN

stop-backend

从MVP故事列表中生成故事规格说明。在用户想要创建详细的故事文档,或提及“/story”命令时使用此功能。

SKILL.md
--- frontmatter
name: stop-backend
description: Stop the running Spring Boot backend application. Use when user wants to stop the backend server or mentions /stop-backend command.

Stop Backend Application

Action

Use TaskStop with the backend task ID (from /run-backend output).

If task ID unknown, kill by port:

bash
for /f "tokens=5" %a in ('netstat -ano ^| findstr :8080 ^| findstr LISTENING') do taskkill /F /PID %a

Output

Report: backend stopped.