kanban-storage-plugin-author

Generate a kanban-lite storage plugin package scaffold with TypeScript/CommonJS build.

5|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/borgius/kanban-lite --skill kanban-storage-plugin-author
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: kanban-storage-plugin-author
Source: https://github.com/borgius/kanban-lite/tree/main/.agents/skills/kanban-storage-plugin-author
Command: npx skills add https://github.com/borgius/kanban-lite --skill kanban-storage-plugin-author

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scaffold a real, installable kanban-lite storage plugin package scaffold that exports cardStoragePlugin (and optionally attachmentStoragePlugin) with a runnable TypeScript/CommonJS build and clear plugin contracts.

Core Features & Use Cases

  • Scaffold a production-ready plugin package with package.json, tsconfig.json, src/index.ts, and README.md.
  • Export the required plugin surfaces (cardStoragePlugin; optionally attachmentStoragePlugin) and a pluginManifest for fast discovery.
  • Provide guidance for building tests, wiring to .kanban.json, and lazy-loading or runtime considerations.

Quick Start

Provide your backend details, then run the scaffold tool to generate a new package directory.

Frequently Asked Questions about kanban-storage-plugin-author

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a kanban-lite storage plugin package?▼

To scaffold a kanban-lite storage plugin package, use this tool to generate a standalone directory with package.json, tsconfig.json, src/index.ts, and README.md, ready for npm publish.

What is a kanban-lite storage plugin and when do I need one?▼

A kanban-lite storage plugin defines interfaces for card storage or attachment storage. You need one when building new providers to persist kanban cards or attachments in a custom backend.

How do I wire a custom storage plugin into .kanban.json?▼

You wire a custom storage plugin into .kanban.json by configuring the generated package as a dependency and referencing the exported cardStoragePlugin or attachmentStoragePlugin in the settings.

Does the scaffolded kanban storage plugin support TypeScript and CommonJS builds?▼

Yes, the scaffolded kanban storage plugin supports TypeScript and CommonJS builds, providing a compileable output with dist/index.cjs and proper exports for runnable integration.

Can I include tests and lazy-loading considerations in the generated storage plugin?▼

Yes, you can include optional tests in the generated storage plugin package. The scaffold also enforces a pluginManifest and provides guidance on lazy-loading runtime considerations.