# Template: package-bundle Use this template for a package whose manifest declares `dsh.bundle.patch` — an installable profile layer: `packages/bundle/*`, `dsh-subagent-codex`, `dsh-subagent-claude-code`. The `bundle/base` README pair is the worked example. A bundle README leads with the profile-install path and the layer semantics; the implementation fold explains the patch document. It never presents the package as a library to import or as a single plugin to mount. ## Frontmatter ```yaml --- description: "What the bundle layer adds to a dsh --profile surface, for users composing or customizing a profile." kind: "package-bundle" --- ``` ## Skeleton ```markdown # @deepseek-ai/dsh- English | [中文](README.zh.md) ## Summary Three to five sentences: what a profile gains from this layer, which profiles already include it, how a user adds or removes it, and the main boundary. ## Table of Contents - [Use this package](#use-this-package) - [Understand the implementation](#understand-the-implementation) - [Further Exploration](#further-exploration) - [Model Experience](#model-experience) - [Known Limitations and Deferred Work](#known-limitations-and-deferred-work) - [Dev Note](#dev-note) ----- ## Use this package ### Install into a profile The verified install path — run it against the current checkout before writing: ```text dsh plugin --profile add @deepseek-ai/dsh- dsh plugin --profile remove @deepseek-ai/dsh- ``` State where in-box bundles resolve from, what the reconcile step activates, and what fails when the patch declaration is missing. ### What you get The observable surface this layer adds: tools, providers, or UI rows, and which package owns each row's behavior. ----- ## Understand the implementation
Implementation internals — click to expand The patch document: insert list, row ids, platform gating, override semantics. Source-map table links `cordis.patch.yml` and `src/`. No API catalogs.
----- ## Further Exploration Adjacent pages: the group map, the profile contract, the composition graph. ----- ## Model Experience The form the verify-package-readme-model-experience gate assigns (bundle carriers are `indirect` or `none`: each inserted row's package owns its model-facing behavior). ## Known Limitations and Deferred Work Current constraints: override semantics, platform gates, and conflict rules a user must respect. ### Dev Note
Working context for maintainers — click to expand None.
``` ## Rules - **Only `dsh.bundle.patch` packages use this template.** Verify the declaration in `package.json` before classifying; the `dsh plugin` reconcile activates a layer for exactly these packages. - **Test the install path.** Run `dsh plugin --profile add ` in a scratch profile and reproduce the documented warning, layer activation, and failure modes before writing them. - Re-run `pnpm run verify-translation-pairing --write packages///README.md` after editing the pair.