Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Curated skill library by Electrified Cortex — compression, spec writing, skill writing, code review, and more.
npx claudepluginhub electrified-cortex/skills-plugin --plugin electrified-cortex-skillsShort-circuit repeated Copilot CLI invocations by caching model availability locally. Check-then-probe pattern — HIT (including unavailable) skips CLI re-probe entirely. Triggers - check capability cache, cache model availability, probe copilot models, capability cache hit, capability cache miss.
Tiered code review on a change set. Read-only. Never modifies code. Triggers - security, correctness, code-quality, change-review, architectural-risk. Not for: specs, docs, config-only changes, lockfiles (use spec-auditing or markdown-hygiene).
Compress .md and text files via subagent dispatch. Triggers — compress this file, reduce tokens, shrink instructions, caveman compress, ultra/full/lite compress.
Router — accepts any GitHub Copilot CLI task and dispatches to the correct operation sub-skill. Does not execute copilot commands itself. Triggers - use copilot CLI, copilot command, run copilot, ask copilot, explain with copilot, copilot review.
How to dispatch a sub-agent. Triggers - run in background, spawn subagent, background task, isolated agent execution, dispatch subagent, background agent.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Memory compression system for Claude Code - persist context across sessions
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Frontend design skill for UI/UX implementation
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.
Telegram Bridge MCP skill library — bootstrap any TMCP-enabled agent into an active Telegram session.
Distributes the electrified-cortex/skills
library as a Claude Code plugin. The skills/ tree is pre-built — consumers
get all skills available in-context with no build step required.
For full contract, build inputs, and invariants, see spec.md.
If you've been told "set me up in Claude Code" with this repo URL, run these two commands. No further input required:
claude plugin marketplace add https://github.com/electrified-cortex/skills-plugin
claude plugin install electrified-cortex-skills@electrified-cortex
Skills use the Agent Skills open standard, natively compatible with GitHub Copilot Chat in VS Code.
Project install — copy any skill directory into .github/skills/:
cp -r .claude-plugins/ec-skills/skills/<skill-name> .github/skills/
User-level install — cross-project personal access:
# Linux / macOS
cp -r .claude-plugins/ec-skills/skills/<skill-name> ~/.copilot/skills/
# Windows (PowerShell)
Copy-Item -Recurse .claude-plugins\ec-skills\skills\<skill-name> $HOME\.copilot\skills\
After copying, type /skills in Copilot Chat to confirm the skill appears.
git submodule add https://github.com/electrified-cortex/skills-plugin .claude-plugins/ec-skills
git submodule update --init --recursive
Then reference in your Claude Code project config.
Skills are available at:
<submodule>/skills/<skill-name>/SKILL.md
Example: .claude-plugins/ec-skills/skills/compression/SKILL.md
skills/ tree is pre-built and ready to reference.git submodule update --remote .claude-plugins/ec-skillsskills-plugin/
publish/ # meta-skill: version-bump, changelog, tag, push
build/ # build tooling (Stage 1 crawler)
skills/ # distributed output tree (build output — never edit by hand)
plugin.json # version: mono SemVer
CHANGELOG.md
README.md
spec.md # full contract: inputs, outputs, invariants
plugin.json carries a single version field — the plugin is the unit of release.
Pin by git tag (v<version>) or submodule commit. No per-skill versioning.