# Mk Plans Kanban

> Open the MyKit plans dashboard in the CLI config UI. Use for plan kanban views, progress tracking, timeline checks, and quick navigation into plan files.

- Skill: `phuc-nt/mk-plans-kanban` (Agent Skill, multi-file: 7 files)
- Install (CLI): `npx skillmds@latest add phuc-nt/mk-plans-kanban`
- Raw SKILL.md: https://api.skillmd.com/api/skills/phuc-nt/mk-plans-kanban/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: phuc-nt (https://skillmd.com/u/phuc-nt)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/phuc-nt/mk-plans-kanban

---


# plans-kanban

Thin launcher for the MyKit CLI dashboard plans view.

It opens the integrated dashboard at `http://localhost:3456/plans` instead of starting the legacy standalone server.
If `3456` is already in use, the CLI may auto-fallback to `3457-3460` and the launcher will follow that running port.

## Quick Start

```bash
node .claude/skills/plans-kanban/scripts/open-dashboard.cjs
```

If the dashboard is not already running, the launcher starts:

```bash
mk config ui --port 3456 --no-open
```

Then it opens the plans route in your browser.

## Purpose

Use this skill when you want the visual plans dashboard for:
- Multi-plan kanban and grid views
- Timeline and progress overview
- Navigating into `plan.md` and `phase-*.md` files
- Quick visibility into active vs completed work

Scope note:
- Project dashboards should show project-scoped plans only.
- Global dashboards should show global-scoped plans only.
- Use `mk plan status` as the authoritative dependency/status view for `blockedBy` / `blocks`; `plans-kanban` is a launcher, not the source of cross-scope dependency truth.
- The generic `/plans` route defaults to `plans` unless a `dir` query param is already present; scope-aware plan roots come from the project/global dashboard context, not from deprecated launcher flags.

## Dashboard Workflow

```bash
# Open the plans dashboard
node .claude/skills/plans-kanban/scripts/open-dashboard.cjs

# Run the dashboard manually if you want to keep it in the foreground
mk config ui --port 3456
```

Primary URL:

```text
http://localhost:3456/plans
```

## Deprecated Compatibility

The old standalone server flags are accepted for compatibility and replaced with guidance:

| Legacy input | Current behavior |
|-------------|------------------|
| `--dir <path>` / positional path | Warns and ignores. This launcher always opens the generic `/plans` route; it does not choose a custom plan root. |
| `--plans <path>` | Warns and ignores. |
| `--port <n>` | Warns and ignores. `plans-kanban` now targets the CLI dashboard starting at `3456` and follows the CLI fallback port if needed. |
| `--host <addr>` | Warns and ignores. Use `mk config ui --host ...` directly if needed. |
| `--background` / `--foreground` | Warns and ignores. The launcher manages its own detached startup flow. |
| `--stop` | Stops the launcher-managed dashboard process if one was started by `plans-kanban`; otherwise prints manual shutdown guidance. |
| `--open` | Accepted. Opening is now the default behavior. |

## Related CLI Commands

```bash
mk config ui                    # Start dashboard
mk config ui --port 3456        # Start on the plans-kanban default port
mk plan status <plan.md>        # Inspect plan progress from CLI
cd /absolute/path/to/plan-dir && mk plan check 1
cd /absolute/path/to/plan-dir && mk plan check 1 --start
cd /absolute/path/to/plan-dir && mk plan uncheck 1
```

## Requirements

### CLI Compatibility

The launcher performs a capability probe before opening the browser.
The dashboard at `/plans` is only opened when the running my-kit-cli instance supports it — detected by either:

- `/api/health` response containing `"plans-dashboard"` in its `features` array, or
- `/api/plans` responding with a 2xx status (backward-compat for early dev builds).

If neither probe succeeds, the launcher prints an upgrade message and exits with code 1 without opening the browser. Upgrade the CLI to a version that exposes the plans-dashboard capability to use this launcher.

## Migration Notes

The legacy standalone server, renderer, and assets have been retired from this skill.

For migration details:

```text
.claude/skills/plans-kanban/deprecated/MIGRATION.md
```

## Troubleshooting

**`mk` not found**
Install the MyKit CLI and confirm `mk --version` works in your shell.

**Dashboard did not open**
Start it manually with `mk config ui --port 3456`, then open `/plans` on whichever port the CLI reports.

**Need to stop a launcher-started dashboard**
Run the launcher again with `--stop`. If the dashboard was started manually, stop the terminal running `mk config ui`.

**Need custom host or different port**
Run `mk config ui` directly with the flags you need. The `plans-kanban` launcher intentionally stays thin and opinionated.

