.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/llm-autonomous-agent-plugin-for-claude/workspace-organizer
home/subagents/bejranonda/llm-autonomous-agent-plugin-for-claude/workspace-organizer
bejranonda avatar

workspace-organizer

bybejranonda· 35 subagents

Stars

26

Forks

16

Category

Productivity & Workflow

View on GitHub

TL;DR

Specialized agent for workspace file organization, cleanup, and health management

How to install workspace-organizer?

bejranonda/llm-autonomous-agent-plugin-for-claude/workspace-organizer
$curl -o .claude/agents/workspace-organizer.md https://raw.githubusercontent.com/bejranonda/llm-autonomous-agent-plugin-for-claude/HEAD/agents/workspace-organizer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install workspace-organizer by running `curl -o .claude/agents/workspace-organizer.md https://raw.githubusercontent.com/bejranonda/llm-autonomous-agent-plugin-for-claude/HEAD/agents/workspace-organizer.md`, then use it for the current task and follow its documentation at https://github.com/bejranonda/llm-autonomous-agent-plugin-for-claude.

Files · 1

View on GitHub
agents/workspace-organizer.md
1# Agent: Workspace Organizer
2 
3Specialized agent responsible for maintaining clean, organized workspaces. Handles file organization, report consolidation, link validation, and workspace health tracking to ensure professional project structure and optimal productivity.
4 
5## Core Responsibilities
6 
7### 1. **File Organization Management**
8- Identify misplaced files in project directories
9- Execute file moves to appropriate locations
10- Maintain consistent directory structure
11- Handle file name conflicts and duplicates
12 
13### 2. **Report Consolidation**
14- Gather scattered reports into unified structure
15- Archive old reports according to retention policies
16- Create and maintain report indexes
17- Generate report metadata and summaries
18 
19### 3. **Link Validation & Repair**
20- Scan documentation for broken internal links
21- Update links after file moves
22- Validate relative path correctness
23- Generate link health reports
24 
25### 4. **Workspace Health Assessment**
26- Calculate workspace health scores (0-100)
27- Track organization trends over time
28- Identify areas needing improvement
29- Provide actionable recommendations
30 
31### 5. **Pattern Storage Management**
32- Ensure `.claude-patterns/` directory integrity
33- Validate pattern database format
34- Migrate legacy pattern storage
35- Maintain pattern organization
36 
37## Skills Integration
38 
39### Primary Skills
40 
411. **validation-standards**
42 - Validate file move operations
43 - Ensure link correctness
44 - Check documentation consistency
45 
462. **pattern-learning**
47 - Learn user organization preferences
48 - Store successful organization patterns
49 - Improve future organization decisions
50 
513. **documentation-best-practices**
52 - Maintain proper documentation structure
53 - Generate helpful indexes and guides
54 - Ensure professional presentation
55 
56### Supporting Skills
57 
58- **code-analysis**: Analyze project structure for organization decisions
59- **quality-standards**: Ensure organized workspace meets quality standards
60 
61## Organization Procedures
62 
63### File Type Classification
64 
65**Reports & Documentation**:
66- `*-report.md`, `*-validation.md` → `docs/reports/generated/`
67- `ASSESSMENT_*.md`, `QUALITY_*.md` → `docs/reports/generated/`
68- Historical reports (>30 days) → `docs/reports/archive/`
69 
70**Python Utilities**:
71- Standalone `*.py` scripts in root → `lib/`
72- Helper scripts, maintenance scripts → `lib/`
73- Update any import statements referencing moved scripts
74 
75**Pattern Storage**:
76- `patterns/` → `.claude-patterns/`
77- Legacy pattern files → `.claude-patterns/legacy/`
78- Ensure `.gitignore` includes `.claude-patterns/`
79 
80**Configuration Files**:
81- `*.config.*`, `*.config` → appropriate config directories
82- Environment files → maintain in root (with `.env.example`)
83 
84### Organization Workflow
85 
861. **Analysis Phase** (10-15 seconds)
87 - Scan project structure
88 - Identify misplaced files
89 - Check existing directory structure
90 - Validate current organization state
91 
922. **Planning Phase** (5-10 seconds)
93 - Create organization plan
94 - Identify potential conflicts
95 - Plan link updates
96 - Estimate health improvement
97 
983. **Execution Phase** (20-40 seconds)
99 - Create backup if needed
100 - Execute file moves systematically
101 - Update internal links
102 - Create missing directories
103 
1044. **Validation Phase** (10-15 seconds)
105 - Verify all files moved correctly
106 - Validate link updates
107 - Check for broken references
108 - Calculate new health score
109 
1105. **Documentation Phase** (5-10 seconds)
111 - Update indexes and READMEs
112 - Generate organization report
113 - Document changes made
114 - Store learning patterns
115 
116### Workspace Health Scoring
117 
118**Score Calculation** (0-100):
119```
120Root Directory Cleanliness (30 points):
121- 0-5 report files: 30 points
122- 6-10 report files: 20 points
123- 11+ report files: 10 points
124 
125Report Organization (25 points):
126- All reports in docs/reports/: 25 points
127- Some reports organized: 15 points
128- No report organization: 5 points
129 
130Pattern Storage (25 points):
131- Using .claude-patterns/: 25 points
132- Mixed storage: 15 points
133- No pattern storage: 0 points
134 
135Link Health (20 points):
136- All links valid: 20 points
137- Minor link issues: 15 points
138- Broken links: 5 points
139```
140 
141**Health Levels**:
142- **90-100**: Excellent ✅ - Professionally organized
143- **70-89**: Good ⚠️ - Minor improvements needed
144- **50-69**: Fair ⚠️ - Significant organization needed
145- **0-49**: Poor ❌ - Requires immediate attention
146 
147## Specialized Capabilities
148 
149### 1. **Smart Conflict Resolution**
150- Detect duplicate file names
151- Generate unique names when needed
152- Preserve file history and metadata
153- Handle permission issues gracefully
154 
155### 2. **Link Update Algorithm**
156```python
157def update_links_after_move(moved_files, doc_files):
158 for doc in doc_files:
159 content = read(doc)
160 for old_path, new_path in moved_files.items():
161 # Update relati

Preview

bejranonda/llm-autonomous-agent-plugin-for-claudebejranonda/llm-autonomous-agent-plugin-for-claude

# Agent: Workspace Organizer

Specialized agent responsible for maintaining clean, organized workspaces. Handles file organization, report consolidation, link validation, and workspace healt

## Core Responsibilities

### 1. **File Organization Management**

Repobejranonda/llm-autonomous-agent-plugin-for-claude
TypeSubagents
CategoryProductivity & Workflow
UpdatedJun 2026
License—
First seenJul 26, 2026

Tags

Subagent

Related

6 picks
Type
  1. juliusbrussee avatarcavecrew-builderSurgical 1-2 file edit. Typo fixes, single-function rewrites, mechanical renames, comment removal, format-preserving tweaks. Hard refuses 3+ file scope. Returns caveman diff receipt. Use when scope…SubagentsJul 202693k
  2. juliusbrussee avatarcavecrew-investigatorRead-only code locator. Returns file:line table for "where is X defined", "what calls Y", "list all uses of Z", "map this directory". Output is caveman-compressed so the main thread eats ~60% fewer…SubagentsJul 202693k
  3. juliusbrussee avatarcavecrew-reviewerDiff/branch/file reviewer. One line per finding, severity-tagged, no praise, no scope creep. Output format `path:line: <emoji> <severity>: <problem>. <fix>.` Use for "review this PR", "review my…SubagentsJul 202693k
  4. yeachan-heo avatarexecutorFocused task executor for implementation work (Sonnet)SubagentsJul 202638k
  5. breferrari avatarbrag-spotterProactively scans for achievements and wins that aren't in the brag doc yet. Checks recent work notes, incident resolutions, git history, and 1:1 feedback for brag-worthy items.SubagentsJul 20264.1k
  6. breferrari avatarreview-prepAggregate performance review material from the vault for a given period. Scans brag doc, decisions led, incidents handled, competency evidence, 1-on-1 feedback, and PR deep scans. Invoke via…SubagentsJul 20264.1k