| 123456789101112131415161718192021222324252627282930 |
- Usage: dsh [--profile] <name> [options] [app-args...]
- dsh plugin --profile <name> <pnpm-args...>
- dsh: boot a DeepSeek Harness profile — an ordered stack of plugin-bundle patch
- layers under your own overrides.
- Arguments:
- args arguments for the booted profile's app (see:
- dsh --profile <name> --help)
- Options:
- -V, --version output the version number
- --profile <name> the profile under $DSH_HOME/profiles to boot
- --from-default-profile <name> initialize a new custom profile from a shipped
- profile template
- --patch <path> extra patch-list overlay applied after the
- profile layer (repeatable)
- --dump-config print the composed profile tree and exit
- --dump-default-config print the profile tree without its user layer
- or --patch overlays and exit
- Examples:
- dsh web boot the web profile (same as: dsh --profile web)
- dsh rescue --from-default-profile web
- create rescue from the shipped web template, then boot it
- dsh headless "run the tests" answer one task, print the result, and exit
- dsh tui --patch ./extra.yml boot a custom profile with one extra overlay
- dsh tui --resume <session> arguments after the launcher flags reach the app
- dsh web --help the web app's own flags and help
- dsh plugin --profile tui add <package> install a plugin into the tui profile
|