Web Star Studio's Flow PMS
/install flow-pms
FlowDeck Project Management API
Interact with the FlowDeck project management module via the REST API gateway
(base URL: https://\x3Csupabase_url>/functions/v1/api-gateway).
Usage
Run the script using the absolute path (do NOT cd to the skill directory):
uv run ~/.codex/skills/flow-pms/scripts/flow_api.py \x3Caction> \x3Cresource> [options]
Important: Always run from the user's current working directory so any output files are saved where the user is working.
Actions
| Action | Description | Example |
|---|---|---|
list |
List resources (paginated) | uv run ... list projects --limit 50 |
get |
Get single resource | uv run ... get projects --id \x3Cuuid> |
create |
Create resource | uv run ... create projects --data '{"name":"X","prefix":"X"}' |
update |
Update resource | uv run ... update tasks --id \x3Cuuid> --data '{"status":"done"}' |
delete |
Delete resource | uv run ... delete tasks --id \x3Cuuid> |
archive |
Archive project | uv run ... archive projects --id \x3Cuuid> |
unarchive |
Unarchive project (to on_hold) | uv run ... unarchive projects --id \x3Cuuid> |
PMS Resources
| Resource | Endpoint | Notes |
|---|---|---|
projects |
/projects |
Project management |
cycles |
/projects/{projectId}/cycles |
Sprints, scoped to project |
tasks |
/projects/{projectId}/tasks |
Tasks, scoped to project |
comments |
/tasks/{taskId}/comments |
Comments on tasks |
Filters for list
--limit N(default 50, max 200)--offset N(default 0)--status— filter by status enum--priority— filter task priority (tasks)--cycle-id— filter tasks by cycle--assignee-id— filter tasks by assignee--project-id— parent project ID for scoped resources (cycles, tasks, comments)
Status/Stage/Priority Enums
Projects
briefing, planning, in_progress, review, completed, post_launch, on_hold, continuous_support, archived
Cycles
draft, active, completed, cancelled
Tasks (status)
backlog -> todo -> in_progress -> in_review -> done / cancelled
Tasks (priority)
none, low, medium, high, urgent
Tasks (type)
feature, bug, improvement, task
Core workflows
Project status update
For prompts like Me atualize sobre o status do projeto X no flow:
list projectsto resolve project by nameget projects --id \x3Cuuid>for full detailslist cycles --project-id \x3Cuuid>to find active cycle (preferstatus=active, fallback to latest)list tasks --project-id \x3Cuuid>to get tasks- Summarize: project status, deadline, active cycle progress, task counts by status/priority, risk signals (urgent open tasks, blocked high-priority items)
Current cycle status
- Resolve project
list cycles --project-id \x3Cuuid>- Pick cycle with
status=active; mention if none exists list tasks --project-id \x3Cuuid> --cycle-id \x3Cuuid>for task-level detail- Report: progress, scope, completed_scope, dates, deadline risk signals
Create a task
- Resolve the target project
- Determine status and cycle from the project's active cycle
- Include optional fields only when the user specified them or when you need one clarification
Required fields for project create: name, prefix
Required fields for task create: only title by API, but you MUST at minimum also:
- Resolve the project (ask if missing)
- Check for an active cycle and default
cycle_idto it - Check for an assignee
Implement what is in a task
- Resolve the project
- Resolve the task by identifier (e.g.
PRJ-42) or title - Fetch the full task
- Summarize scope from title, description, type, priority, due date, cycle
- Use the task content as the implementation brief
- If code changes are made outside Flow, suggest or perform a task status update afterward
Mutation safety
Ask for confirmation before:
- Deleting projects, cycles, or tasks
- Broad updates when the target match is ambiguous
Do not ask when the user already clearly requested the destructive action and the target is unambiguous.
API Key
The script checks for API key in this order:
--api-keyargument (use if user provided key in chat)FLOWBOARD_API_KEYenvironment variable
If neither is available, the script exits with an error message.
API Key + Base URL Environment Variables
FLOWBOARD_API_KEY— Bearer API keyFLOWBOARD_BASE_URL— API base URL (default:https://mycivgjuujlnyoycuwrz.supabase.co/functions/v1/api-gateway)
Preflight + Common Failures
- Preflight:
command -v uv(must exist)test -n "$FLOWBOARD_API_KEY"(or pass--api-key)
- Common failures:
Error: No API key provided.-> setFLOWBOARD_API_KEYor pass--api-keyHTTP 401-> invalid/revoked keyHTTP 404-> resource not found or doesn't belong to workspace"quota/permission/403"-> wrong key, no access, or quota exceeded
Examples
List projects in progress:
uv run ~/.codex/skills/flow-pms/scripts/flow_api.py list projects --status in_progress --limit 20
Create a task in a project:
uv run ~/.codex/skills/flow-pms/scripts/flow_api.py create tasks \
--project-id \x3Cuuid> \
--data '{"title":"Implementar login social","priority":"high","type":"feature"}'
Move task to in_progress:
uv run ~/.codex/skills/flow-pms/scripts/flow_api.py update tasks \
--id \x3Cuuid> --data '{"status":"in_progress"}'
Archive a project:
uv run ~/.codex/skills/flow-pms/scripts/flow_api.py archive projects --id \x3Cuuid>
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install flow-pms - After installation, invoke the skill by name or use
/flow-pms - Provide required inputs per the skill's parameter spec and get structured output
What is Web Star Studio's Flow PMS?
Interact with FlowDeck Project Management API (projects, cycles, tasks). Use for CRUD + archive/unarchive operations via the FlowDeck REST API through Supaba... It is an AI Agent Skill for Claude Code / OpenClaw, with 85 downloads so far.
How do I install Web Star Studio's Flow PMS?
Run "/install flow-pms" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Web Star Studio's Flow PMS free?
Yes, Web Star Studio's Flow PMS is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Web Star Studio's Flow PMS support?
Web Star Studio's Flow PMS is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Web Star Studio's Flow PMS?
It is built and maintained by Douglas Araújo (@araujodgdev); the current version is v1.0.0.