- Get-NozNote: list notes, filter by -Topic, -Status, -Lang - Get-NozNoteContent: fetch markdown, accepts pipeline input by Slug - Set-NozNote: update note content, accepts markdown from pipeline - New-NozNote: create note with frontmatter template - Remove-NozNote: delete note, ShouldProcess + ConfirmImpact.High for safety - NozNote output object: clean PS-friendly properties (no internal Hash field) - NozCmdletBase: shared config loading, API client lifecycle, error translation - Noz.psd1: module manifest for PS 7.2+ - Install-NozModule.ps1: build + install to user module path - NozCli.Core retargeted to net8.0 for PS 7.4 LTS compatibility
26 lines
710 B
PowerShell
26 lines
710 B
PowerShell
@{
|
|
ModuleVersion = '0.1.0'
|
|
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
|
|
Author = 'Bruno Deanoz'
|
|
Description = 'PowerShell module for noz — a self-hosted digital garden'
|
|
PowerShellVersion = '7.2'
|
|
RootModule = 'Noz.PowerShell.dll'
|
|
|
|
CmdletsToExport = @(
|
|
'Get-NozNote',
|
|
'Get-NozNoteContent',
|
|
'Set-NozNote',
|
|
'New-NozNote',
|
|
'Remove-NozNote'
|
|
)
|
|
|
|
FunctionsToExport = @()
|
|
AliasesToExport = @()
|
|
|
|
PrivateData = @{
|
|
PSData = @{
|
|
Tags = @('noz', 'digital-garden', 'notes', 'markdown')
|
|
ProjectUri = 'https://git.kryptomrx.de/krypto/noz-cli'
|
|
}
|
|
}
|
|
}
|