From shipshitdev-library
Generates codebase analysis covering architecture, security, performance, code quality. Maps structure via tree/find commands, counts TS/TSX/controllers/services, outputs MD report.
npx claudepluginhub shipshitdev/skillsThis skill uses the workspace's default tool permissions.
Generate comprehensive analysis of the codebase structure, architecture, and organization.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Generate comprehensive analysis of the codebase structure, architecture, and organization.
# Project structure
tree -L 3 -I 'node_modules|.next|dist|build|coverage'
# File counts
find . -type f -name "*.ts" | wc -l
find . -type f -name "*.tsx" | wc -l
Write to .agents/SYSTEM/CODEBASE-ANALYSIS.md with these sections:
For faster analysis (skip detailed metrics):
tree -L 3 -I 'node_modules|.next|dist'
echo "TypeScript: $(find . -name '*.ts' -o -name '*.tsx' | wc -l)"
echo "Controllers: $(find . -name '*.controller.ts' | wc -l)"
echo "Services: $(find . -name '*.service.ts' | wc -l)"