用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/mongodb/mongo-efcore-provider --skill test-all命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | test-all |
| description | Build and run tests against all three EF version targets (EF8, EF9, EF10) |
| argument-hint | [optional: test filter or project name] [--model haiku|sonnet|opus] |
| allowed-tools | Bash(dotnet *), Bash(docker info), Bash(printenv:*), Read, Glob, Grep, Agent |
$SLN refers to the solution file path: {working directory}/MongoDB.EFCoreProvider.sln
Parse $ARGUMENTS for:
model parameter when spawning agents. If absent, use haiku.--filter to dotnet test.dotnet --list-sdks and verify a 10.x SDK is installed.
If missing, stop with: "net10.0 SDK is not installed."A variable counts as a real external database only when it matches what
TestServer.GetOrInitialize treats as a usable connection: it is set, not
empty or whitespace-only (the harness treats blank as unset), and not
"Disabled" compared case-insensitively (Disabled / disabled / DISABLED
are all the skip-Atlas sentinel, not a connection). Apply this same test in both
checks below.
Database connectivity — Run printenv MONGODB_URI, then check that either:
docker info succeeds), ORMONGODB_URI is a real external database (per the rule above).
ATLAS_URI does not satisfy this check: it only supplies the Atlas-specific
server, while the default server every test uses comes from MONGODB_URI or a
testcontainer (TestServer.cs). So without Docker or MONGODB_URI, the run
can't start even if ATLAS_URI is set.
If neither holds, stop with: "No database available. Start Docker or set MONGODB_URI."Shared-database detection — Run printenv MONGODB_URI and printenv ATLAS_URI.
If MONGODB_URI or ATLAS_URI is a real external database (per the rule
above), the test runs hit that shared database instead of a per-process
testcontainer — record SHARED_DB = true, which forces serial execution in
Phase 2. Otherwise SHARED_DB = false: each EF version gets its own
testcontainer, so parallel execution is safe. (An empty/whitespace value or
ATLAS_URI=Disabled keeps SHARED_DB = false.)
Run one build + test pass per EF version (EF8, EF9, EF10), each via the Agent
tool with the model parameter set. How they are scheduled depends on
SHARED_DB from Phase 1:
SHARED_DB = false (testcontainers) — spawn all three sub-agents in
parallel (one assistant message with three Agent blocks). Each EF version
builds into a separate output dir and gets its own testcontainer, so there is
no contention.SHARED_DB = true (MONGODB_URI / ATLAS_URI set) — run the three
sub-agents serially: dispatch one, wait for it to finish, then dispatch the
next. The three versions would otherwise all hit the same database
concurrently and race on shared global state (the test suite disables
intra-assembly parallelization for exactly this reason — see
tests/.../FunctionalTests/Usings.cs). Never run them in parallel when a
shared database is configured.Each agent's prompt must run the build and test commands below. Both operate on
the whole solution $SLN, which is required: it runs all test projects —
MongoDB.EntityFrameworkCore.UnitTests, MongoDB.EntityFrameworkCore.FunctionalTests,
and MongoDB.EntityFrameworkCore.SpecificationTests. Do not narrow to a single
project unless the user passed an explicit filter (see Arguments).
(If the user passed a filter/project arg, append it — e.g. --filter "<expr>"
or the project path — to the test command; otherwise run the full solution so
unit, functional, and specification tests all execute.)
Each sub-agent runs its build+test in the foreground and reports only after the test process has exited with a summary:
&, no nohup, no background-run tool, no
"I'll report once the background task notifies me." Run the command, block until
it exits, then parse. A reply sent while the run is still going is a failed
dispatch, not a status — the controller must re-run it.dotnet test … > <logfile> 2>&1.UnitTests, FunctionalTests, SpecificationTests). Search the log for each Passed!/Failed! block and sum the three per-assembly Passed/Failed/Skipped totals.
two assemblies — SpecificationTests is usually last and is roughly half the
tests, so reading only it undercounts by thousands.--no-build above is correct because Phase 2 built first. If the build step
did not run in this same invocation, drop --no-build — a stale binary produces
a false green.cd into directories.SHARED_DB: safe only when each EF version gets its own
testcontainer (SHARED_DB = false). When MONGODB_URI/ATLAS_URI point at a
shared database (SHARED_DB = true), run the versions serially — builds still
go to separate output dirs, but their tests must not hit the shared database
concurrently.Populate the summary table with the actual results from each sub-agent.
For each EF version, parse the dotnet test output and extract the real
Passed, Failed, and Skipped totals from the test summary. A whole-solution
run prints a separate summary block per test assembly (three total) — sum all
three. If a sub-agent reports only a single block, the run is incomplete or it
read the wrong block; send it back rather than reporting a partial count.
Set the Build column to the actual build result for that version (OK or FAILED).
Use this format for the console summary:
| Version | Build | Passed | Failed | Skipped |
|---|---|---|---|---|
| EF8 | ||||
| EF9 | ||||
| EF10 |
If any version had failures, list failing test names grouped by version.