CyberdyneDevelopment.Mc3Po.Protocols.Plane 0.1.0-preview.6

This is a prerelease version of CyberdyneDevelopment.Mc3Po.Protocols.Plane.
dotnet add package CyberdyneDevelopment.Mc3Po.Protocols.Plane --version 0.1.0-preview.6
                    
NuGet\Install-Package CyberdyneDevelopment.Mc3Po.Protocols.Plane -Version 0.1.0-preview.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.Plane" Version="0.1.0-preview.6">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CyberdyneDevelopment.Mc3Po.Protocols.Plane" Version="0.1.0-preview.6" />
                    
Directory.Packages.props
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.Plane">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CyberdyneDevelopment.Mc3Po.Protocols.Plane --version 0.1.0-preview.6
                    
#r "nuget: CyberdyneDevelopment.Mc3Po.Protocols.Plane, 0.1.0-preview.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CyberdyneDevelopment.Mc3Po.Protocols.Plane@0.1.0-preview.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.Plane&version=0.1.0-preview.6&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.Plane&version=0.1.0-preview.6&prerelease
                    
Install as a Cake Tool

Mc3Po.Protocols.Plane

Plane project management protocol implementation.

Capabilities

Capability Supported
Project Management Yes
Source Control No

Features

  • Issues (CRUD, comments)
  • Projects (list, create)
  • Cycles/Sprints (CRUD)
  • Modules (CRUD)
  • Labels (CRUD)
  • States (list)

Configuration

{
  "projectManagement": {
    "type": "Plane",
    "baseUrl": "https://plane.example.com",
    "workspace": "my-workspace",
    "project": "my-project",
    "secretName": "plane-api-key"
  }
}
Property Required Description
type Yes Must be "Plane"
baseUrl Yes Plane instance URL
workspace Yes Workspace slug
project No Default project identifier
secretName Yes API key secret name
timeoutSeconds No HTTP timeout (default: 30)

Usage

// Get the Plane protocol
var pmResult = protocolProvider.GetProjectManagement();
var pm = pmResult.Value;

// Create an issue
var result = await pm.CreateIssueAsync(new CreateIssueRequest
{
    ProjectId = "project-uuid",
    Title = "New issue",
    Description = "Issue description"
});

API Reference

This implementation uses the Plane API v1.

Components

  • PlaneProtocol - Protocol implementation
  • PlaneProtocolConfiguration - Configuration class
  • PlaneProtocolFactory - Factory for creating instances
  • PlaneProtocolType - TypeOption for discovery
  • PlaneLog - MessageLogging methods
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CyberdyneDevelopment.Mc3Po.Protocols.Plane:

Package Downloads
CyberdyneDevelopment.DeveloperTools.McpServer

Development tools and utilities for the FractalDataWorks ecosystem. Build:

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-preview.6 82 1/9/2026
0.1.0-preview.4 80 1/7/2026