JD.SemanticKernel.Extensions banner
JerrettDavis JerrettDavis

JD.SemanticKernel.Extensions

Development community

Description

Semantic Kernel extensions for Claude Code skills, hooks, context compaction, and semantic memory.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

JD.SemanticKernel.Extensions

[![CI](https://github.com/JerrettDavis/JD.SemanticKernel.Extensions/actions/workflows/ci.yml/badge.svg)](https://github.com/JerrettDavis/JD.SemanticKernel.Extensions/actions/workflows/ci.yml) [![NuGet](https://img.shields.io/nuget/v/JD.SemanticKernel.Extensions.svg)](https://www.nuget.org/packages/JD.SemanticKernel.Extensions) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

An extensible toolkit for [Microsoft Semantic Kernel](https://github.com/microsoft/semantic-kernel) that bridges **Claude Code skills, plugins, and hooks** into SK applications, and adds **context management primitives** (compaction, semantic memory) for building production-grade AI agents.

Features

  • 📝 Skills — Parse SKILL.md files (YAML frontmatter + markdown) into KernelFunction or PromptTemplate
  • 🔗 Hooks — Map Claude Code lifecycle events (PreToolUse, PostToolUse, etc.) to SK's IFunctionInvocationFilter and IPromptRenderFilter
  • 📦 Plugins — Load .claude-plugin/ directories with skills, hooks, and MCP configs
  • 🔌 MCP — Discover MCP servers from Claude Code, Claude Desktop, VS Code, Codex, Copilot, and JD canonical config with a PatternKit-backed provider chain
  • 🗜️ Compaction — Transparent context window management with configurable triggers and hierarchical summarization
  • 🧠 Memory — Semantic memory with MMR reranking, temporal decay scoring, and query expansion
  • 💾 Memory.Sqlite — SQLite-backed persistent memory storage
  • 🎯 Fluent APIUseSkills(), UseHooks(), UsePlugins(), AddCompaction(), AddSemanticMemory() extension methods

Packages

Package Description NuGet
JD.SemanticKernel.Extensions.Skills SKILL.md → KernelFunction/PromptTemplate ![NuGet](https://img.shields.io/nuget/v/JD.SemanticKernel.Extensions.Skills.svg)
`JD.SemanticKernel.Extensions.Ho