DSCC 0.1.0 release notes (draft)
Summary
DSCC 0.1.0 is the first public release of the forked,
re-branded continuation of the clean-room Claw Code Rust implementation.
DSCC preserves wire compatibility with the Anthropic Messages API
(anthropic-version: 2023-06-01) and with OpenAI-compatible
providers, but the brand surface — paths, env vars, config keys, CLI
binary, and prompt text — has been cleanly migrated to dscc
/ DSCC.md / DSCC_*.
This release centers on a usable local CLI experience: interactive sessions, non-interactive prompts, workspace tools, configuration loading, sessions, plugins, and local agent/skill discovery.
Highlights
- Initial public
0.1.0release of DSCC from theoMygpt/dsccsource tree - Safe-Rust implementation as the primary product surface
dsccCLI for interactive and one-shot coding-agent workflows- Model is user-supplied via
--modelorDSCC_MODEL— no hard-coded default, with a bilingual (EN/中文) error when unset - Built-in workspace tools for shell, file operations, search, web fetch/search, todo tracking, and notebook updates
- Slash-command surface for status, compaction, config inspection, sessions, diff/export, and version info
- Local plugin, agent, and skill discovery/management surfaces
- OAuth login/logout plus model/provider selection
Install and run
Source builds:
cargo install --path crates/dscc-cli --locked
# or
cargo build --release -p dscc-cli
Run:
dscc --model claude-opus-4-6
dscc --model claude-sonnet-4-6 prompt "summarize this repository"
OpenAI-compatible provider (e.g. doubao/ARK):
export DSCC_API_KEY="..."
export DSCC_BASE_URL="https://ark.cn-beijing.volces.com/api/v3"
dscc --model doubao-seed-1-6-250615 prompt "hi"
Known limitations
- Source-build distribution with multi-platform release archives; crates.io publishing is not set up
- Some integration coverage is opt-in because live provider credentials and network access are required
- Public interfaces may continue to evolve during the
0.xrelease line
Licensing
DSCC is dual-licensed starting with 0.1.0:
- Open source: AGPL-3.0-only (
LICENSE) - Commercial: filed as GitHub Issues on
oMygpt/dscc(LICENSE-COMMERCIAL.md)
Verification used for this draft
- Workspace version verified from
Cargo.toml dsccbinary/package path verified fromcargo metadata- CLI command surface verified from
cargo run --quiet --bin dscc -- --help - CI coverage verified from
.github/workflows/