Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

ln-510-test-plannerln 510 测试计划员

Agent Skill

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

总安装

408

周安装

17

GitHub Stars

441

下载量

136
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-510-test-planner

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 可编写单元测试、端到端测试或根据日志定位问题,提升测试效率。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需确认测试框架、运行命令,并区分模拟与生产环境。
  • ln-510-test-planner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Test Planning Orchestrator

Coordinates the complete test planning pipeline for a Story by delegating to specialized workers.

Purpose & Scope

  • Orchestrate test planning: research → manual testing → automated test planning
  • Delegate to workers: ln-511-test-researcher, ln-512-manual-tester, ln-513-auto-test-planner
  • No direct work — only coordination and delegation via Skill tool
  • Called by ln-500-story-quality-gate after regression tests pass

When to Use

This skill should be used when:

  • Invoked by ln-500-story-quality-gate Pass 1 after regression tests pass
  • All implementation tasks in Story are Done
  • Need complete test planning (research + manual + auto)

Prerequisites:

  • All implementation Tasks in Story status = Done
  • Regression tests passed (ln-502)
  • Code quality checked (ln-501)

Pipeline Overview

ln-510-test-planner (Orchestrator)
    │
    ├─→ ln-511-test-researcher
    │     └─→ Posts "## Test Research: {Feature}" comment
    │
    ├─→ ln-512-manual-tester
    │     └─→ Creates tests/manual/ scripts + "## Manual Testing Results" comment
    │
    └─→ ln-513-auto-test-planner
          └─→ Creates test task in Linear via ln-301/ln-302

Workflow

Phase 1: Discovery

  1. Auto-discover Team ID from docs/tasks/kanban_board.md
  2. Validate Story ID provided by ln-500

Input: Story ID from ln-500-story-quality-gate

Phase 2: Research Delegation

  1. Check if research exists:

- Search Linear comments for "## Test Research:" header - If found → skip to Phase 3

  1. If no research:

- Use Skill tool to invoke ln-511-test-researcher - Pass: Story ID - Wait for completion - Verify research comment created

Phase 3: Manual Testing Delegation

  1. Check if manual testing done:

- Search Linear comments for "## Manual Testing Results" header - If found with all AC passed → skip to Phase 4

  1. If manual testing needed:

- Use Skill tool to invoke ln-512-manual-tester - Pass: Story ID - Wait for completion - Verify results comment created

  1. If any AC failed:

- Stop pipeline - Report to ln-500: "Manual testing failed, Story needs fixes"

Phase 4: Auto Test Planning Delegation

  1. Invoke auto test planner:

- Use Skill tool to invoke ln-513-auto-test-planner - Pass: Story ID - Wait for completion

  1. Verify results:

- Test task created in Linear (or updated if existed) - Return task URL to ln-500

Phase 5: Report to Caller

  1. Return summary to ln-500:

- Research: completed / skipped (existed) - Manual testing: passed / failed - Test task: created / updated + URL

Worker Invocation (MANDATORY)

CRITICAL: All delegations use Task tool with subagent_type: "general-purpose" for context isolation.
PhaseWorkerPurpose
2ln-511-test-researcherResearch real-world problems
3ln-512-manual-testerManual AC testing via bash scripts
4ln-513-auto-test-plannerPlan E2E/Integration/Unit tests

Prompt template:

Task(description: "[Phase N] test planning via ln-51X",
     prompt: "Execute ln-51X-{worker}. Read skill from ln-51X-{worker}/SKILL.md. Story: {storyId}",
     subagent_type: "general-purpose")

Anti-Patterns:

  • ❌ Direct Skill tool invocation without Task wrapper
  • ❌ Running web searches directly (delegate to ln-511)
  • ❌ Creating bash test scripts directly (delegate to ln-512)
  • ❌ Creating test tasks directly (delegate to ln-513)
  • ❌ Skipping any phase without justification

Critical Rules

  • No direct work: Orchestrator only delegates, never executes tasks itself
  • Sequential execution: 511 → 512 → 513 (each depends on previous)
  • Fail-fast: If manual testing fails, stop pipeline and report
  • Skip detection: Check for existing comments before invoking workers
  • Single responsibility: Each worker does one thing well

Definition of Done

  • Story ID validated
  • Research phase: ln-511 invoked OR existing comment found
  • Manual testing phase: ln-512 invoked OR existing results found
  • Auto test planning phase: ln-513 invoked
  • Test task created/updated in Linear
  • Summary returned to ln-500-story-quality-gate

Output: Summary with phase results + test task URL

Reference Files

  • Workers: ../ln-511-test-researcher/SKILL.md, ../ln-512-manual-tester/SKILL.md, ../ln-513-auto-test-planner/SKILL.md
  • Caller: ../ln-500-story-quality-gate/SKILL.md
  • Risk-based testing: ../ln-513-auto-test-planner/references/risk_based_testing_guide.md

Version: 4.0.0 (Refactored to Orchestrator pattern - delegates to ln-511/512/513 workers) Last Updated: 2026-01-15

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.83%
按下载量换算41

Codex

20.66%
按下载量换算28

Gemini CLI

18.66%
按下载量换算25

OpenCode

12.49%
按下载量换算17

Antigravity

8.08%
按下载量换算11

windsurf

3.15%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills