Skip to content

Releases: flamingock/flamingock-cli

Flamingock CLI v1.2.2

Choose a tag to compare

@github-actions github-actions released this 20 Jun 18:17
38ff2f6

Features

  • Add codex to agent list in install-skills command (#9)

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.2.1

Choose a tag to compare

@github-actions github-actions released this 11 Jun 23:26

Features

  • install-skills: Add --agent parameter to select the agent for which to install them (#8)

Bug Fixes

  • Add homebrew-tap repo access PAT

Miscellaneous

  • Install visual studio in windows release matrix

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.2.0

Choose a tag to compare

@github-actions github-actions released this 01 Jun 16:56

Bug Fixes

  • Homebrew update action in release

Miscellaneous

  • Bump version to 1.2.0- Bump flamingock-java version

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.2.0-beta.2

Pre-release

Choose a tag to compare

@github-actions github-actions released this 29 May 12:16
f2ebb11

Bug Fixes

  • Skills download redirect error (#7)

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.2.0-beta

Pre-release

Choose a tag to compare

@github-actions github-actions released this 28 May 23:46

Features

  • cli: Add install-skills command (#6)

Miscellaneous

  • Bump version to 1.2.0-beta

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.1.0

Choose a tag to compare

@github-actions github-actions released this 20 May 08:28

Features

  • distribution: Add Homebrew tap and install scripts- distribution: Add Homebrew tap and install scripts (#4)

Bug Fixes

  • Get version from gradle.properties and change install script url

Miscellaneous

  • Distribution documents- Update quality gate to trigger on master instead of develop- Bump version to 1.1.0

Installation

Choose the option that best fits your platform:

Install script (recommended for most users)

Linux/WSL

curl -fsSL https://flamingock.io/cli/install/linux | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/linux | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

macOS

curl -fsSL https://flamingock.io/cli/install/macos | bash

# Specific version or custom install directory (no sudo)
curl -fsSL https://flamingock.io/cli/install/macos | FLAMINGOCK_VERSION=1.1.0 FLAMINGOCK_INSTALL_DIR=~/.local/bin bash

Windows (PowerShell)

irm https://flamingock.io/cli/install/win | iex

# Specific version
$env:FLAMINGOCK_VERSION="1.1.0"; irm https://flamingock.io/cli/install/win | iex

macOS/Linux Homebrew

brew tap flamingock/tap
brew install flamingock

Download from GitHub Releases

macOS (Apple Silicon)

Download the flamingock-*-macos-arm64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

Download the flamingock-*-linux-x86_64 binary from the assets below. Then, in your terminal:

# Make executable
chmod +x flamingock-*-linux-x86_64

# Move to PATH
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

Download the flamingock-*-windows-x86_64 binary from the assets below. Then, rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+. Download the flamingock-cli-*.jar file from the assets below. Then, in your terminal:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.1.0-beta.2

Pre-release

Choose a tag to compare

@github-actions github-actions released this 11 Feb 14:42

Miscellaneous

  • Fix mac executable

Installation

Download the appropriate binary for your platform from the assets below, then follow the instructions for your OS.

macOS (Apple Silicon)

# Make executable
chmod +x flamingock-*-macos-arm64

# Remove macOS quarantine (required for unsigned binaries)
xattr -d com.apple.quarantine flamingock-*-macos-arm64

# Move to PATH
sudo mv flamingock-*-macos-arm64 /usr/local/bin/flamingock

Linux

chmod +x flamingock-*-linux-x86_64
sudo mv flamingock-*-linux-x86_64 /usr/local/bin/flamingock

Windows

No additional steps required. Rename to flamingock.exe and add to your PATH.

Platform-independent JAR

Requires JVM 21+:

java -jar flamingock-cli-*.jar --help

Flamingock CLI v1.1.0-beta.1

Pre-release

Choose a tag to compare

@github-actions github-actions released this 11 Feb 14:15

Features

  • Native image build- Passing through arguments to application (#1)

Documentation

  • Update readme.md and claude.md

Testing

  • Add flamingock app jars for testing- Add standalone and springboot integration test- Update standalone jar test for 1.1.0(#3)

Miscellaneous

  • Build orchestration- Logo- Readme minor- Add condition for PRs to master- Update pr action for merge to develop- Quality gate update for workflow_dispatch too- Release action- Version set as input manually- Release notes- Update core version to 1.1.0-rc.1- Remove macOS-x86 distribution- Fix release:integration_step