organize-workspace

A workspace-cleanup workflow that finds disposable files such as logs, caches, old build output, and stray drafts, then presents proposed changes for review.

In plain words
What is it for?
Inspecting a project directory, grouping unwanted files, consolidating scattered material, and optionally updating .gitignore, which lists files Git should ignore.
Why use it?
It helps identify clutter without deleting or moving files before the user explicitly approves each change.

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

Made for: Claude Code, Codex.

Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,005 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00098 $0.02005
Opus 5 $0.00049 $0.01002
Sonnet 5 $0.00020 $0.00401
Haiku 4.5 $0.00010 $0.00200

Measured 3d ago against content hash 7b5bbaf006a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

organize-workspace scanned grade C with 1 finding 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 3d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- **Prefer `fd` / `ripgrep` / `find`** in that order; avoid blind `rm -rf` on vague globs.
.cline/skills/organize-workspace/SKILL.md · 165 lines

How it starts

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

Organize Workspace

HARD GATEHARD GATE — Workspace structure must reflect domain structure. If the codebase feels disorganized, flag it. Disorganization != 'just a style thing;' it is a signal of domain misalignment.

Principles

  • Read-only first: inventory and size (du, ls -la) before any change.
  • Never delete or move without a numbered list and explicit user approval (item-level or "approve all").
  • Prefer fd / ripgrep / find in that order; avoid blind rm -rf on vague globs.
  • Do not touch .git/, node_modules/, venv/, .env*, or SSH keys; flag them only if the user asked about them.
  • Confirm prompts in the user's language if they are not writing in English.

1. Establish scope

  • Default: current project root (where the user is working) or the path they name.
  • Record OS (macOS vs Linux) for ignore patterns (e.g. .DS_Store).

2. Classify candidates (scan)

Group findings under these buckets:

Bucket Examples Typical action
Logs & temp *.log, logs/, tmp/, temp/, *.pid Delete after confirm
Build / cache dist/, build/, .next/, coverage/, .turbo/ Delete if rebuildable
Package caches root .cache/, __pycache__/ Offer delete
Stray drafts root-level *.md named draft, scratch, temp User picks: delete, move to specs/, or keep
Duplicate / dump dirs old/, backup/, copy/, *_backup List + ask

Use quick size hints: du -sh per top-level dir; sort large items first.

3. Assets & data (organize, not only delete)

If the user wants organization:

  1. Propose a single convention, e.g.:
    • assets/ — images, fonts, static media
    • data/ — JSON, CSV, fixtures, samples
    • specs/ — all planning and domain documents
  2. For each cluster of loose files, suggest one target path and a short rationale.
  3. Use git-aware moves when in a repo: git mv if tracked; otherwise mv and report.
  4. Never move secrets or production DB dumps into docs/ or public assets/.

Read the full file on GitHub · 165 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. 3d ago First seen · 165 lines · 98 tokens per session scan C 7b5bbaf006a0

Subscribe to this mod's changes

organize-workspace is a skill published in the GitHub repository danielvm-git/bigpowers (156 stars, last pushed 26d ago), licensed MIT. It adds 98 tokens to every session and 2,005 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). 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

re0-upgrade

Bring your installed paperthin skills up to the full current catalog in one step: retire what's been renamed, add every skill you don't have yet, and refresh the rest, all shown and confirmed before anything changes.

LilMGenius/paperthin · 47 tokens

behavior-design

Use when a goal must be converted into a repeatable behavior, cue, SOP, review cadence, and identity-aligned reinforcement.

Mark393295827/third-brain-v7-skills · 29 tokens

daily-okr

Use when planning or closing a daily knowledge-compounding cycle across input, cognition, wiki, behavior, creativity, output, and feedback.

Mark393295827/third-brain-v7-skills · 31 tokens

sounding-board

Opinionated rubber duck. Reflects the user's thinking back in plain language, flags gaps, and offers concrete suggestions -- one exchange at a time. Use when the user says "bounce this off you", "think with me", "sounding board", "talk this through", "what do you think", or wants collaborative feedback on an idea…

jcottam/agent-resources · 78 tokens

context-manager

Smart context selection engine. Analyzes the current task, consults the Project Graph, and returns only the documents and skills needed. Prevents context window overflow by loading minimum relevant information.

kok-o/koko-contextos-agents · 43 tokens

raycast-automator

Use when the user asks to automate a task with Raycast, build a Raycast extension, create a Raycast script command, or mentions Raycast in the context of building something. Triggers on: "automate X with Raycast", "build a Raycast extension", "create a raycast script", "make a raycast command", or any task where…

sacredvoid/skillkit · 89 tokens