From wta-workflow
Install the WTA Rust CLI from source. Clone the public repository, build with cargo, and place the wta binary on PATH. Use when the user wants to start using WTA but does not yet have the wta binary installed, or wants to upgrade to the latest commit on main.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wta-workflow:wta-installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
WTA is a Rust binary CLI distributed as source on GitHub. There is no
WTA is a Rust binary CLI distributed as source on GitHub. There is no
crates.io publish or prebuilt binary today, so installation always
goes through cargo build.
Confirm the user has these before continuing. If any are missing, stop and explain what to install:
cargo and rustc (Rust 1.70 or newer). Check with rustc --version.git with SSH or HTTPS access to GitHub.Verify the cargo bin directory is on PATH:
echo "$PATH" | tr ':' '\n' | grep -F "$HOME/.cargo/bin"
If the output is empty, instruct the user to add ~/.cargo/bin to
their shell rc file (.zshrc, .bashrc, etc.) and re-source it
before continuing.
Clone the public WTA source:
git clone https://github.com/langgenius/wta-workflow.git
cd wta-workflow
Build and install with cargo install:
cargo install --path . --locked
This compiles WTA in release mode and copies the resulting binary
to ~/.cargo/bin/wta.
Verify the install:
wta --help
The output should list the WTA top-level commands (init,
doctor, info, board, intent, task, release, ...). If
wta is not found, return to the prerequisites step and check
PATH.
To upgrade to the latest commit:
cd /path/to/wta-workflow
git pull --ff-only
cargo install --path . --locked --force
error: rustc 1.x is not supported — run rustup update stable.error: failed to run custom build command — usually a missing
system dependency (pkg-config, libssl-dev on Debian, etc.).
Read the error and install the named library.wta: command not found after install — the cargo bin
directory is not on PATH. Re-read the cargo install output for
the exact install location.Permission denied (publickey) when cloning — use HTTPS instead
of SSH for the clone, or run ssh-add to load the user's key.WTA is now available as wta. The next step depends on the user's
goal:
wta-using-wta skill.wta project init
inside an empty directory and then wta project plan to preview
the setup.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub langgenius/wta-workflow-plugin --plugin wta-workflow