{"id":35649770,"url":"https://github.com/menteora/flowtask","last_synced_at":"2026-01-05T14:04:51.751Z","repository":{"id":328399732,"uuid":"1115429445","full_name":"menteora/flowtask","owner":"menteora","description":"flowtask","archived":false,"fork":false,"pushed_at":"2025-12-29T11:22:24.000Z","size":4507,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-29T16:42:05.775Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/menteora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-12T21:15:26.000Z","updated_at":"2025-12-29T11:21:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/menteora/flowtask","commit_stats":null,"previous_names":["menteora/flowtask"],"tags_count":0,"template":false,"template_full_name":"google-gemini/aistudio-repository-template","purl":"pkg:github/menteora/flowtask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/menteora","download_url":"https://codeload.github.com/menteora/flowtask/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Fflowtask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28217171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-05T02:00:06.358Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-05T14:03:10.488Z","updated_at":"2026-01-05T14:04:51.746Z","avatar_url":"https://github.com/menteora.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlowTask 🌊\n\n**FlowTask** è un gestore di progetti visivo progettato per organizzare flussi di lavoro complessi tramite una logica a rami (branching). A differenza delle classiche liste \"To-Do\", FlowTask permette di visualizzare la dipendenza tra le varie fasi di un progetto, assegnare compiti al team e monitorare l'avanzamento sia graficamente che cronologicamente.\n\n## ✨ Funzionalità Principali\n\n### 🌳 Gestione Workflow Visiva\n*   **Visualizzazione a Nodi (Canvas)**: Un'interfaccia drag-and-drop su Desktop.\n*   **Logica a Rami**: Crea rami figli, collega rami a più genitori e organizza il flusso.\n*   **Responsabile di Ramo 👥**: Imposta un responsabile per un'intera fase. Tutti i task creati in quel ramo e nei suoi sotto-rami erediteranno automaticamente questo assegnatario, a meno di modifiche manuali.\n*   **Modalità Sprint 🚀**: Rami speciali che generano automaticamente i nomi dei figli seguendo il pattern `[NomePadre] YY-NN`.\n\n### ✅ Gestione Task Avanzata\n*   **Focus \u0026 Pin**: Aggiungi i task più importanti alla vista Focus per averli sempre sott'occhio.\n*   **Sincronizzazione Real-time**: I dati vengono salvati automaticamente su Supabase con feedback visivo dello stato di invio.\n\n## 🗄️ Configurazione Database (Supabase)\n\nPer abilitare la sincronizzazione cloud, esegui questo script nell'**SQL Editor** di Supabase:\n\n```sql\n-- 1. PROGETTI\ncreate table public.flowtask_projects (\n  id text primary key,\n  name text not null,\n  root_branch_id text,\n  owner_id uuid references auth.users not null,\n  created_at timestamp with time zone default timezone('utc'::text, now()) not null\n);\n\n-- 2. PERSONE / TEAM\ncreate table public.flowtask_people (\n  id text primary key,\n  project_id text references public.flowtask_projects(id) on delete cascade,\n  name text not null,\n  email text,\n  phone text,\n  initials text,\n  color text\n);\n\n-- 3. RAMI / BRANCHES\ncreate table public.flowtask_branches (\n  id text primary key,\n  project_id text references public.flowtask_projects(id) on delete cascade,\n  title text not null,\n  description text,\n  status text not null,\n  responsible_id text references public.flowtask_people(id) on delete set null,\n  start_date text,\n  end_date text,\n  due_date text,\n  archived boolean default false,\n  collapsed boolean default false,\n  is_label boolean default false,\n  is_sprint boolean default false,\n  sprint_counter integer default 1,\n  parent_ids text[],\n  children_ids text[],\n  position integer default 0\n);\n\n-- 4. TASKS\ncreate table public.flowtask_tasks (\n  id text primary key,\n  branch_id text references public.flowtask_branches(id) on delete cascade,\n  title text not null,\n  description text,\n  assignee_id text references public.flowtask_people(id) on delete set null,\n  due_date text,\n  completed boolean default false,\n  completed_at text,\n  position integer default 0,\n  pinned boolean default false\n);\n\n-- 5. SICUREZZA (RLS)\nalter table public.flowtask_projects enable row level security;\nalter table public.flowtask_people enable row level security;\nalter table public.flowtask_branches enable row level security;\nalter table public.flowtask_tasks enable row level security;\n\ncreate policy \"Users can all on own projects\" on public.flowtask_projects for all using (auth.uid() = owner_id);\ncreate policy \"Users can all on people of own projects\" on public.flowtask_people for all using (exists (select 1 from public.flowtask_projects where public.flowtask_projects.id = public.flowtask_people.project_id and public.flowtask_projects.owner_id = auth.uid()));\ncreate policy \"Users can all on branches of own projects\" on public.flowtask_branches for all using (exists (select 1 from public.flowtask_projects where public.flowtask_projects.id = public.flowtask_branches.project_id and public.flowtask_projects.owner_id = auth.uid()));\ncreate policy \"Users can all on tasks of own projects\" on public.flowtask_tasks for all using (exists (select 1 from public.flowtask_branches join public.flowtask_projects on public.flowtask_projects.id = public.flowtask_branches.project_id where public.flowtask_branches.id = public.flowtask_tasks.branch_id and public.flowtask_projects.owner_id = auth.uid()));\n```\n\n---\n*Progetto sviluppato con React 19 e ❤️.*","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Fflowtask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmenteora%2Fflowtask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Fflowtask/lists"}