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>
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install flow-pms - 安装完成后,直接呼叫该 Skill 的名称或使用
/flow-pms触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。
如何安装 Web Star Studio's Flow PMS?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install flow-pms」即可一键安装,无需额外配置。
Web Star Studio's Flow PMS 是免费的吗?
是的,Web Star Studio's Flow PMS 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Web Star Studio's Flow PMS 支持哪些平台?
Web Star Studio's Flow PMS 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Web Star Studio's Flow PMS?
由 Douglas Araújo(@araujodgdev)开发并维护,当前版本 v1.0.0。