viknesh20-20

104 mods across 1 repository, 7 stars between them.

convert-code

25

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Converts code between programming languages while preserving logic, error handling, and idiomatic patterns. Use when migrating modules between languages or frameworks.

7 4mo ago A 30 tokens original MIT

create-component

26

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Scaffolds a new component, module, or package following the project's existing structure, naming conventions, and patterns. Auto-detects framework and generates all necessary files including tests.

7 4mo ago A 39 tokens original MIT

db-migration

27

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Generates database migration files for schema changes with up/down migrations, safety checks, rollback instructions, and index recommendations. Auto-detects the ORM/migration tool in use.

7 4mo ago A 39 tokens original MIT

debug

28

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Systematically debugs issues using structured diagnosis — reproduce, isolate, identify root cause, and fix. Use when facing bugs, errors, unexpected behavior, or failing tests.

7 4mo ago A 36 tokens original MIT

dependency-audit

29

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Audits project dependencies for known vulnerabilities, outdated packages, unused dependencies, and license compliance. Works with npm, pip, cargo, go modules, and more.

7 4mo ago A 36 tokens original MIT

deploy-checklist

30

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Runs a comprehensive pre-deployment verification checklist covering tests, security, environment config, migrations, rollback plan, and breaking changes. Use before deploying to staging or production.

7 4mo ago A 37 tokens original MIT

design-flow

31

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Designs an end-to-end user flow before any pixels are drawn — entry point, screens, decisions, branches, error/recovery paths, edge cases, microcopy hooks. Outputs a structured spec engineering and design can build from.

7 4mo ago A 49 tokens original MIT

docker-setup

32

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Generates Dockerfile, docker-compose.yml, and .dockerignore for the project. Auto-detects the stack and creates optimized multi-stage builds with caching, health checks, and dev/prod configurations.

7 4mo ago A 45 tokens original MIT

env-setup

33

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Environment setup assistant — detects project requirements, generates .env.example, documents prerequisites, creates setup scripts, and verifies the development environment is ready. Use when setting up a project for the first time.

7 4mo ago A 43 tokens original MIT

error-monitor

34

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Sets up error monitoring and tracking for the project. Detects the framework and generates integration code for Sentry, Bugsnag, or custom error tracking with proper error boundaries and middleware.

7 4mo ago A 39 tokens original MIT

estimate

35

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Analyzes a task or GitHub issue and provides effort estimation broken into subtasks with T-shirt sizing, risk assessment, and dependency mapping. Use for sprint planning or before committing to deadlines.

7 4mo ago A 40 tokens original MIT

explain-code

36

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Explains code with multiple levels of detail — high-level purpose, line-by-line walkthrough, data flow diagrams, and design rationale. Use when onboarding to unfamiliar code or trying to understand complex logic.

7 4mo ago A 43 tokens original MIT

fix-issue

37

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Fetches a GitHub issue by number, analyzes the requirements, finds the relevant code, implements a fix, and optionally creates a PR. Use when working through your issue backlog.

7 4mo ago A 40 tokens original MIT

generate-docs

38

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Generates documentation matching the project's style — README files, API docs, inline documentation, or architecture docs. Auto-detects the documentation format in use.

7 4mo ago A 35 tokens original MIT

git-cleanup

39

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Cleans up stale git branches, merged branches, orphaned remote refs, and identifies large files in history. Use for periodic repository maintenance.

7 4mo ago A 32 tokens original MIT

grill-me

40

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Relentlessly interviews you about your plan, feature, or design until every edge case, failure mode, and assumption is resolved. Does NOT implement anything — only asks probing questions. Use before starting implementation to bulletproof your thinking.

7 4mo ago A 50 tokens original MIT

handoff

41

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

End-of-session summary written to .claude/memory/handoffs/ .md so the next session can pick up cleanly. Captures what was done, what's pending, what's blocked, what to verify, and any decisions awaiting the user.

7 4mo ago A 54 tokens original MIT

legal-pages

42

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Scaffolds production-ready legal page templates for a website: Privacy Policy, Terms of Service, Cookie Policy, Cookie Consent banner, Refund Policy, Contact / Imprint. Templates are clearly marked as a starting point — the user must customize and have a lawyer review before going live.

7 4mo ago A 59 tokens original MIT

memory-import

43

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Inherit memories from another workspace. Reads .claude/memory/ from a source path and imports its memories into the current workspace under .claude/memory/inherited/ /. Tagged with provenance so the user can tell where each came from.

7 4mo ago A 55 tokens original MIT

memory

44

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Manage the persistent memory layer in .claude/memory/ — list, search, save, update, delete, dedupe. Use to inspect what memories exist, write a new one, or clean up stale entries.

7 4mo ago A 46 tokens original MIT

microcopy

45

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Writes or reviews UX copy — button labels, error messages, empty states, success messages, tooltips, form labels, onboarding text, confirmation dialogs. Voice-consistent, action-led, recovery-oriented. Localizable. No dark patterns.

7 4mo ago A 50 tokens original MIT

migrate-framework

46

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Assists with migrating between frameworks or major versions — Express to Fastify, CRA to Vite, Vue 2 to Vue 3, class components to hooks, etc. Creates a migration plan, identifies breaking changes, and provides file-by-file migration order.

7 4mo ago A 56 tokens original MIT

onboard

47

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Generates a comprehensive codebase onboarding guide by scanning the project structure, detecting the stack, mapping architecture, and identifying key entry points. Use when joining a new project or onboarding teammates.

7 4mo ago A 40 tokens original MIT

optimize

48

viknesh20-20/claude-code-tool-kit

Skill Claude CodeCodex

Analyzes code for performance bottlenecks and produces prioritized, actionable optimization recommendations with before/after code. Use before shipping performance-critical features or when code feels slow.

7 4mo ago A 36 tokens original MIT