Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

codeprobe-testing代码探针测试

Agent Skill

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

总安装

629

周安装

27

GitHub Stars

4

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nishilbhave/codeprobe --skill codeprobe-testing

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中编写单元测试或定位失败日志问题。
  • 通过 npx 命令安装,需确认项目测试框架和运行命令。
  • 涉及浏览器或服务时应区分本地模拟与生产环境。
  • codeprobe-testing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Standalone Mode

If invoked directly (not via the orchestrator), you must first:

  1. Read ../codeprobe/shared-preamble.md for the output contract, execution modes, and constraints.
  2. Load applicable reference files from ../codeprobe/references/ based on the project's tech stack.
  3. Default to full mode unless the user specifies otherwise.

Test Quality & Coverage Auditor

Domain Scope

This sub-skill detects test quality and coverage issues across six categories:

  1. Missing Tests — Public methods without corresponding tests, critical business logic untested.
  2. Test Smells — Tests with no assertions, testing implementation details, brittle tests.
  3. Test Structure — Missing Arrange-Act-Assert separation, poor naming, testing too many things.
  4. Mock Abuse — Mocking the system under test, mock returning mocks, over-mocking.
  5. Coverage Gaps — No tests for error paths, authorization logic, edge cases.
  6. Test Data — Hardcoded IDs, fragile fixtures, environment-dependent tests.

What It Does NOT Flag

  • Missing tests for trivial getters/setters or pure DTOs — these add testing overhead without meaningful coverage.
  • Framework-generated test stubs that are empty but clearly scaffolded (e.g., Laravel's ExampleTest.php, Create React App's App.test.js) — these are starting points, not abandoned tests.
  • Integration/E2E test suites that intentionally don't follow unit test conventions — different test levels have different design constraints.
  • Test execution speed — this sub-skill assesses test design quality, not runtime performance.
  • Tests in vendor/, node_modules/, or other dependency directories.

Detection Instructions

Severity Ceiling

No finding from this sub-skill should ever be classified as Critical. Missing tests, even for critical business logic, are a maintainability and risk issue (Major), not a confirmed production defect. The highest severity this sub-skill may assign is Major. Follow the severity column in each detection table exactly — do not escalate beyond it.

Missing Tests

ID PrefixWhat to DetectHow to DetectSeverity
TESTPublic methods with no corresponding testScan source directories for public class methods. For each, check if a corresponding test file/method exists. Use test file naming conventions: test_, _test., .test., Test[A-Z], spec_, _spec., .spec. (matching file_stats.py patterns).Major
TESTCritical business logic untestedIdentify classes/methods handling payments, authentication, authorization, order processing, or data mutations. Check whether these have dedicated test coverage.Major
TESTEdge cases unaddressedWhen tests exist for a method, check whether they cover: null/empty inputs, boundary values (0, -1, max), error cases, and the happy path. Flag methods with only happy-path tests.Minor

Test Smells

ID PrefixWhat to DetectHow to DetectSeverity
TESTTests with no assertionsSearch test methods for assertion calls (assert, expect, should, verify). Flag test methods that execute code but never assert on the outcome — they only verify "no exception thrown."Major
TESTTests testing implementation detailsTests that mock every dependency and only verify call order/counts rather than outcomes. Tests that break when internal implementation changes but behavior stays the same. Look for excessive ->expects()->method()->with() chains or toHaveBeenCalledWith without checking return values.Minor
TESTBrittle tests coupled to external stateTests that depend on database state not set up in the test, file system paths, network calls, or system time without mocking. Look for raw SQL in tests, file_exists() checks, HTTP calls without mocking.Minor
TESTTests dependent on execution orderTests that pass individually but fail when run together (or vice versa). Look for shared mutable state between test methods: class-level properties modified in tests, database records not cleaned up.Major

Test Structure

ID PrefixWhat to DetectHow to DetectSeverity
TESTMissing Arrange-Act-Assert separationTest methods where setup, execution, and assertion are interleaved rather than clearly separated. Multiple act+assert cycles in one test.Minor
TESTTest names that don't describe the scenarioTest methods named test1, testFunction, it_works, or using generic names that don't describe the input condition and expected outcome. Good: test_empty_cart_returns_zero_total. Bad: testCalculate.Minor
TESTSingle test testing too many thingsTest methods with 5+ assertions on unrelated outcomes, or that test multiple scenarios in sequence. Should be split into focused tests.Minor

Mock Abuse

ID PrefixWhat to DetectHow to DetectSeverity
TESTMocking the system under testTest creates a mock/partial mock of the class being tested. The test is testing the mock, not the actual code. Look for $this->createPartialMock(ClassName::class) or jest.spyOn(sut, 'method') where sut is the class being tested.Major
TESTMock returning mocksMock objects configured to return other mock objects, creating deep mock chains. $mock->method('getUser')->willReturn($userMock) where $userMock->method('getProfile')->willReturn($profileMock).Major
TESTOver-mocking making tests pass regardlessTests where every dependency is mocked and the mocks return exactly what the code expects, making the test a tautology. If you change the implementation logic, the test still passes because the mocks drive the result.Minor

Coverage Gaps

ID PrefixWhat to DetectHow to DetectSeverity
TESTNo tests for error/exception pathsMethods with try/catch blocks or error handling where tests only cover the success path. No test triggers the catch/error branch.Minor
TESTNo tests for authorization logicPermission checks, policy methods, gate definitions, middleware authorization — code that controls access but has no dedicated tests.Major
TESTNo edge case testsFunctions handling arrays/collections without tests for empty input. Numeric functions without tests for zero, negative, or boundary values. String functions without tests for empty string, unicode, or very long input.Minor

Test Data

ID PrefixWhat to DetectHow to DetectSeverity
TESTHardcoded IDs that may collideTests using hardcoded numeric IDs ($userId = 42, id: 1) instead of factory-generated values. These collide in parallel test runs or with seeded data.Minor
TESTFragile factory/fixture setupTests with complex inline data setup that duplicates across multiple tests instead of using factories/fixtures/builders.Minor
TESTTests relying on specific database stateTests that assume certain records exist in the database without creating them in the test setup. Depends on seeders or previous test execution.Minor

ID Prefix & Fix Prompt Examples

All findings use the TEST- prefix, numbered sequentially: TEST-001, TEST-002, etc.

Fix Prompt Examples

  • "Write a test for OrderService@calculateTotal that covers: empty cart (expect 0), single item, multiple items, and item with discount. Use OrderFactory for test data. Place in tests/Unit/Services/OrderServiceTest.php."
  • "The test test_user_can_login at tests/Feature/AuthTest.php:25 has no assertions — it only calls the login endpoint. Add assertStatus(200), assertAuthenticated(), and assertJsonStructure(['token']) assertions."
  • "In tests/Unit/PaymentServiceTest.php:40, the mock chain is mocking too deeply. Create a concrete FakePaymentGateway that implements the gateway interface and returns predictable responses instead of nested mock returns."
  • "Replace the hardcoded user ID 42 in tests/Feature/OrderTest.php:15 with User::factory()->create()->id to prevent test collisions in parallel test runs."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.15%
按下载量换算75

Claude

31.12%
按下载量换算68

Cursor

20.66%
按下载量换算45

Gemini CLI

10.4%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills