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
⚠ Flagged1 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.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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/flowcmdwhen/usr/local/binis 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 --versionfirst and tell the user what's installed before proposing an upgrade. curl | shfrom an untrusted network is sensitive; if the user is on a locked-down machine, suggest the manual release-download path instead.- The
flowcmd updatesubcommand (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
- Source: flowcmd/skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.