惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
量子位
GbyAI
GbyAI
腾讯CDC
T
Tailwind CSS Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
Docker
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
Jina AI
Jina AI
IT之家
IT之家
Y
Y Combinator Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - Vochsel/kanban-cli: One line ui for markdown kan...
vochsel · 2026-05-05 · via Hacker News: Show HN

npm version

kanban-cli is a tiny Bun-powered CLI that turns a markdown file into a local Trello-style kanban board.

npx kanban-cli@latest board.md

The browser UI runs on localhost, supports drag and drop across columns, writes every edit back to the markdown file, and reloads when the file changes on disk. If the markdown file does not exist, kanban-cli creates a starter board and opens it.

Run it

The fastest path is no install at all:

npx kanban-cli@latest board.md

If you use Bun:

bunx kanban-cli@latest board.md

If you'd rather have it on your PATH as kb, install globally:

npm install -g kanban-cli
kb board.md

Or run straight from a checkout (handy for hacking on the CLI itself):

bun install
bun run dev          # uses ./examples/basic.md
bun run dev path.md  # or pass any markdown file

Requires Bun 1.3 or newer at runtime (the published binary is built with Bun and npx/bunx will fetch it on demand).

Markdown format

Headings become columns. Checkbox list items become cards. The first colon separates the title from the description.

# Todo
- [ ] Add CLI: serve a local board
- [ ] Polish UI: make the board feel good

# Doing
- [ ] Wire npm publish: add NPM_TOKEN in GitHub

# Done
- [x] Create markdown board: headings become columns

kanban-cli writes a canonical markdown format so changes are easy to review in git.

CLI

kb <board.md> [options]

Options:

  • -p, --port <port>: port to bind, default 4177.
  • --host <host>: host to bind, default 127.0.0.1.
  • --no-open: start the server without opening a browser.
  • --open: open a browser after starting, enabled by default.
  • -v, --version: print the package version.
  • -h, --help: show help.

If the markdown file does not exist, kanban-cli creates a starter board.

Development

bun install
bun run typecheck
bun test
bun run build
bun run dev

The published CLI is bundled into dist/cli.js. Bun serves the local API and browser app from the CLI process.

Publishing

The repository includes GitHub Actions for CI and npm publishing:

  • .github/workflows/ci.yml runs typecheck, tests, and the CLI build on pushes and pull requests.
  • .github/workflows/publish.yml publishes to npm when a GitHub release is published or the workflow is run manually.

To publish:

  1. Add an npm automation token as the NPM_TOKEN repository secret.
  2. Update the version in package.json.
  3. Create and publish a GitHub release.

License

Apache-2.0