linaqruf/cc-plugins

Claude Code plugins

0 stars0 forksUpdated Jan 19, 2026
npx skills add linaqruf/cc-plugins

README

cc-plugins

A collection of Claude Code plugins

Installation

Add this marketplace to Claude Code:

/plugin marketplace add Linaqruf/cc-plugins

Then install any plugin:

/plugin install <plugin-name>@cc-plugins

Available Plugins

PluginDescriptionVersion
project-specGenerate project specifications with SPEC.md as core and optional SPEC/ supplements3.1.0
fuwari-mdFuwari's markdown stack - admonitions, math, GitHub cards, code highlighting1.0.2
codebase-cleanupComprehensive cleanup analysis for TypeScript/JavaScript codebases1.0.4

Plugins

project-spec

Generate project specifications with SPEC.md as the core file and optional SPEC/ supplements for reference material.

Core Principle: SPEC.md = things you READ, SPEC/ = things you LOOK UP

Commands:

CommandDescriptionOutput
/project-spec:specProject planning interviewSPEC.md + CLAUDE.md
/project-spec:designDesign system interviewDESIGN_SPEC.md
/project-spec:featureFeature planning interviewFEATURE_SPEC.md
/project-spec:syncGit-aware spec drift detectionUpdates existing specs

Features:

  • Single adaptive flow (no mode selection needed)
  • Opinionated recommendations with user override
  • Optional SPEC/ supplements for reference material (API schemas, SDK patterns)
  • Git-aware /sync command detects when specs are out of date
  • System maps (architecture diagrams, data relations, user flows)
  • spec-writer agent for autonomous planning
  • Context7 integration for tech stack documentation

Install:

/plugin install project-spec@cc-plugins

Usage:

# Project specification
/project-spec:spec              # Full interview
/project-spec:spec web-app      # Quick-start for web apps

# Design system
/project-spec:design modern     # Clean, subtle preset

# Feature planning
/project-spec:feature comments  # Plan a feature

# Sync specs with codebase
/project-spec:sync spec         # Detect and fix drift

See plugin documentation for details.


fuwari-md

Fuwari's production-ready markdown processing stack for any framework. Includes admonitions, math equations, GitHub repository cards, enhanced code blocks, and more.

Commands:

CommandDescription
/fuwari-md:syntaxQuick markdown syntax reference
/fuwari-md:setupGenerate config for your framework
/fuwari-md:componentCreate custom remark/rehype plugins

Features:

  • Admonitions (:::note, :::tip, > [!WARNING])
  • Math equations (KaTeX)
  • GitHub repository cards (::github{repo="owner/repo"})
  • Enhanced code blocks (line numbers, copy button, language badges)
  • Reading time calculation
  • Fuwari source code included as references
  • markdown-architect agent for debugging

Install:

/plugin install fuwari-md@cc-plugins

Quick Syntax:

:::note[Title]
Admonition content
:::

$E = mc^2$  <!-- inline math -->

::github{repo="withastro/astro"}

See plugin documentation for details.


codebase-cleanup

Comprehensive cleanup analysis for TypeScript/JavaScript codebases. Detect and remove unused imports, dead code, orphaned assets, unused dependencies, and obsolete configurations.

Commands:

CommandDescription
/cleanupInteractive cleanup analysis
/cleanup allFull analysis (all categories)
/cleanup importsUnused/duplicate/circular imports
/cleanup deadcodeUnreachable code, unused functions
/cleanup assetsUnused images, CSS, fonts
/cleanup depsUnused npm packages
/cleanup configsUnused env vars, obsolete configs

Features:

  • Unused import detection with duplicate and circular dependency checks
  • Dead code detection (unreachable code, unused functions, variables, exports)
  • Asset tracking for unused images, CSS, fonts, and static resources
  • Dependency auditing with security vulnerability detection
  • Configuration cleanup for env vars, feature flags, and obsolete configs
  • Interactive review with confidence levels (High/Medium/Low)
  • Structured markdown reports with actionable recommendations

Agents:

AgentTriggerPurpose
import-analyzer"find unused imports"Import statement analysis
dead-code-detector"find dead code"Unreachable/unused code detection
asset-tracker"find unused assets"Static file tracking
dependency-auditor"audit dependencies"npm package analysis
config-cleaner"clean up configs"Configuration file cleanup

Install:

/plugin install codebase-cleanup@cc-plugins

Usage:

# I

...
Read full README

Publisher

linaqruflinaqruf

Statistics

Stars0
Forks0
Open Issues0
LicenseMIT License
CreatedJan 8, 2026