Claude Flowframe
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
[](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 \
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development