workspace-manager

workspace-manager is a skill for Claude Code, Codex from xuiltul/animaworks. It costs 40 tokens per session (655 once invoked), scanned A, original, Apache-2.0.

A workspace-management tool for registering, listing, removing, and assigning project directories. A workspace is the folder where an Anima performs work, and each registered folder can have a human-readable alias.

In plain words
What is it for?
Use it to connect a project directory to an Anima, set a default project folder, switch between workspaces, or manage existing workspace registrations.
Why use it?
It keeps project-folder permissions and defaults in one shared registry. It also lets workspaces be selected by alias, identifier, hash, or absolute path.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/xuiltul/animaworks/workspace-manager
Any agent
npx skills add xuiltul/animaworks --skill workspace-manager
Clone the repo
git clone --depth 1 https://github.com/xuiltul/animaworks

Made for: Claude Code, Codex.

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 workspace-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/xuiltul/animaworks/workspace-manager.svg)](https://agentmods.dev/skills/xuiltul/animaworks/workspace-manager)
Your own site
<a href="https://agentmods.dev/skills/xuiltul/animaworks/workspace-manager"><img src="https://agentmods.dev/badge/skills/xuiltul/animaworks/workspace-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 655 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00040 $0.00655
Opus 5 $0.00020 $0.00328
Sonnet 5 $0.00008 $0.00131
Haiku 4.5 $0.00004 $0.00065

Measured yesterday against content hash a12bcc8517aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

workspace-manager 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 yesterday.

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.

templates/en/common_skills/workspace-manager/SKILL.md · 83 lines

How it starts

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

Workspace Management

Skill for managing project directories (workspaces) where Animas perform work.

Concept

An Anima normally lives in its "home" (~/.animaworks/animas/{name}/). When working on a project, it "goes to the workplace" (workspace) to do the job.

Workspaces are stored in a shared registry (config.json workspaces section) and referenced by alias#hash.

Aliases and Hashes

  • Alias: A short name assigned by humans (e.g., myproject)
  • Hash: The first 8 hex digits of the path's SHA-256, auto-generated (e.g., 3af4be6e)
  • Qualified form: myproject#3af4be6e — zero collision risk
  • Tool arguments accept alias only, qualified form, hash only, or absolute path

Operations

Register

A top-level Anima with an explicit human instruction uses grant_workspace_access:

{
  "alias": "finance-dashboard",
  "path": "/absolute/path/to/project",
  "make_default": true
}

This tool updates the shared workspace registry, adds the path to the target Anima's permissions.json.file_roots, and optionally updates status.json.default_workspace.

Note: Registration fails if the directory does not exist. Note: read_memory_file(path="config.json") reads the Anima-local config.json. Do not use it for the shared workspace registry.

List

Use core.workspace.list_workspaces() to inspect the shared registry. Do not use read_memory_file(path="config.json").

Remove

Treat removal as an administrator operation. For normal work, avoid overwriting an existing alias and register a new alias instead.

Change Your Default Workspace

A top-level Anima sets make_default: true when calling grant_workspace_access. Non-top-level Animas cannot grant themselves workspace access; ask the top-level Anima via a human instruction.

Assign to Subordinates (for Supervisors)

A top-level Anima with an explicit human instruction can grant access to a subordinate or descendant by setting target_anima:

{
  "alias": "finance-dashboard",
  "path": "/absolute/path/to/project",
  "target_anima": "ritsu",
  "make_default": true
}

Read the full file on GitHub · 83 lines

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. yesterday Changed · -1 lines a12bcc8517aa
  2. 5d ago First seen · 84 lines · 40 tokens per session scan A 31f4dc34a54c

Subscribe to this mod's changes

workspace-manager is a skill published in the GitHub repository xuiltul/animaworks (254 stars, last pushed yesterday), licensed Apache-2.0. It adds 40 tokens to every session and 655 once invoked, about $0.0002 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

backlog-technical-project-manager

Technical project management for Backlog.md workstreams using coordinated sub-agents. Use only when the user explicitly asks Codex to take over one or more existing Backlog.md tasks (for example: "act as TPM", "coordinate these tasks", "delegate to sub-agents"). Orchestrate planning, implementation, and finalization…

MrLesk/Backlog.md · 90 tokens

hive.colony-progress-tracker

Claim tasks, record step progress, and verify SOP gates in the colony SQLite queue. Applies when your spawn message includes a dbpath field.

aden-hive/hive · 36 tokens

project-planner

Detailed implementation plans and spec-driven development.

modimihir07/agentic-os · 11 tokens

aspirations-all-blocked

Handles the all-goals-blocked state inside the aspirations loop (phases B0-B7): scans the coordination board, generates constraint-aware aspirations, runs the idle playbook, triggers evolution, kicks off research, performs reflection, and applies exponential backoff. Use whenever the goal selector returns zero…

zkysar1/Claude-Mind · 103 tokens

backlog-report

Generates a complete sprint-planning backlog as copy-pasteable markdown: all aspirations, goals, scores, blockers, and user action items, written to {agent}/BACKLOG.md with a compact terminal summary. Use whenever the user says "show me the backlog", "give me sprint planning material", "what's in the queue", or needs…

zkysar1/Claude-Mind · 101 tokens

crm-operations

Resolve and safely create/update demo CRM contacts, deals, activity notes and follow-up tasks with revision checks and an atomic audit trail. Use for business-object operations; do not clean spreadsheets, analyze business performance or send customer messages.

Prompthon-IO/agent-systems-handbook · 49 tokens