精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
aflare workflow tools for DeepSeek Harness (DSH): generate, validate, run local-first deterministic workflows
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
aflare workflow tools for DeepSeek Harness (DSH): generate, validate, run local-first deterministic workflows
待人工精选——以下事实来自源码仓库。
aflare workflow tools for DeepSeek Harness (DSH): generate, validate, run local-first deterministic workflows
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:alib8b8/dsh-plugin-aflare 作者没有声明支持的平台。
aflare binary with execFile (no shell), so nothing leaves your machine — the same local-first guarantee aflare itself makes. ## Tools | Tool | What it does | |---|---| | aflare_version | Installed aflare version | | aflare_generate | Create workflow YAML from a description (optional ai: true for LLM generation) | | aflare_validate | Validate a workflow YAML | | aflare_run | Execute a workflow YAML and return the output | | aflare_template_list | List built-in templates | | aflare_template_run | Run a template by ID | ## Install ### Prerequisite: the aflare binary The plugin drives the local aflare CLI, so install it first (one line; see the aflare README for Windows/source options): bash curl -fsSL https://raw.githubusercontent.com/alib8b8/aflare/main/install.sh | bash aflare version # sanity check ### One-line install into DSH bash dsh plugin --profile web add @alib8b8/dsh-plugin-aflare Published on npm (@alib8b8/dsh-plugin-aflare); the github:alib8b8/dsh-plugin-aflare spec works too. The package declares its bundle patch (dsh.bundle.patch in package.json), so DSH registers the plugin entry automatically — restart dsh web and the aflare_* tools are live. No profile editing needed. ### From a local checkout bash git clone https://github.com/alib8b8/dsh-plugin-aflare cd dsh-plugin-aflare npm install && npm run build dsh plugin --profile web add "$PWD" > This repository is the distribution mirror of > aflare/integrations/dsh-plugin; > development happens in the aflare monorepo. Or register the built entry manually with a cordis.yml patch overlay (absolute path required): yaml - insert: - id: aflare-tools name: /absolute/path/to/aflare/integrations/dsh-plugin/dist/index.js Start DSH with the overlay: bash pnpm dsh web --patch ./aflare-patch.yml ## Configuration | Env var | Default | Description | |---|---|---| | AFLARE_BIN | aflare | Path to the aflare executable | | AFLARE_TIMEOUT_MS | 300000 | Per-invocation timeout (ms) | ## Security - All invocations use execFile — arguments are passed as argv, never through a shell, so tool parameters cannot inject commands. - Output is truncated at 256 KB to protect model context. - aflare's own protections (path validation, safe mode, policy engine) apply to every run. Set AFLARE_SAFE_MODE=1 in the DSH process environment for untrusted workflows. ## Development bash npm install npm run typecheck # strict TS check npm test # compiles, then runs integration tests via node --test The tests execute the real aflare binary, resolved from AFLARE_BIN or the repo-root build output (make build in the repository root). Without a binary, the registration checks still run and the binary tests skip. ## License AGPL-3.0-or-later (same as the aflare project).不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。