Claude Flowframe banner
frankbria frankbria

Claude Flowframe

Development community

Description

Minimal agentic orchestration framework for Claude Code workflows

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude FlowFrame

[![Follow on X](https://img.shields.io/twitter/follow/FrankBria18044?style=social)](https://x.com/FrankBria18044)

**Minimal agentic orchestration framework for Claude Code workflows**

Claude FlowFrame is a lightweight, focused tool that provides just the essential orchestration capabilities needed for automated AI workflows. Unlike full-featured platforms, FlowFrame does only what's necessary: memory management, swarm coordination, and lifecycle hooks.

Features

  • 🧠 Simple Memory System: Key-value storage with namespaces for workflow state
  • 🐝 Swarm Orchestration: Coordinate multiple AI agents via Claude Code
  • 🪝 Lifecycle Hooks: Pre/post-task callbacks for automation
  • 📦 Zero Dependencies: Minimal footprint, maximum portability
  • 🎯 MCP-First Design: Leverages Claude Code's Task tool via MCP servers

What FlowFrame Is NOT

  • ❌ No vector databases or semantic search
  • ❌ No web UI or dashboard
  • ❌ No 100+ tools or enterprise features
  • ❌ No custom agent implementations
  • ❌ No neural training or learning systems

FlowFrame delegates all agent work to Claude Code and provides only the glue layer for orchestration.

Installation

From Source

cd ~/projects/claude-flowframe
pip install -e .

Using uv (recommended)

cd ~/projects/claude-flowframe
uv pip install -e .

Quick Start

Memory Operations

# Store workflow state
claude-flowframe memory store "workflow/issue-123/prompt" "Build REST API" \
  --namespace workflow \
  --metadata '{"issue_id": "123", "timestamp": "2025-12-26"}'

# Query stored values
claude-flowframe memory query "workflow/issue-123/prompt" --namespace workflow

# List all keys in namespace
claude-flowframe memory list --namespace workflow

# Delete a key
claude-flowframe memory delete "workflow/issue-123/prompt" --namespace workflow

Swarm Orchestration

# Initialize a swarm
claude-flowframe swarm init \
  --topology hierarchical \