repository-manager-workspace-validation

repository-manager-workspace-validation is a skill for Claude Code, Codex from Knuckles-Team/repository-manager. It costs 115 tokens per session (1,444 once invoked), scanned A, original, MIT.

A workspace maintenance tool for projects managed through a repository manager. A workspace is a group of related code projects kept together for development.

In plain words
What is it for?
For installing and building projects, running pre-commit checks and pytest tests, listing workspace projects, and performing dependency-ordered version bumps.
Why use it?
It replaces repeated manual checks and version updates with structured validation and maintenance across one or more projects.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit For installing and building projects, running pre-commit checks and pytest tests, listing workspace projects, and performing dependency-ordered version bumps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/knuckles-team/repository-manager/repository-manager-workspace-validation
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 Knuckles-Team/repository-manager --skill repository-manager-workspace-validation
Clone the repo
git clone --depth 1 https://github.com/Knuckles-Team/repository-manager

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/repository-manager/repository-manager-workspace-validation/github.svg)](https://agentmods.dev/skills/knuckles-team/repository-manager/repository-manager-workspace-validation)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/repository-manager/repository-manager-workspace-validation"><img src="https://agentmods.dev/badge/skills/knuckles-team/repository-manager/repository-manager-workspace-validation/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 repository-manager-workspace-validation

Your own site · 80×15
<a href="https://agentmods.dev/skills/knuckles-team/repository-manager/repository-manager-workspace-validation"><img src="https://agentmods.dev/badge/skills/knuckles-team/repository-manager/repository-manager-workspace-validation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,444 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.
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.00115 $0.01444
Opus 5 $0.00057 $0.00722
Sonnet 5 $0.00023 $0.00289
Haiku 4.5 $0.00012 $0.00144

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

Security

Grade A, and why

repository-manager-workspace-validation 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 10d 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.

repository_manager/skills/repository-manager-workspace-validation/SKILL.md · 111 lines

How it starts

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

Repository Manager — Workspace Validation & Maintenance

Install, build, validate and version-maintain the managed projects of a workspace over the repository-manager MCP server. Validation runs each project's pre-commit hooks and pytest suite and returns a structured pass/fail report; maintenance drives phased, dependency-ordered version bumps.

When to use

  • Validate one or all projects (pre-commit + pytest) and get a pass/fail report (rm_projects validate).
  • Install or build a project ecosystem (rm_projects install / build).
  • List workspace projects / their branches (rm_workspace list / list_branches).
  • Scaffold, template, or save a workspace.yml (rm_workspace setup / template / save).
  • Run phased version-bump maintenance across the workspace (rm_workspace maintain).

When NOT to use

  • Isolated per-session branch worktrees → repository-manager-worktree-orchestration.
  • Bulk clone / pull / push / commit → repository-manager-bulk-git-operations.

Prerequisites & environment

Connect via the mcp-client skill against the repository-manager MCP server.

Variable Required Notes
REPOSITORY_MANAGER_WORKSPACE / WORKSPACE_PATH Workspace root
WORKSPACE_YML optional Manifest filename (default workspace.yml)
WORKSPACE_REPORTS optional Where validation reports are written
RM_JOB_STALE_SECONDS optional Background-job reap threshold
WORKSPACE_MANAGEMENTTOOL / PROJECT_MANAGEMENTTOOL optional Gate the tool tags on

Tools & actions

Condensed tool Actions
rm_projects install, build, validate, validate_status
rm_workspace list, list_branches, setup, template, save, maintain, maintain_status

Key parameters

  • repositories — comma-separated project names/paths to scope rm_projects(action="validate"); omit to target all. Not projects — that is rm_workspace(action="maintain")'s scoping field (see below); the two condensed tools use different parameter names for the same idea.
  • validate returns a job id; poll it with validate_status (pass job_id, summary).
  • failed_only — for validate: re-validate only repositories whose most-recent run failed (ignored if repositories is set; forces re-validation of that set).
  • commit_code / commit_message — for validate: after validation passes, stage + pre-commit + commit across the targeted repos before any bump.
  • auto_bump / auto_push / bump_part — for validate: chain a phased version bump and/or push once validation passes (see repository-manager-workspace-release for the full DAG/consent story).
  • part — version part to bump for rm_workspace(action="maintain") (major|minor|patch).
  • projects — comma-separated repo names to scope rm_workspace(action="maintain") (this tool's field IS named projects, unlike rm_projects's repositories).
  • phase / auto_start — phased maintenance controls; dry_run to preview bumps.
  • yml_path / config_dict / use_default — for setup / template / save.

Read the full file on GitHub · 111 lines

Files

What ships with it

1 file 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. 10d ago First seen · 111 lines · 115 tokens per session scan A 109403508ee1

Subscribe to this mod's changes

repository-manager-workspace-validation is a skill published in the GitHub repository Knuckles-Team/repository-manager (2 stars, last pushed 13d ago), licensed MIT. It adds 115 tokens to every session and 1,444 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

init-workspace-verification

Verify init completeness.

griddynamics/rosetta · 10 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

regex-mastery

Use this skill when writing regular expressions, debugging pattern matching,optimizing regex performance, or implementing text validation. Triggers on regex, regular expressions, pattern matching, lookahead, lookbehind, named groups, capture groups, backreferences, and any task requiring text pattern matching.

alibaba/anolisa · 60 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, then fills the gaps with list (filters, sort, a time…

comet-ml/opik-mcp · 174 tokens

ue-mcp-epic-routing

Use when deciding between ue-mcp's native category actions and Epic's wrapped ToolsetRegistry tools (the epic actions, incl. the Blueprint graph DSL) for a task in Unreal. Pulls in when authoring Blueprint graph bodies, or any time both a native action and an epic action could do the job and you need to pick.

db-lyon/ue-mcp · 81 tokens