A TUI CMS and MCP Server for my personal code snippets
Find a file
2025-06-11 09:42:57 +02:00
.zed call backend to create snippt 2025-06-08 13:12:13 +02:00
src/cli_cms add view command and color test 2025-06-11 09:42:57 +02:00
.gitignore init project 2025-06-07 17:32:35 +02:00
bb.edn init project 2025-06-07 17:32:35 +02:00
config.edn get sending edit patch to backend working 2025-06-10 15:13:23 +02:00
LICENSE.md init project 2025-06-07 17:32:35 +02:00
README.md call backend to create snippt 2025-06-08 13:12:13 +02:00

Snippets CLI CMS

A simple command-line interface for managing my code snippets.

Written in Clojure via Babashka.

Interactive elements are powered by Gum.

Run dev

To run commands:

$ bb -m cli-cms.main create

Or to play around and call individual functions using the REPL:

$ bb
user=> (require '[cli-cms.create :as command])
user=> (def mock-snippet {:title "mock snippet from repl" :slug "mock" :tags '("mock") :markdown "# This is a mock"})
#'user/mock-snippet
user=> (command/create-snippet mock-snippet)