CyberdyneDevelopment.Mc3Po.Protocols.Abstractions
0.1.0-preview.6
dotnet add package CyberdyneDevelopment.Mc3Po.Protocols.Abstractions --version 0.1.0-preview.6
NuGet\Install-Package CyberdyneDevelopment.Mc3Po.Protocols.Abstractions -Version 0.1.0-preview.6
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.Abstractions" Version="0.1.0-preview.6" />
<PackageVersion Include="CyberdyneDevelopment.Mc3Po.Protocols.Abstractions" Version="0.1.0-preview.6" />
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.Abstractions" />
paket add CyberdyneDevelopment.Mc3Po.Protocols.Abstractions --version 0.1.0-preview.6
#r "nuget: CyberdyneDevelopment.Mc3Po.Protocols.Abstractions, 0.1.0-preview.6"
#:package CyberdyneDevelopment.Mc3Po.Protocols.Abstractions@0.1.0-preview.6
#addin nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.Abstractions&version=0.1.0-preview.6&prerelease
#tool nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.Abstractions&version=0.1.0-preview.6&prerelease
Mc3Po.Protocols.Abstractions
Core protocol interfaces for MC3-PO. This package defines the contracts that all protocol implementations must follow.
Interfaces
IProtocol
Base interface for all protocols:
public interface IProtocol : IDisposable, IAsyncDisposable
{
string ProtocolName { get; }
ProtocolExecutionMode ExecutionMode { get; }
bool IsConnected { get; }
Task<IGenericResult> ConnectAsync(CancellationToken ct = default);
Task<IGenericResult> DisconnectAsync(CancellationToken ct = default);
}
IProjectManagementProtocol
For project management services (issues, sprints, boards):
public interface IProjectManagementProtocol : IProtocol, IProjectManagementService
{
// Inherits from both IProtocol and IProjectManagementService
}
Implemented by: Plane, GitLab (Issues), GitHub (Issues/Projects), Azure DevOps (Work Items)
ISourceControlProtocol
For source control services (repos, PRs, pipelines):
public interface ISourceControlProtocol : IProtocol, ISourceControlService
{
// Inherits from both IProtocol and ISourceControlService
}
Implemented by: GitLab, GitHub, Azure DevOps (Repos), Bitbucket
IProtocolConfiguration
Base configuration interface:
public interface IProtocolConfiguration
{
Guid Id { get; set; }
string Name { get; set; }
string ProtocolType { get; set; }
ProtocolExecutionMode ExecutionMode { get; set; }
string? SecretManagerName { get; set; }
string? SecretKeyName { get; set; }
bool IsEnabled { get; set; }
}
IProtocolCreationContext
Scoped dependencies for protocol creation:
public interface IProtocolCreationContext
{
ILoggerFactory LoggerFactory { get; }
ISecretManagerProvider? SecretManagerProvider { get; }
}
Enums
ProtocolExecutionMode
public enum ProtocolExecutionMode
{
DirectApi, // Direct HTTP API calls
McpDelegate // Delegate to another MCP server
}
Dependencies
Mc3Po.ProjectManagement.AbstractionsMc3Po.SourceControl.AbstractionsFractalDataWorks.ResultsFractalDataWorks.Collections
Usage
Protocol implementations reference this package and implement the interfaces:
public sealed class PlaneProtocol : IProjectManagementProtocol
{
// Implementation
}
See Adding New Protocols for implementation guide.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- CyberdyneDevelopment.Mc3Po.ProjectManagement.Abstractions (>= 0.1.0-preview.6)
- CyberdyneDevelopment.Mc3Po.SourceControl.Abstractions (>= 0.1.0-preview.6)
- FractalDataWorks.Collections (>= 0.1.0-preview.1)
- FractalDataWorks.MessageLogging.Abstractions (>= 0.1.0-preview.1)
- FractalDataWorks.Results (>= 0.1.0-preview.1)
- FractalDataWorks.Services.SecretManagers.Abstractions (>= 0.1.0-preview.1)
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.1)
- System.Collections.Immutable (>= 10.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CyberdyneDevelopment.Mc3Po.Protocols.Abstractions:
| Package | Downloads |
|---|---|
|
CyberdyneDevelopment.Mc3Po.Protocols
Protocol infrastructure for mc3-po - base classes, provider, and ServiceType integration |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0-preview.6 | 61 | 1/9/2026 |
| 0.1.0-preview.4 | 75 | 1/7/2026 |