Skip to main content
Install the floo agent skill file for AI coding assistants like Claude Code.
floo skills install

Flags

FlagDescription
--path DIRDirectory to write SKILL.md into (e.g., .claude/skills/floo/)
--printPrint skill content to stdout instead of writing a file

Examples

# Install skill file to Claude Code's default location
floo skills install --path .claude/skills/floo

# Print skill content to stdout (for inspection or piping)
floo skills install --print

# Agent workflow: get skill metadata as JSON
floo skills install --print --json

# Pipe skill content to a custom location
floo skills install --print > my-custom-dir/SKILL.md
Also prints recommended Claude Code permission settings for .claude/settings.json.

JSON output

{
  "success": true,
  "data": {
    "path": "/absolute/path/to/SKILL.md",
    "version": "0.3.0",
    "recommended_permissions": {
      "read_only": [
        "Bash(floo apps list:*)",
        "Bash(floo apps status:*)",
        "Bash(floo logs:*)"
      ],
      "read_write": [
        "Bash(floo deploy:*)",
        "Bash(floo env set:*)",
        "Bash(floo init:*)"
      ]
    }
  }
}

Errors

CodeMeaning
INVALID_PATHThe --path directory does not exist or is not writable