cargo-workspace-management

cargo-workspace-management is a skill for Claude Code from getcargohq/cargo-skills. It costs 159 tokens per session (2,645 once invoked), scanned A, original, MIT.

A guide for administering a Cargo workspace through its command-line tool. A workspace is the shared account area where users, agents, tools, files, and permissions are managed.

In plain words
What is it for?
Use it to invite or manage members, create and rotate API tokens, inspect roles, organize resources into folders, upload shared files, track sessions, and submit reports.
Why use it?
It puts access control and workspace organization tasks in one place and includes procedures for handling failed CLI operations and tracking sessions.

Skill for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: mentions Claude Code; built for openclaw.

Part of the cargo plugin — 19 skills, 2 agents shipped together

not rated 17repo today A scan Socket: passSnyk: passSkillSpector: warn 159 tokens original MIT

Good fit Use it to invite or manage members, create and rotate API tokens, inspect roles, organize resources into folders, upload shared files, track sessions, and submit reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/getcargohq/cargo-skills/cargo-workspace-management
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add getcargohq/cargo-skills --skill cargo-workspace-management
Clone the repo
git clone --depth 1 https://github.com/getcargohq/cargo-skills

Made for: Claude Code.

Or install cargo, the plugin that ships this one along with the rest of its 19 skills, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cargo-workspace-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/getcargohq/cargo-skills/cargo-workspace-management/github.svg)](https://agentmods.dev/skills/getcargohq/cargo-skills/cargo-workspace-management)
Your own site
<a href="https://agentmods.dev/skills/getcargohq/cargo-skills/cargo-workspace-management"><img src="https://agentmods.dev/badge/skills/getcargohq/cargo-skills/cargo-workspace-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cargo-workspace-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/getcargohq/cargo-skills/cargo-workspace-management"><img src="https://agentmods.dev/badge/skills/getcargohq/cargo-skills/cargo-workspace-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 159 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,645 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 29 Apr 2026
  • Snyk pass 29 Apr 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 38
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00159 $0.02645
Opus 5 $0.00079 $0.01323
Sonnet 5 $0.00032 $0.00529
Haiku 4.5 $0.00016 $0.00265

Measured 11d ago against content hash ea55b807a540, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

cargo-workspace-management scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

cargo-workspace-management/SKILL.md · 233 lines

How it starts

The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cargo CLI — Workspace

Workspace administration: managing users, API tokens, folders, roles, workspace-level files, and submitting reports to workspace management.

See references/response-shapes.md for full JSON response structures. See references/troubleshooting.md for common errors and how to fix them. See references/examples/users.md for user invite and management examples. See references/examples/tokens.md for API token creation and rotation examples. See references/examples/folders.md for organizing resources into folders. See references/examples/reports.md for examples of submitting workspace management reports. See references/examples/sessions.md for session tracking — the Cargo installer scaffolds the Claude Code SessionStart + Stop + SessionEnd hooks automatically.

Bootstrap

Already signed in (cargo-ai whoami returns a workspace)? Skip to the next section.

npm install -g @cargo-ai/cli            # no global install? prefix every command with `npx @cargo-ai/cli`
cargo-ai login --email [email protected]  # emailed code, no browser; creates the account on first use
                                        # alternatives: --oauth (browser) · --token <api-token> (CI)
cargo-ai whoami                         # confirm the active workspace before any write

Every command prints JSON to stdout; failures exit non-zero with {"errorMessage": "..."}. Anything that creates a run or a batch is async — pass --wait-until-finished or poll the matching get. Admin-only: user, role, and token writes require a token with admin access on the workspace. Folder writes and report create work with non-admin tokens. When the full skill bundle is installed, ../cargo/references/prerequisites.md adds the CLI version pin, token scopes, and the admin-only surface.

Discover resources first

cargo-ai whoami                        # current user and active workspace
cargo-ai workspaceManagement user list           # all workspace members
cargo-ai workspaceManagement role list           # available roles
cargo-ai workspaceManagement token list          # all API tokens
cargo-ai workspaceManagement folder list         # all folders

Read the full file on GitHub · 233 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 233 lines · 159 tokens per session scan A ea55b807a540

Subscribe to this mod's changes

cargo-workspace-management is a skill published in the GitHub repository getcargohq/cargo-skills (17 stars, last pushed today), licensed MIT. It adds 159 tokens to every session and 2,645 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

partner-affiliate

When the user wants to build a partner program, launch an affiliate program, design integration partnerships, or create distribution partnerships. Also use when the user mentions 'partnerships,' 'affiliate program,' 'referral program,' 'partner ecosystem,' 'integration partner,' 'reseller,' 'co-marketing,'…

The-Utopia-Studio/skills · 89 tokens

kill-criteria-exit-ramps

Establishes pre-defined, objective conditions for stopping projects and specific decision points for continue/pivot/kill evaluations. Guides through defining kill criteria, setting go/no-go gates, avoiding sunk cost fallacy, and executing disciplined stopping decisions. Use when defining stopping rules for projects…

The-Utopia-Studio/skills · 110 tokens

review-resume

Comprehensive PM resume review and tailoring against 10 best practices including XYZ+S formula, keyword optimization, job-specific tailoring, and structure. Use when reviewing a PM resume, preparing for job applications, or improving resume impact.

The-Utopia-Studio/skills · 49 tokens

forecast-discipline

Use to drive consistent forecast methodology, grading, and inspection cadences.

The-Utopia-Studio/skills · 18 tokens

escalation-framework

Use to govern executive involvement, cross-functional response, and risk resolution for at-risk renewals.

The-Utopia-Studio/skills · 24 tokens

renewal-playbooks

Use to design and maintain structured renewal/save motions across segments and risk levels.

The-Utopia-Studio/skills · 20 tokens