alib8b8/dsh-plugin-aflare ↗★ 0
@alib8b8/dsh-plugin-aflare
DeepSeek Harness (DSH) Cordis plugin exposing aflare workflow tools
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:alib8b8/dsh-plugin-aflare说明文档
阅读完整 README ↗@alib8b8/dsh-plugin-aflare
DeepSeek Harness (DSH) Cordis plugin that exposes aflare workflow tools as native DSH tools.
Every tool spawns the local 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):
curl -fsSL https://raw.githubusercontent.com/alib8b8/aflare/main/install.sh | bash
aflare version # sanity check
One-line install into DSH
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
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 ; development happens in the aflare monorepo.