simplified-workspace
Installation
SKILL.md
Simplified Workspace
Establish the correct Simplified identity and workspace context before operating on scoped resources. This operator resolves a teamspace once, then scopes every downstream MCP call explicitly.
Workflow
- Call
api_getWorkspaceInfofor the authenticated user's identity, current workspace, workspace settings, and active teamspace membership. - If the user asks which teamspaces are available, return the teamspace names and numeric IDs. Use
api_listTeamspaceswhen search, pagination, or expanded settings are needed. - If the user names a teamspace, search with
api_listTeamspaces. Resolve to one exact numeric ID; do not guess when names or slugs are ambiguous. - If deeper workspace metadata is material, call
api_getWorkspacewith the workspace integer ID returned byapi_getWorkspaceInfo. - When the user says “use,” “push this to,” “create in,” or “switch to” a teamspace, remember the resolved ID for the current task and pass
space_id: <numeric_id>on every downstream Simplified tool call. - State the applied context before the downstream workflow: user, workspace, teamspace name and ID, and settings that affect the work.
- Follow references/teamspace-context.md before handing off to another Simplified skill.