Contributing to flompt
Description
Thanks for wanting to contribute! flompt is open-source and MIT licensed — PRs, bug reports, and feature ideas are all welcome.
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
Contributing to flompt
Thanks for wanting to contribute! flompt is open-source and MIT licensed — PRs, bug reports, and feature ideas are all welcome.
Table of Contents
- Getting started
- Project structure
- Development workflow
- Code style
- Adding a block type
- Adding a language
- Submitting a PR
Getting started
**Requirements:** Node.js 18+, Python 3.12+
# 1. Fork and clone
git clone https://github.com/YOUR_USERNAME/flompt.git
cd flompt
# 2. Start the backend
cd backend
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # optional: add your Anthropic/OpenAI key
uvicorn app.main:app --reload --port 8000
# 3. Start the frontend (new terminal)
cd app
npm install
npm run dev # → http://localhost:5173
The heuristic decomposer works without an API key — you don't need one to develop most features.
Project structure
flompt/
├── app/ # React 18 + Vite frontend (TypeScript)
│ └── src/
│ ├── components/ # UI components
│ ├── i18n/ # 10 locale JSON files
│ ├── lib/ # assemblePrompt, analytics, platform
│ ├── services/ # HTTP client (axios)
│ ├── store/ # Zustand state
│ └── types/ # TypeScript types (blocks.ts)
├── backend/ # FastAPI backend (Python)
│ └── app/
│ ├── routers/ # decompose, compile
│ └── services/ # ai_service, compiler, decomposer
├── blog/ # Next.js blog (static export)
├── extension/ # Chrome / Firefox / Safari MV3 extension
├── docs/ # GitBook documentation
└── landing/ # Static landing page
For a deeper dive, read [`CLAUDE.md`](CLAUDE.md) — it covers design rules, block ordering, CSS conventions, and deployment architecture.
Development workflow
**Create a branch** from `master`:
git checkout -b feat/my-feature**Make your changes** — keep commits focused and atomic.
**Test locally** before opening a PR:
- Frontend:
npm run buildinapp/should succeed with no errors - Backend: your new route/service should handle edge cases gracefully
- If you touched the extension: test on at least one browser
- Frontend:
**Open a PR** — the template will guide you.
Code style
- TypeScript everywhere in the frontend. New types go in
app/src/types/blocks.ts. - No inline styles — use CSS classes. New design tokens go in
:rootinapp/src/styles.css. - No
console.login production code paths. - English only in source code (comments, variable names, function names). UI strings live in i18n JSON files.
- Backend: we use Ruff for linting. Run
ruff check app/before committing.
Adding a block type
Block types are defined in two places:
- **`app/src/types/blocks
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11