TAFFISH is an open bioinformatics tool and workflow ecosystem for building, sharing, and running reproducible analyses with versioned apps, containerized runtime environments, and a lightweight shell-native workflow language.
It sits between ad-hoc shell scripts and heavyweight workflow systems: close enough to the command line for everyday bioinformatics work, but structured enough to make tools, environments, parameters, and workflows reusable.
- Start Here
- What TAFFISH Provides
- Installation
- How TAFFISH Hub Works
- For Users
- For App Developers
- Paper
- Project Status
| Resource | Purpose |
|---|---|
| taffish.com | Official project homepage, project story, history, and public entry point. |
| TAFFISH Hub | Browse available TAFFISH apps, tools, flows, versions, dependencies, and install commands. |
| taffish/taffish | Open-source TAFFISH source repository, installers, source-tree developer docs, and binary release payloads for taf, taffish, and taffish-mcp. |
| taffish/taffish-docs | Documentation for TAFFISH, TAFFISH Hub, app projects, .taf scripts, containers, dependencies, and publishing. |
| TAFFISH Security Model | Layered security and trust model for releases, installers, mirrors, Hub/index gates, local installs, containers, and MCP. |
| taffish/taffish-index | Generated static package index consumed by taf update, taf search, taf info, and taf install. |
| taffish/taffish.github.io | Source repository for the web Hub. |
| taffish/.github | This organization profile. |
- The TAFFISH DSL and its
taffishcompiler, which compile.tafscripts into shell scripts while preserving command-line composability. taf, a local package manager and runner for TAFFISH apps.- Open-source Common Lisp implementation under Apache License 2.0, with source-build, contribution, and security documentation in taffish/taffish.
- A layered security model covering release payload verification, source commit checks, container digest/platform metadata, smoke gates, and conservative MCP boundaries.
- Versioned app releases using the
version-releaseform, such as0.1.0-r1. - Container-aware execution through Apptainer, Podman, or Docker backends.
- Runtime backend overrides for generic container tags through
TAFFISH_CONTAINER_BACKEND. - Hub indexing so users can discover, update, install, and inspect apps from a static GitHub-hosted index.
- Smoke metadata and Hub-side trust gates for containerized apps, including container digest, platform metadata, and smoke status in the index.
- Flow dependency metadata so
taf installcan resolve required app versions automatically. - Private/local project installation through
taf install --fromfor apps that are not yet published to the public Hub. taf publish --release, backed by ignoredrelease.mddrafts for publish messages and GitHub Release notes.- Runtime mirror configuration for China/Gitee or internal Git service mirrors.
- Installer-managed shell completion files and Vim syntax files for everyday CLI and
.tafediting. taffish-mcp, a conservative stdio MCP server for safe AI-client access to TAFFISH project, app, Hub, config, history, resources, prompts, read-only TAF compiler helpers, and safe app/project compile previews. See the TAFFISH MCP Guide and AI client setup guide.
Install the TAFFISH CLI from taffish/taffish. That repository is the canonical place for source code, current installers, supported platforms, release versions, runtime dependencies, container backend notes, network notes, source-build instructions, release verification, and troubleshooting.
Quick user install:
curl -fsSL https://raw.githubusercontent.com/taffish/taffish/main/install/install-taffish.sh | sh -s -- --userSystem install for shared servers:
curl -fsSL https://raw.githubusercontent.com/taffish/taffish/main/install/install-taffish.sh | sudo sh -s -- --systemFor users in China, the Gitee installer downloads from the Gitee mirror and can initialize the China mirror profile:
curl -fsSL https://gitee.com/taffish-org/taffish/raw/main/install/install-taffish.gitee.sh | sh -s -- --userChina/Gitee system install:
curl -fsSL https://gitee.com/taffish-org/taffish/raw/main/install/install-taffish.gitee.sh | sudo sh -s -- --systemChina/Gitee note: the Gitee mirror is provided for environments where GitHub raw content is slow or blocked. Some mirror services may restrict anonymous raw downloads of large files, especially for larger macOS binaries. If the Gitee installer cannot fetch a binary, use the GitHub installer with a working network/proxy, download manually after logging in to the mirror, or check the current notes in the taffish/taffish README.
After taf is available locally, the usual starting point is:
taf doctor
taf update
taf search <keyword>
taf install <app>
taf info <app>
taf listFor a pinned release install, platform-specific requirements, Gitee/macOS notes, offline installation, shell completion, Vim syntax files, and detailed troubleshooting, use the current taffish/taffish README.
TAFFISH 0.8.0 is the first open-source local CLI/compiler release. The
source repository includes Build From Source,
Contributing,
and Security Policy
documents. The release payload also includes SHA256SUMS, SHA256SUMS.asc,
and TAFFISH-RELEASE-KEY.asc for manual checksum and signature verification.
Persistent mirror configuration can be initialized with:
taf config init --china --force
taf updateRuntime config can change the index URL used by taf update and rewrite
canonical GitHub app repository URLs during taf install, which makes Gitee or
internal Git service mirrors possible without changing the official index
schema.
For installed commands, TAFFISH_CONTAINER_BACKEND=apptainer|podman|docker can
force generic container tags at runtime. For private or local apps that are not
yet published to the public Hub, use taf install --from <PROJECT-DIR>.
For a guided first run, read the TAFFISH Quick Start.
TAFFISH Hub is currently GitHub-based.
- Each app lives in its own repository with a root
taffish.toml. - App repositories publish release tags such as
v0.1.0-r1. - App repositories build container images in their own GitHub Actions workflows.
- taffish-index scans the organization, validates new versions, records digest/platform/smoke metadata, and writes static JSON index files.
- Users run
taf update, then install and run apps locally throughtaf.
The public web Hub at taffish.github.io is the human-facing browser for this ecosystem. The index repository is the machine-facing data source.
Use TAFFISH Hub to browse available apps and use
taf locally to install and run them. For installation, CLI behavior, .taf
syntax, container usage, and troubleshooting, read
taffish/taffish-docs.
TAFFISH app projects are structured repositories with taffish.toml,
src/main.taf, docs/help.md, target/ build artifacts, versioned release
tags, and optional metadata for dependencies, platform constraints, containers,
smoke checks, Hub trust status, and upstream software sources.
The official Hub is curated by the taffish organization. At the moment,
publishing to the official Hub is limited to organization members. Developers
who want to contribute apps can contact the maintainer to discuss joining the
organization or publishing strategy.
The TAFFISH project is described in the bioRxiv preprint:
Authors: Kaiyuan Han, Ting Wang, Shi-Shi Yuan, Cai-Yi Ma, Wei Su, Kejun Deng, Xiaolong Li, Hao Lv, and Hao Lin.
TAFFISH is open source and under active development. The local CLI/compiler implementation is published in taffish/taffish under Apache License 2.0. The current public infrastructure is built around GitHub repositories, GitHub Actions, GitHub Packages, GitHub Pages, and a static package index. A dedicated server-backed Hub may become useful later, but the current design intentionally keeps the publishing and indexing path simple, auditable, and easy to reproduce.