SlopScore
00 crowd

MoremaidApp (github.com/thieso2/MoremaidApp)

Native macOS Markdown viewer with Mermaid diagram support
Swift · ★ 3 · 0 forks · MIT · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)other
listed 2 hours ago by thieso2 · last checked 2 hours ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-11: a native macOS Markdown viewer with Mermaid diagram support, whose README says "This project is 100% AI-generated.". 3 stars; MIT license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as thieso2. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Native macOS Markdown viewer with Mermaid diagram support
topics
macosmacos-appmarkdownmarkdown-previewmarkdown-viewermermaidmermaid-diagramsnative-appswiftswiftui
created
2026-02-08 · pushed 4 weeks ago · 106 commits · 2 contributors
release
v0.5.7 · 2026-08-01
languages
Swift 97%JavaScript 3%
paperwork
licensereadme 42% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 2 hours ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
other
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
javascriptswift
topic (detected)
macosmacos-appmarkdownmarkdown-previewmarkdown-viewermermaidmermaid-diagramsnative-appswiftswiftui
license (detected)
mit

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: a native macOS Markdown viewer with Mermaid diagram support, whose README says "This project is 100% AI-generated.". It carries the MIT license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README (read the rest on GitHub)

Moremaid

A native macOS Markdown viewer with full Mermaid diagram support.

Browse markdown files with beautifully rendered diagrams, syntax-highlighted code, full-text search, encrypted archives, and 10 color themes.

This project is 100% AI-generated. Every line of code, feature, architectural decision, and this README were created by Claude (Anthropic's AI). The human provided requirements and feedback; Claude handled all programming, debugging, and problem-solving.

Features

Rendering

  • Mermaid diagrams -- flowcharts, sequence diagrams, Gantt charts, state diagrams, ER diagrams, and more
  • Syntax highlighting for 20+ languages via Prism.js
  • Fullscreen diagrams -- click to open any Mermaid diagram in its own window
  • Live reload -- file changes are detected and re-rendered automatically

Themes & Typography

  • 10 color themes -- Light, Dark, GitHub, GitHub Dark, Dracula, Nord, Solarized Light/Dark, Monokai, One Dark
  • 6 typography styles -- Default, GitHub, LaTeX, Tufte, Medium, Compact
  • Theme selector in Preferences
  • System dark mode detection

Search

  • Fuzzy filename search with relevance ranking
  • Full-text content search with context snippets and match highlighting
  • Toggle between modes with TAB
  • Keyboard-driven navigation (/ to focus, arrows to browse, Enter to open)

Archive & Sharing

  • Pack markdown projects into .moremaid archives
  • AES-256 encryption -- optional password protection
  • In-memory browsing -- encrypted files are never written to disk
  • Zero-install viewing -- open .moremaid archives directly in the app

macOS App

  • Multi-window with session restore and tab support
  • Quick Open (Cmd+P) -- fuzzy file finder
  • Search in Files (Cmd+Shift+F) -- content search across all files
  • Activity Feed (Cmd+Shift+A) -- real-time file change tracking via FSEvents
  • QuickLook extension -- preview markdown files directly in Finder
  • Bundled CLI (mm) -- installable to /usr/local/bin
  • Drag & drop -- open files and folders by dropping them on the window
  • Live reload -- watches files for changes and re-renders automatically
  • Breadcrumb navigation and table of contents sidebar

Mermaid Diagram Support

All Mermaid diagram types are supported:

```mermaid
graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Fix it]
    D --> B
```
graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Fix it]
    D --> B
Loading

Click the fullscreen button on any diagram to open it in a dedicated window. Diagrams automatically adapt to the selected color theme.

Architecture

Sources/
├── App/         # Lifecycle, preferences, state persistence
├── FileBrowser/ # Directory view, WebView, TOC, tabs, search
├── Rendering/   # HTMLGenerator, themes, page scripts
├── Search/      # Fuzzy matcher, content search
├── Archive/     # ZIP virtual filesystem, LRU cache
├── FileWatcher/ # FSEvents file monitoring
├── Shared/      # Models, constants, utilities
└── Validation/  # Mermaid syntax checking
CLI/             # Bundled `mm` command-line tool
QuickLook/       # Finder QuickLook extension

Built with SwiftUI and WebKit. HTMLGenerator produces inline HTML with markdown-it, Prism.js, and Mermaid.js rendered through WKWebView.

Open-Source Libraries

Moremaid is built on top of excellent open-source projects:

Rendering (loaded via CDN)

Library Purpose License
markdown-it Fast Markdown parser (CommonMark) MIT
Mermaid Diagrams and flowcharts from text MIT
Prism.js Syntax highlighting for 200+ languages MIT
MiniSearch Tiny full-text search engine MIT

Native Dependencies

Library Purpose License
ZIPFoundation Pure Swift ZIP archive handling MIT

Requirements

  • macOS 15.0+ (Sequoia)
  • Built with Swift 6, SwiftUI, and WebKit

Installation

Homebrew

brew tap thieso2/tap
brew install --cask moremaidapp

From source

Requires Tuist and mise:

git clone https://github.com/thieso2/MoremaidApp.git
cd MoremaidApp
mise build      # build the app
mise run        # build and launch
mise test       # run unit tests

Troubleshooting

macOS app shows stale content -- Don't use open Moremaid.app; use mise run or mise debug instead (macOS caches old binaries via LaunchServices).

Contributing

Contributions are welcome! Open an issue or submit a pull request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Run tests (mise test)
  4. Commit and push
  5. Open a Pull Request

License

MIT -- Copyright (c) 2026 Thies C. Arntzen


Built with Claude | Powered by markdown-it, Mermaid, and Prism.js

Scan report · 2026-09-11
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report