Anthropic's official coding-agent CLI. Runs Claude in your terminal with tool use, file operations, and shell access. The reference harness that skills, sub-agents, hooks, and slash commands are built for.
npx mdskills install anthropics/claude-code@anthropics? Sign in with GitHub to claim this listing.Implements iterative AI development loops with clear instructions, examples, and safety mechanisms
Build and deploy AI apps to Floom from Claude Code. Three slash commands:
/floom-init — scaffold a floom.yaml in the current directory/floom-deploy — publish the app to floom.dev, return a live URL + MCP install snippet/floom-status — list your published apps + recent runsThis skill is a thin wrapper. It calls the floom CLI, which must be installed first.
git clone --depth 1 https://github.com/floomhq/floom.git ~/.floom/repo
export PATH="$HOME/.floom/repo/cli/floom/bin:$PATH"
floom --version
Or use the curl installer (when live):
curl -fsSL https://floom.dev/install.sh | bash
Copy into your Claude Code skills folder:
cp -r skills/claude-code ~/.claude/skills/floom
Or symlink from the repo:
ln -s "$(pwd)/skills/claude-code" ~/.claude/skills/floom
Restart Claude Code. Verify: /floom-init.
floom CLI on PATH (see above)curlpython3 (stdlib only; PyYAML optional)yq optional (falls back to python3 if missing)Run once after installing:
floom auth
Get your key at https://floom.dev/me/api-keys.
For self-host:
floom auth http://localhost:3051
Config is stored at ~/.floom/config.json (chmod 600). Do not check it into git.
You can also set FLOOM_API_KEY as an env var (useful in CI):
export FLOOM_API_KEY=sk_live_xxx
floom status
skills/claude-code/
SKILL.md the skill spec Claude Code loads
README.md this file
The CLI lives at cli/floom/. Scripts at cli/floom/lib/.
Apache 2.0 (matches the parent repo).
Install via CLI
npx mdskills install anthropics/claude-codeClaude Code is a free, open-source AI agent skill. Anthropic's official coding-agent CLI. Runs Claude in your terminal with tool use, file operations, and shell access. The reference harness that skills, sub-agents, hooks, and slash commands are built for.
Install Claude Code with a single command:
npx mdskills install anthropics/claude-codeThis downloads the skill files into your project and your AI agent picks them up automatically.
Claude Code works with Claude Code. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.