Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

cli-backend-testingCLI backend 测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

480

周安装

20

GitHub Stars

75,937

下载量

160
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cli-backend-testing(CLI backend 测试)
来源仓库:https://github.com/lobehub/lobehub
仓库路径:skills/cli-backend-testing
安装命令:
npx skills add https://github.com/lobehub/lobehub --skill cli-backend-testing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lobehub/lobehub --skill cli-backend-testing

简介

cli-backend-testing 用于验证 LobeHub CLI 与本地开发服务器的后端变更,涵盖 TRPC 路由和服务模型的全链路测试。

  • 适合 API 字段修改、响应结构调整或数据流问题的排查,提供设备码登录和隔离凭证机制。
  • 需本地 Next.js 服务运行于 localhost:3011,CLI 使用独立目录避免污染主配置。
  • 支持端到端测试、结构校验和日志比对,帮助定位前后端交互中的异常行为。
  • 测试用例应聚焦真实业务逻辑,避免为通过而掩盖潜在缺陷,尤其注意边界条件覆盖。

SKILL.md

CLI + Backend Integration Testing

Standard workflow for verifying backend changes using the LobeHub CLI (lh) against a local dev server.

When to Use

  • Verifying TRPC router / service / model changes end-to-end
  • Testing new API fields or response structure changes
  • Validating CLI command output after backend modifications
  • Debugging data flow issues between server and CLI

Prerequisites

RequirementDetails
Dev serverlocalhost:3011 (Next.js)
CLI sourcelobehub/apps/cli/
CLI dev modeUses LOBEHUB_CLI_HOME=.lobehub-dev for isolated credentials
AuthDevice Code Flow login to local server

Quick Reference

All CLI dev commands run from lobehub/apps/cli/:

# Shorthand for all commands below
CLI="LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts"

Workflow

Step 1: Ensure Dev Server is Running

Check if the dev server is already running:

curl -s -o /dev/null -w '%{http_code}' http://localhost:3011/ 2> /dev/null
  • If reachable (returns any HTTP status): server is running. Skip to Step 2.
  • If unreachable: start the server:
# From cloud repo root
pnpm run dev:next

To restart (pick up server-side code changes):

lsof -ti:3011 | xargs kill
pnpm run dev:next

Important: Server-side code changes in the submodule (lobehub/src/server/, lobehub/packages/) require a server restart. Next.js hot-reload may not pick up changes in submodule packages.

Step 2: Check CLI Authentication

Check if dev credentials already exist:

cat lobehub/apps/cli/.lobehub-dev/settings.json 2> /dev/null
  • If file exists and contains "serverUrl": "http://localhost:3011": already authenticated. Skip to Step 3.
  • If file missing or points to wrong server: login is needed. Ask the user to run:
! cd lobehub/apps/cli && LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts login --server http://localhost:3011
Login requires interactive browser authorization (OIDC Device Code Flow), so the user must run it themselves via ! prefix. After login, credentials are saved to lobehub/apps/cli/.lobehub-dev/ and persist across sessions.

Step 3: Test with CLI Commands

CLI runs from source (bun src/index.ts), so CLI-side code changes take effect immediately without rebuilding.

cd lobehub/apps/cli
LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts <command>

Step 4: Clean Up Test Data

Delete any test data created during verification:

LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts task delete < id > -y
LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts agent delete < id > -y

Common Testing Patterns

Task System

# List tasks
$CLI task list

# Create test data with nesting
$CLI task create -n "Root Task" -i "Test instruction"
$CLI task create -n "Child Task" -i "Sub instruction" --parent T-1

# View task detail (tests getTaskDetail service)
$CLI task view T-1

# View task tree
$CLI task tree T-1

# Test lifecycle
$CLI task edit T-1 --status running
$CLI task comment T-1 -m "Test comment"

# Clean up
$CLI task delete T-1 -y

Agent System

# List agents
$CLI agent list

# View agent detail
$CLI agent view <agent-id>

# Run agent (tests agent execution pipeline)
$CLI agent run <agent-id> -m "Test prompt"

Document & Knowledge Base

# List documents
$CLI doc list

# Create and view
$CLI doc create -t "Test Doc" -c "Content here"
$CLI doc view <doc-id>

# Knowledge base
$CLI kb list
$CLI kb tree <kb-id>

Model & Provider

# List models and providers
$CLI model list
$CLI provider list

# Test provider connectivity
$CLI provider test <provider-id>

Dev-Test Cycle

The standard cycle for backend development:

1. Make code changes (service/model/router/type)
         |
2. Run unit tests (fast feedback)
   bunx vitest run --silent='passed-only' '<test-file>'
         |
3. Restart dev server (if server-side changes)
   lsof -ti:3011 | xargs kill && pnpm run dev:next
         |
4. CLI verification (end-to-end)
   LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts <command>
         |
5. Clean up test data

When Server Restart is Needed

Change LocationRestart?
lobehub/src/server/ (routers, services)Yes
lobehub/packages/database/ (models)Yes
lobehub/packages/types/Yes
lobehub/packages/prompts/Yes
lobehub/apps/cli/ (CLI code)No
src/ (cloud overrides)Yes

When Server Restart is NOT Needed

CLI runs from source via bun src/index.ts, so any changes to lobehub/apps/cli/src/ take effect immediately on next command invocation.

Troubleshooting

IssueSolution
No authentication foundRun login --server http://localhost:3011
UNAUTHORIZED on API callsToken expired; re-run login
ECONNREFUSEDDev server not running; start with pnpm run dev:next
CLI shows old data/behaviorServer needs restart to pick up code changes
EADDRINUSE on port 3011Server already running; kill with `lsof -ti:3011 \xargs kill`
Login opens wrong serverMust use --server http://localhost:3011 flag (env var doesn't work)

Credential Isolation

ModeCredential DirServer
Devlobehub/apps/cli/.lobehub-dev/localhost:3011
Production~/.lobehub/app.lobehub.com

The two environments are completely isolated. Dev mode credentials are gitignored.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.05%
按下载量换算58

Claude

27.27%
按下载量换算44

Cursor

18.29%
按下载量换算29

Gemini CLI

8.49%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills