Share a Floww
Share your workflow with the community in two simple steps. Your repo will appear on floww.center within a few hours.
1
Add the floww-community topic to your repo
Go to your GitHub repository, click the gear icon next to "About" in the right sidebar, and add floww-community as a topic.
This is how floww.center discovers repos. We search GitHub for all public repos with this topic.
2
Add a floww.json manifest
Create a floww.json file in the root of your repository with metadata about your floww.
floww.json
{
"name": "My Awesome Floww",
"description": "A short description of what this floww does (max 160 chars).",
"version": "1.0.0",
"category": "development",
"tags": ["automation", "productivity", "claude"],
"minClientVersion": "1.2.0",
"author": {
"name": "Your Name",
"github": "your-username"
}
} Manifest fields
namerequired- Display name for your floww.
descriptionrequired- Short description, max 160 characters.
versionrequired- Semver version string (e.g. "1.0.0").
categoryrequired- One of:
development,design,writing,data,automation,learning,other. tagsrequired- Array of discovery tags (lowercase, max 10).
minClientVersionoptional- Minimum floww client version required.
authoroptional- Author info. Falls back to the repo owner if omitted.
✓
Check your repo
Enter your repository URL to verify it's set up correctly.
Your floww is ready! It will appear on floww.center within a few hours.
Tips
- Add a README.md with usage instructions — it will be displayed on your floww's detail page.
- Use descriptive tags so people can find your floww via search.
- Include a .gitignore to keep your repo clean.
- Star your own repo to signal it's ready for discovery.