AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed MIT Self-run

Flowcmd Install

skill-flowcmd-skill-flowcmd-install · by flowcmd

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.

No reviews yet
0 installs
55 views
0.0% view→install

Install

$ agentstack add skill-flowcmd-skill-flowcmd-install

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Flowcmd Install? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Installing flowcmd

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

1. Detect whether it's already installed

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

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

2. Install (macOS / Linux)

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)

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

4. Pin a specific version

Either script accepts FLOWCMD_VERSION:

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

5. Verify

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

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

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.

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.