# Flowcmd Install

> Use when `flowcmd` is not installed on the user's machine and they want to install it, or when a flowcmd workflow can't be run because the binary is missing. Handles installation on macOS, Linux, and Windows via the official install scripts.

- **Type:** Skill
- **Install:** `agentstack add skill-flowcmd-skill-flowcmd-install`
- **Verified:** Pending review
- **Seller:** [flowcmd](https://agentstack.voostack.com/s/flowcmd)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [flowcmd](https://github.com/flowcmd)
- **Source:** https://github.com/flowcmd/skill/tree/main/skills/flowcmd-install

## Install

```sh
agentstack add skill-flowcmd-skill-flowcmd-install
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Installing flowcmd

The `flowcmd` binary ships with official install scripts in the upstream repo.

## 1. Detect whether it's already installed

```bash
command -v flowcmd >/dev/null && flowcmd --version
```

If this prints a version, you're done — tell the user and stop.

## 2. Install (macOS / Linux)

```bash
curl -fsSL https://raw.githubusercontent.com/flowcmd/cli/main/install.sh | sh
```

The script:

- Detects the OS and architecture
- Downloads the matching release archive from GitHub Releases
- Installs the binary to `/usr/local/bin/flowcmd` (or `~/.local/bin/flowcmd` when `/usr/local/bin` is not writable)
- Prints the final path

If the user prefers a manual install, they can grab a binary from  and put it on their PATH.

## 3. Install (Windows PowerShell)

```powershell
iwr -useb https://raw.githubusercontent.com/flowcmd/cli/main/install.ps1 | iex
```

## 4. Pin a specific version

Either script accepts `FLOWCMD_VERSION`:

```bash
FLOWCMD_VERSION=v0.1.0 curl -fsSL https://raw.githubusercontent.com/flowcmd/cli/main/install.sh | sh
```

## 5. Verify

```bash
flowcmd --version
flowcmd init        # creates ./.flowcmd/hello.yml
flowcmd run hello   # runs it
```

## 6. If you're a developer working inside the flowcmd monorepo

```bash
cd cli && make build   # produces bin/flowcmd
export PATH="$PWD/bin:$PATH"
```

## Notes for the agent

- Never run the install command in a way that would overwrite a newer version silently — check `flowcmd --version` first and tell the user what's installed before proposing an upgrade.
- `curl | sh` from an untrusted network is sensitive; if the user is on a locked-down machine, suggest the manual release-download path instead.
- The `flowcmd update` subcommand (on versions that support it) re-invokes the install script for the user — prefer that over re-curling when they already have flowcmd.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [flowcmd](https://github.com/flowcmd)
- **Source:** [flowcmd/skill](https://github.com/flowcmd/skill)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: flagged — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-flowcmd-skill-flowcmd-install
- Seller: https://agentstack.voostack.com/s/flowcmd
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
