Create workspace
Create a new workspace (sub-account) inside an Inflowave agency — with the right operating mode (done-for-you / done-with-you / do-it-yourself), optional multi-client swarm seats, and data region — confirming the name and settings before creating. Use when the user says "create a workspace", "add a client workspace", "spin up a sub-account", or "set up a new workspace for X".From its SKILL.md
npx -y skills add inflowave/skills --skill create-workspaceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 23 days oldThe repository was created 23 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.5 KB, 535 tokens by cl100k_base, as published. Nobody here has run it
Create Workspace
Inflowave agencies are multi-tenant: an agency contains workspaces (sub-accounts), and each workspace owns its own accounts, leads, workflows, and campaigns. This skill provisions one cleanly.
Steps
-
Scope + dedupe.
check_connection(must be an agency owner on a plan that allows managing workspaces — restricted/free tiers are blocked).list_sub_accountsto make sure a workspace with this name doesn't already exist. -
Gather the essentials (ask only for what you don't know):
- name (required) — the workspace / client name.
- operating_mode —
dfy(done-for-you: the agency runs it),dwy(done-with-you: shared), ordiy(do-it-yourself: the client runs it). Ask which fits; default to the agency's usual if they have one. - swarm? — if this is a multi-client "swarm" workspace, set
is_swarm: trueand ask forswarm_seat_limit(required when swarm) and optionallyswarm_client_types. - data_region —
ca/eu/ etc. Leave null to inherit from the agency (the common case).
-
Confirm, then create. Echo back the exact settings ("Create workspace Acme Co — done-for-you, region inherited, active") and get a yes. Then call
create_sub_accountwith those args. The MCP's confirm-before-write gate may return a confirmation envelope first — relay it and re-confirm. -
Set them up for success. After creation, offer the obvious next steps in the new workspace: connect an Instagram/channel account, create the first client (
create_client), or build a starter workflow (hand off to build-workflow).
Output
- Confirmation of the created workspace (name + id + settings).
- A short "next steps in this workspace" list.
Guardrails
- Always confirm the name and operating mode before creating — a workspace is a real tenant, not a throwaway.
swarm_seat_limitis required ifis_swarmis true; don't create a swarm workspace without it.- If
check_connectionshows a plan tier that can't manage workspaces, say so and stop rather than attempting the call.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.