Bundle
@alib8b8/dsh-plugin-aflare
DeepSeek Harness (DSH) Cordis plugin exposing aflare workflow tools
- Source
- alib8b8
- stars
- 1 stars
- License
- AGPL-3.0-or-later
- Updated
- Updated 16 days ago
Readme
# @alib8b8/dsh-plugin-aflare
[DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) (DSH)
Cordis plugin that exposes [aflare](https://github.com/alib8b8/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](https://github.com/alib8b8/aflare) 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](https://www.npmjs.com/package/@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`](https://github.com/alib8b8/aflare/tree/main/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).
Install
dsh plugin --profile web add github:alib8b8/dsh-plugin-aflare#502375e9c7aecb795af3b6b54f84e7771f09ea38
Profile: web
With the hub plugin installed, ask your agent to install it by name — it resolves the same plan shown here.
dsh plugin --profile web add github:stvlynn/dsh.fish#path:packages/dsh-plugin-hub
install alib8b8-dsh-plugin-aflare from the hub
- This package builds from source on install. pnpm will ask you to allow its build script — that is permission to run the package’s code on your machine, outside the agent sandbox. Only allow sources you trust.