One-click install
npx skills add https://github.com/jangtrinh/demo-Lam --skill ck-plans-kanban-jangtrinh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ck:plans-kanban
Source: https://github.com/jangtrinh/demo-Lam/tree/main/.claude/skills/plans-kanban
Command: npx skills add https://github.com/jangtrinh/demo-Lam --skill ck-plans-kanban-jangtrinh

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gray-matter, and includes scripts (resource) and assets (resource) components.

What problem does it solve?

It helps you turn a folder of plan.md files into a clear, always-up-to-date dashboard so you can see status, progress, and timelines without manually opening each plan.

Core Features & Use Cases

  • Progress-aware Kanban dashboard: Shows plans grouped by status with progress bars and key metadata for quick triage.
  • Timeline/Gantt visualization: Renders a layered timeline so overlapping plan durations stay readable while still exposing completion/in-progress windows.
  • Plan detail reading: Links each plan card/bar to a rendered markdown view with previous/next navigation context.

Quick Start

Use the plans-kanban server with your plans root directory by running: node .claude/skills/plans-kanban/scripts/server.cjs --dir ./plans --open.

Frequently Asked Questions about ck:plans-kanban

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

FAQPage Schema
How do I visualize plan progress from markdown files in a Kanban dashboard?

To visualize plan progress from markdown files, this Skill scans a directory for plan.md files, aggregates phase table data, and renders an interactive Kanban dashboard with progress bars and status groupings.

Can I generate a Gantt timeline visualization from markdown plans?

Yes, you can generate a Gantt timeline visualization from markdown plans. The Skill renders a layered timeline view so overlapping plan durations remain readable while exposing completion and in-progress milestone windows.

Do I need to install npm dependencies to track project status with markdown?

Yes, you need to install the npm dependency gray-matter to track project status. It is required to parse frontmatter metadata from your plan.md files before rendering the dashboard views.

What is the best way to aggregate progress across multiple plan folders?

The best way to aggregate progress across multiple plan folders is using recursive directory scanning. The Skill extracts phase table data from each plan.md file and aggregates completion metrics into a unified dashboard interface.

Does the plans dashboard support rendering markdown content with safe path handling?

Yes, the plans dashboard supports rendering markdown content with safe path handling. It serves a /view route that safely resolves file paths and renders the markdown with previous and next navigation context.