docs/getting-started/installation.md —
cargo install --path …, cargo build --release,
cargo run --bin dscc |
1 |
PASS |
README.md:65-90 |
Idiomatic cargo. |
docs/getting-started/installation.md —
dscc --version, dscc --help |
2 |
PASS |
logs/tier2/version.log,
logs/tier2/help.log |
|
docs/getting-started/authentication.md —
export *_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.md —
dscc logout |
2 |
PASS |
logs/tier2/logout.log |
Exit 0 on fresh env. |
docs/getting-started/authentication.md —
dscc login |
4 |
INTERACTIVE |
crates/runtime/src/oauth.rs:474 |
Marked # [交互]; browser OAuth on port 4545. |
docs/getting-started/authentication.md —
dscc --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.md —
dscc --model … prompt … --output-format json |
3 |
PASS |
logs/tier3/one-shot-json.log |
JSON envelope returned; one marker stripped. |
docs/reference/cli.md —
dscc system-prompt … |
2 |
PASS |
logs/tier2/system-prompt.log |
Prints composed system prompt. |
docs/reference/cli.md —
dscc --model <id> REPL launch |
4 |
INTERACTIVE |
main.rs:291-296 |
# [交互]. |
docs/reference/cli.md —
dscc 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.md —
dscc --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.md —
dscc 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/. |