DSCC
home / verification / registry

Verification Registry · 验证登记簿

Each row below corresponds to a # [待验证] marker that has been resolved. See verification.md for tier definitions. 每条记录对应一个已处置的 # [待验证] 标记。层级定义见 verification.md

Schema · 字段

Column Meaning
Doc File where the command lives
Tier 1 / 2 / 3 / 4
Verdict PASS / FAIL / INTERACTIVE
Evidence Log path or file:line source citation
Notes One-liner

Entries · 条目

Run 2026-04-16

Doc Tier Verdict Evidence Notes
docs/getting-started/installation.mdcargo install --path …, cargo build --release, cargo run --bin dscc 1 PASS README.md:65-90 Idiomatic cargo.
docs/getting-started/installation.mddscc --version, dscc --help 2 PASS logs/tier2/version.log, logs/tier2/help.log
docs/getting-started/authentication.mdexport *_API_KEY, export *_BASE_URL (Anthropic, xAI, DeepSeek, generic) 1 PASS crates/api/src/providers/mod.rs, crates/dscc-cli/src/main.rs:195-216 Env-var names read verbatim at launch.
docs/getting-started/authentication.mddscc logout 2 PASS logs/tier2/logout.log Exit 0 on fresh env.
docs/getting-started/authentication.mddscc login 4 INTERACTIVE crates/runtime/src/oauth.rs:474 Marked # [交互]; browser OAuth on port 4545.
docs/getting-started/authentication.mddscc --model doubao-seed-1-6-250615 prompt "summarize this workspace" 3 PASS logs/tier3/smoke.log Run 2 Command form proven via doubao-seed-2.0-code on Volces ARK. Doc also corrected to include the prompt subcommand keyword.
docs/getting-started/model-selection.md — four examples (REPL × 2, one-shot × 2) 3+4 PASS / INTERACTIVE logs/tier3/smoke.log Run 2, logs/tier3/one-shot-json.log One-shot forms stripped (form proven); REPL forms marked # [交互].
docs/getting-started/first-session.md — REPL × 2, one-shot × 2, JSON × 2 3+4 PASS / INTERACTIVE logs/tier3/one-shot-json.log (JSON form), logs/tier3/smoke.log (one-shot form) Same treatment as model-selection.md.
docs/guides/one-shot-mode.mddscc --model … prompt … --output-format json 3 PASS logs/tier3/one-shot-json.log JSON envelope returned; one marker stripped.
docs/reference/cli.mddscc system-prompt … 2 PASS logs/tier2/system-prompt.log Prints composed system prompt.
docs/reference/cli.mddscc --model <id> REPL launch 4 INTERACTIVE main.rs:291-296 # [交互].
docs/reference/cli.mddscc prompt "…" --output-format json --allowed-tools … 3 PASS logs/tier3/one-shot-json.log (JSON), logs/tier2/agents.log / clap parser for --allowed-tools shape
docs/reference/cli.mddscc --resume <file> /<cmd> 3 BLOCKED Marker kept; requires a pre-existing session file, which needs a prior REPL run to create.
docs/extending/agents.md/agents 4 INTERACTIVE commands/lib.rs:73-300 # [交互] REPL slash command; CLI equivalent dscc agents is Tier 2 PASS.
docs/extending/skills.md/skills 4 INTERACTIVE same # [交互]; CLI equivalent dscc skills is Tier 2 PASS.
docs/extending/plugins.mddscc plugin install ./… FIXED commands/lib.rs:692-801 Command did not exist as CLI subcommand; rewritten to /plugin install <path> and marked # [交互].
docs/cookbook/01-code-review/README.md 3 PASS docs/cookbook/01-code-review/dscc_run.log, report_dscc.md Both planted bugs found; no writes under read-only.
docs/cookbook/02-test-generation/README.md 3 PASS docs/cookbook/02-test-generation/dscc_run.log, report_dscc.md, generated_utils_test.rs cargo test green; 19 cases; src/utils.rs sha unchanged. Ran under danger-full-access to avoid approval prompt on the model’s cargo test bash call.
docs/cookbook/03-refactor-rename/README.md 3 PASS docs/cookbook/03-refactor-rename/dscc_run.log, report_dscc.md, diff.patch git grep load_config empty post-run; 4 files, 7/7 lines.
docs/cookbook/04-web-research/README.md 3 PASS docs/cookbook/04-web-research/dscc_run.log, report_dscc.md Three tables returned; source URL at top; no writes.
docs/cookbook/05-data-analysis/README.md 3 PASS docs/cookbook/05-data-analysis/dscc_run.log, report_dscc.md Mirror of the shipped demo artifacts under demo/social_media_analysis/.

Supporting Tier 2 smoke logs

Command Verdict Log
dscc init PASS logs/tier2/init.log
dscc agents PASS logs/tier2/agents.log
dscc skills PASS logs/tier2/skills.log
dscc bootstrap-plan PASS logs/tier2/bootstrap-plan.log
dscc dump-manifests FAIL logs/tier2/dump-manifests.log — dev-only; requires upstream TS workspace (main.rs:508-522). Not exposed in docs.

Tier 3 runs

Command Verdict Log Notes
smoke prompt (Run 1) FAIL logs/tier3/smoke.log Bad key format (7-char first segment).
smoke prompt (Run 2) PASS logs/tier3/smoke.log Good key; form dscc --model <id> prompt "<text>" proven.
--output-format json PASS logs/tier3/one-shot-json.log JSON envelope with message, model, iterations, tool_uses, tool_results, usage.
cookbook 01 (read-only) PASS docs/cookbook/01-code-review/dscc_run.log
cookbook 02 (danger-full-access) PASS docs/cookbook/02-test-generation/dscc_run.log
cookbook 03 (danger-full-access) PASS docs/cookbook/03-refactor-rename/dscc_run.log
cookbook 04 (read-only) PASS docs/cookbook/04-web-research/dscc_run.log
cookbook 05 (danger-full-access, via shipped demo) PASS demo/social_media_analysis/dscc_run.log (mirrored into docs/cookbook/05-data-analysis/)

Still-open markers

Marker Reason Next action
docs/reference/cli.md:48 and :104dscc --resume <file.json> /<cmd> Needs a saved .json session file, which requires a prior REPL run to produce. Deferred rather than stripped. Capture a small session via /export then re-run and strip.