diff --git a/FEATURE_MATRIX.md b/FEATURE_MATRIX.md
index d657eb635a19..441a88d739ab 100644
--- a/FEATURE_MATRIX.md
+++ b/FEATURE_MATRIX.md
@@ -2,7 +2,7 @@
## AI Services
| | C# | Python | Notes |
-|---|---|---|---|
+|---|---|---|---|
| TextGeneration | ✅ | ✅ | Example: Text-Davinci-003 |
| TextEmbeddings | ✅ | ✅ | Example: Text-Embeddings-Ada-002 |
| ChatCompletion | ✅ | ❌ | Example: GPT4, Chat-GPT |
@@ -10,35 +10,40 @@
## AI Service Endpoints
| | C# | Python | Notes |
-|---|---|---|---|
+|---|---|---|---|
| OpenAI | ✅ | ✅ | |
| AzureOpenAI | ✅ | ✅ | |
-| Hugging Face | ✅ | ❌ | Coming soon to Python - both native and web endpoint support |
+| Hugging Face | ✅ | ❌ | Coming soon to Python - both native and web endpoint support |
| Custom | ✅ | ❌ | Requires the user to define the service schema in their application |
## Tokenizers
| | C# | Python | Notes |
-|---|---|---|---|
+|---|---|---|---|
| GPT2 | ✅ | 🔄 | Can be manually added to Python via `pip install transformers` |
-| GPT3 | ✅ | ❌ | |
-| tiktoken | 🔄 | ❌ | Coming soon to Python and C#. Can be manually added to Python via `pip install tiktoken` |
+| GPT3 | ✅ | ❌ | |
+| tiktoken | 🔄 | ❌ | Coming soon to Python and C#. Can be manually added to Python via `pip install tiktoken` |
## Core Skills
| | C# | Python | Notes |
-|---|---|---|---|
+|---|---|---|---|
| TextMemorySkill | ✅ | ✅ | |
-| PlannerSkill | ✅ | 🔄 | |
-| ConversationSummarySkill | ✅ | ❌ | |
+| ConversationSummarySkill | ✅ | ❌ | |
| FileIOSkill | ✅ | ✅ | |
| HttpSkill | ✅ | ❌ | |
| MathSkill | ✅ | ❌ | |
| TextSkill | ✅ | ✅ | |
| TimeSkill | ✅ | ✅ | |
-## Connectors and Skill Libraries
+## Planning
| | C# | Python | Notes |
-|---|---|---|---|
-| Qdrant (Memory) | ✅ | ❌ | Vector optimized |
+|---|---|---|---|
+| Plan | ✅ | ❌ | |
+| SequentialPlanner | ✅ | ❌ | |
+
+## Connectors and Skill Libraries
+| | C# | Python | Notes |
+|---|---|---|---|
+| Qdrant (Memory) | ✅ | ❌ | Vector optimized |
| ChromaDb (Memory) | ❌ | 🔄 | |
| Milvus (Memory) | ❌ | ❌ | Vector optimized |
| Pinecone (Memory) | ❌ | ❌ | Vector optimized |
diff --git a/dotnet/Directory.Packages.props b/dotnet/Directory.Packages.props
index eea4f25e77e3..1dbd651e0ab0 100644
--- a/dotnet/Directory.Packages.props
+++ b/dotnet/Directory.Packages.props
@@ -9,26 +9,26 @@
-
+
-
+
-
+
-
+
diff --git a/dotnet/src/SemanticKernel.Abstractions/SemanticKernel.Abstractions.csproj b/dotnet/src/SemanticKernel.Abstractions/SemanticKernel.Abstractions.csproj
index cb6ad42ddf88..8361049cdd46 100644
--- a/dotnet/src/SemanticKernel.Abstractions/SemanticKernel.Abstractions.csproj
+++ b/dotnet/src/SemanticKernel.Abstractions/SemanticKernel.Abstractions.csproj
@@ -26,6 +26,9 @@
<_Parameter1>Microsoft.SemanticKernel.Core
+
+ <_Parameter1>Microsoft.SemanticKernel
+
<_Parameter1>Microsoft.SemanticKernel.Connectors.AI.OpenAI
diff --git a/dotnet/src/SemanticKernel.IntegrationTests/CoreSkills/PlannerSkillTests.cs b/dotnet/src/SemanticKernel.IntegrationTests/CoreSkills/PlannerSkillTests.cs
deleted file mode 100644
index 574e37969b46..000000000000
--- a/dotnet/src/SemanticKernel.IntegrationTests/CoreSkills/PlannerSkillTests.cs
+++ /dev/null
@@ -1,267 +0,0 @@
-// Copyright (c) Microsoft. All rights reserved.
-
-using System;
-using System.Collections.Generic;
-using System.Globalization;
-using System.Text.RegularExpressions;
-using System.Threading.Tasks;
-using Microsoft.Extensions.Configuration;
-using Microsoft.Extensions.Logging;
-using Microsoft.SemanticKernel;
-using Microsoft.SemanticKernel.CoreSkills;
-using Microsoft.SemanticKernel.Memory;
-using Microsoft.SemanticKernel.Orchestration;
-using Microsoft.SemanticKernel.Planning;
-using SemanticKernel.IntegrationTests.Fakes;
-using SemanticKernel.IntegrationTests.TestSettings;
-using Xunit;
-using Xunit.Abstractions;
-
-namespace SemanticKernel.IntegrationTests.CoreSkills;
-
-public sealed class PlannerSkillTests : IDisposable
-{
- public PlannerSkillTests(ITestOutputHelper output)
- {
- this._logger = new XunitLogger