workspace

workspace is a skill for Claude Code from ulises-jeremias/agent-toolkit. It costs 27 tokens per session (948 once invoked), scanned A, original, MIT.

A workspace manager for keeping project context, shared knowledge, repositories, and client settings in one place across multiple codebases.

In plain words
What is it for?
It helps initialize sessions, load project or client settings, check workspace health, and coordinate work across repositories.
Why use it?
It reduces the need to rebuild context whenever you start a session or switch between projects and clients.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions AGENTS.md; mentions Gemini CLI.

Part of the agent-toolkit-complete plugin — 116 skills shipped together

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/ulises-jeremias/agent-toolkit/workspace
Any agent
npx skills add ulises-jeremias/agent-toolkit --skill workspace
Clone the repo
git clone --depth 1 https://github.com/ulises-jeremias/agent-toolkit

Made for: Claude Code.

Or install agent-toolkit-complete, the plugin that ships this one along with the rest of its 116 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/workspace.svg)](https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/workspace)
Your own site
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/workspace"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/workspace.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 948 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.1 $0.00027 $0.00948
Opus 5 $0.00014 $0.00474
Sonnet 5 $0.00005 $0.00190
Haiku 4.5 $0.00003 $0.00095

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

Security

Grade A, and why

workspace 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 2d 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.

plugins/agent-toolkit-complete/.github/skills/workspace/SKILL.md · 104 lines

How it starts

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

Workspace

Initialize and operate the stateless AI workspace (~/.ai-workspace) that orchestrates work across any repo, team, or client via agent-toolkit workspace and agent-toolkit memory. This is the entry point for multi-repo delivery; all swarm and project work runs inside it.

When to use

  • Starting a new session (agent-toolkit workspace context + agent-toolkit memory inject + agent-toolkit memory todo — the session start protocol per AGENTS.md).
  • User needs to switch client/project context via packs (packs/*.yaml).
  • Workspace health check, pack load, or knowledge sync is needed.

Prerequisites

  • agent-toolkit installed (agent-toolkit workspace --help works).
  • Workspace at ~/.ai-workspace (or $WORKSPACE_ROOT) with repos/, projects/ symlinks, knowledge/, personas/, packs/.

Workflow

1. Session start protocol (always)

agent-toolkit workspace context          # inject session state (repos, packs, personas)
agent-toolkit memory inject              # load persistent knowledge
agent-toolkit memory todo                # show pending follow-ups
# Optional: load a pack
agent-toolkit workspace load packs/<client>.yaml

Per AGENTS.md: check knowledge/ before asking a question already answered; run discovery before large edits; follow plan → implement → review → PR.

2. Inspect and switch context

agent-toolkit workspace context --json | jq
ls ~/.ai-workspace/projects  # symlinks to active repos
ls ~/.ai-workspace/packs
cat ~/.ai-workspace/AGENTS.md  # portable contract (primary), plus CLAUDE.md/GEMINI.md symlinks

Packs bundle client/project context:

agent-toolkit workspace load packs/my-client.yaml  # sets env, LLM policy, registry
# Verify LLM policy before queuing devcompanion jobs (esp. for client engagements)
dots-devcompanion llm-status  # or agent-toolkit devcompanion status

3. Knowledge lifecycle

agent-toolkit memory search "topic"           # find existing knowledge
agent-toolkit memory add --type learning "pattern"  # save after discovering
agent-toolkit memory add --type todo "follow-up"    # track
agent-toolkit memory todo                    # review before closing session

Read the full file on GitHub · 104 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. 2d ago First seen · 104 lines · 27 tokens per session scan A e950294a680d

Subscribe to this mod's changes

workspace is a skill published in the GitHub repository ulises-jeremias/agent-toolkit (16 stars, last pushed today), licensed MIT. It adds 27 tokens to every session and 948 once invoked, about $0.0001 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-09-04.

Related

Other skills, from other repositories

project

Create or maintain an Architecture Studio project — initialize its record bundle, remember sourced facts, capture or supersede decisions, inspect project status, or migrate a 1.x PROJECT.md. Use when the user says “set up the project,” “remember this,” “we decided,” asks about project context, or runs /as:project.

AlpacaLabsLLC/skills-for-architects · 69 tokens

alive-bundle

Create, manage, and graduate bundles -- the unit of focused work within a walnut.

alivecontext/alive · 20 tokens

chatcrystal-task-writeback

Write reusable ChatCrystal task memories after substantive work completes. Use when implementation or debugging produced a durable fix, pitfall, pattern, or decision worth preserving, and when the environment can either persist it through writetaskmemory or emit a structured memory candidate for later save.

ZengLiangYi/ChatCrystal · 62 tokens

iblai-api-agent-memory

Manage an ibl.ai agent's memories via the platform API — list and filter agent (mentor) memories (by category, user, email, date), curate global (cross-agent) memories, curate shared agent knowledge injected into every user's chat, add/edit/delete memories, manage memory categories, and toggle capture/recall settings.…

iblai/api · 83 tokens

iblai-api-agent-support

Manage an ibl.ai agent's human-support tickets via the platform API — list and filter the tickets users raised with an agent (by agent, requester, status, session), read a ticket's conversation thread, reply as the support team, change ticket status, and close or delete tickets. Use when triaging or responding to…

iblai/api · 79 tokens

register-project

Register an existing project in memory. Use when starting work on a new repo or when a project needs its own context file. Triggers on: 'register project', 'add project to memory', 'track this project', 'create project file'.

faizkhairi/claude-code-blueprint · 52 tokens