Sub-skill of clean-code: God Object Detection.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill god-object-detection --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of God Object Detection?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-god-object-detection)More formats (shields.io, HTML) on the badges page.
---
name: clean-code-god-object-detection
description: 'Sub-skill of clean-code: God Object Detection.'
version: 2.1.0
category: workspace
type: reference
scripts_exempt: true
---
# God Object Detection
## God Object Detection
A "God Object" knows or does too much. Signs:
1. File >600 lines with >8 classes or >15 functions
2. Class that imports from 5+ different domain modules
3. Function >50 lines with >3 different concerns
4. File name that ends in `_utils.py`, `_helpers.py`, `_common.py` with >200 lines
```bash
# Files with many class definitions (God Object candidates)
grep -l "^class " src/**/*.py | xargs -I{} bash -c \
'count=$(grep -c "^class " {}); [ $count -gt 3 ] && echo "$count classes: {}"' | sort -rn
# Files with many function definitions
grep -l "^def \|^ def " src/**/*.py | xargs -I{} bash -c \
'count=$(grep -cE "^def |^ def " {}); [ $count -gt 15 ] && echo "$count funcs: {}"' | sort -rn
```
---
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...