project-organizer

project-organizer is an agent for Claude Code from 0xDarkMatter/claude-mods. It costs 43 tokens per session (4,014 once invoked), scanned A, original, MIT.

An agent for reorganising software project folders, files, logs, and redundant code according to common project-layout practices.

In plain words
What is it for?
Use it to review or clean up Python, JavaScript, and other software repositories, including their directory structure and old files.
Why use it?
It helps make a growing project easier to navigate and keeps source code, tests, documentation, configuration, and data separated.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; reads .claude/ paths; mentions CLAUDE.md.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is // New: import { func } from '../src/module';.

Part of the claude-mods plugin — 103 skills, 3 commands, 3 agents, 4 hooks shipped together

Good fit Use it to review or clean up Python, JavaScript, and other software repositories, including their directory structure and old files.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/0xDarkMatter/claude-mods
agentmods
npx agentmods add agents/0xdarkmatter/claude-mods/project-organizer

Made for: Claude Code.

Or install claude-mods, the plugin that ships this one along with the rest of its 103 skills, 3 commands, 3 agents, 4 hooks.

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 project-organizer

README.md
[![agentmods](https://agentmods.dev/badge/agents/0xdarkmatter/claude-mods/project-organizer.svg)](https://agentmods.dev/agents/0xdarkmatter/claude-mods/project-organizer)
Your own site
<a href="https://agentmods.dev/agents/0xdarkmatter/claude-mods/project-organizer"><img src="https://agentmods.dev/badge/agents/0xdarkmatter/claude-mods/project-organizer.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,014 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.00043 $0.04014
Opus 5 $0.00022 $0.02007
Sonnet 5 $0.00009 $0.00803
Haiku 4.5 $0.00004 $0.00401

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

Security

Grade A, and why

project-organizer 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 8d 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.

agents/project-organizer.md · 611 lines

How it starts

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

Project Organizer Agent

You are a project organization expert specializing in creating clean, maintainable directory structures following industry standards and best practices.

Core Principles

Based on industry best practices from:

  • The Hitchhiker's Guide to Python (docs.python-guide.org)
  • Maven Standard Directory Layout
  • GitHub Folder Structure Conventions
  • Software Engineering Stack Exchange standards

Key Guidelines:

  1. Separation of Concerns: Separate source code, tests, documentation, configuration, and data
  2. Language Standards: Follow language-specific conventions (src layout for Python, lib for Ruby, etc.)
  3. Predictability: Use conventional names that developers expect (tests/, docs/, scripts/)
  4. Scalability: Structure should accommodate growth without major refactoring
  5. Tooling Compatibility: Align with build tools, package managers, and CI/CD expectations
  6. Cleanliness: Remove redundant, outdated, or unnecessary files
  7. Data Hygiene: Clean up old logs and temporary data regularly

Standard Directory Structures

Python Projects (Recommended: src layout)

project-name/
├── src/
│   └── package_name/      # Main package code
│       ├── __init__.py
│       ├── module1.py
│       └── subpackage/
├── tests/                 # Test files
│   ├── __init__.py
│   └── test_*.py
├── scripts/              # Executable scripts/CLI tools
│   └── *.py
├── docs/                 # Documentation
│   └── *.md
├── config/               # Configuration files
│   └── *.json, *.yaml
├── data/                 # Data files (add to .gitignore if large)
├── logs/                 # Log files (add to .gitignore)
├── .env                  # Environment variables (in .gitignore)
├── .gitignore
├── README.md
├── requirements.txt      # or pyproject.toml
└── setup.py             # or pyproject.toml

JavaScript/Node Projects

project-name/
├── src/                  # Source code
│   ├── index.js
│   ├── components/
│   └── utils/
├── tests/               # or __tests__/
├── scripts/             # Build/utility scripts
├── docs/
├── config/
├── public/              # Static assets (web projects)
├── dist/                # Build output (in .gitignore)
├── node_modules/        # Dependencies (in .gitignore)
├── .gitignore
├── README.md
├── package.json
└── package-lock.json

Read the full file on GitHub · 611 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. 8d ago First seen · 611 lines · 43 tokens per session scan A 02bd7b134297

Subscribe to this mod's changes

project-organizer is an agent published in the GitHub repository 0xDarkMatter/claude-mods (33 stars, last pushed 15d ago), licensed MIT. It adds 43 tokens to every session and 4,014 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 agents, from other repositories

product-manager

Product requirements, user stories, roadmaps, prioritization frameworks, and sprint planning specialist. Use when writing PRDs, defining user stories, planning sprints, or making product decisions. Trigger phrases: PRD, user story, roadmap, sprint, backlog, prioritization, product requirements, acceptance criteria…

travisjneuman/.claude · 71 tokens

planner

Use this agent when you need to turn a parsed fakoli-state PRD into a coherent task graph — propose Features that group related Requirements, draft Tasks with acceptance criteria and verification commands, and surface high-complexity tasks that should be expanded. Specializes in the PRD-to-tasks transformation; defers…

fakoli/fakoli-plugins · 396 tokens

gws-orchestrator

Use this agent when the user needs to perform a multi-step operation across Google Workspace services that requires coordination, data passing between services, or complex sequencing. Examples: Context: User wants to create a meeting and email attendees user: "Schedule a meeting with Alice and Bob for tomorrow at 2pm…

fakoli/fakoli-plugins · 277 tokens

project-manager

Use this agent when the user wants to operate as a Project Manager — coordinate projects, track tasks, schedule meetings, and share docs. Services: drive, sheets, calendar, gmail, chat. Context: User wants to track project status user: "Log this week's sprint progress and send a status update to stakeholders"…

fakoli/fakoli-plugins · 136 tokens

customer-support

Use this agent when the user wants to operate as a Customer Support Agent — manage customer support, track tickets, respond to customers, and escalate issues. Services: gmail, sheets, chat, calendar. Context: User needs to triage support inbox user: "Check the support inbox and log any new tickets to the tracking…

fakoli/fakoli-plugins · 140 tokens

event-coordinator

Use this agent when the user wants to operate as an Event Coordinator — plan and manage events including scheduling, invitations, and logistics. Services: calendar, gmail, drive, chat, sheets. Context: User is planning a company event user: "Set up calendar events, send invitations, and create a shared folder for the…

fakoli/fakoli-plugins · 138 tokens