Download the PHP package non-convex-labs/laravel-commonplace without Composer
On this page you can find all versions of the php package non-convex-labs/laravel-commonplace. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download non-convex-labs/laravel-commonplace
More information about non-convex-labs/laravel-commonplace
Files in non-convex-labs/laravel-commonplace
Package laravel-commonplace
Short Description A personal markdown knowledge vault for Laravel — wikilinks, version history, semantic search, and MCP for Claude Code.
License MIT
Homepage https://github.com/non-convex-labs/laravel-commonplace
Informations about the package laravel-commonplace
laravel-commonplace
A database-backed personal knowledge vault for Laravel. You get wikilinks, version history, semantic search, and an MCP server so Claude Code, Cursor, and Zed can read and write your notes. Same database as your app, same auth, same backup.
Quick look
Notes are Eloquent models. The Commonplace facade owns the writes, the wikilink graph, and search:
Set COMMONPLACE_MCP_ENABLED=true and the same vault is reachable to any MCP-compatible AI client, scoped to the authenticated user.
What's in a name?
A commonplace book is a personal notebook for copying down quotes, ideas, observations, and references so you can find them again later. Marcus Aurelius kept one. So did Locke, Jefferson, and a long list of readers and thinkers who needed somewhere to put the bits worth keeping. This package is the same idea, scoped to a single user inside your Laravel app and backed by your database instead of a leather-bound notebook.
For more on the practice itself, see Journal like a Renaissance Philosopher by ParkNotes (Parker Settecase).
Install
Full setup lives in docs/. That covers migrations, trait wiring, embedding driver, and MCP transport.
Why a database vault, not a folder of .md files?
Most knowledge-vault tools are standalone apps backed by a folder of files. Sync, plugins, and auth get bolted on after the fact. This package flips that around. Notes are rows in your existing Laravel database. They're queryable by SQL, transactional, joinable, and gated by whichever guard your app already runs. You don't host a second silo, you don't run a file watcher, you don't manage separate API keys, and you don't hit "vault opened in another window" races.
See docs/design.md for the full comparison against Obsidian, Logseq, Foam, and Dendron, plus the tradeoffs that come with it.
Status
Pre-1.0. APIs may shift between minor versions until 1.0 ships.
License
MIT. See LICENSE.
All versions of laravel-commonplace with dependencies
elgigi/commonmark-emoji Version ^2.0
illuminate/contracts Version ^13.0
laravel/mcp Version ^0.7.0
league/commonmark Version ^2.8
spatie/laravel-package-tools Version ^1.16
symfony/yaml Version ^8.0
tempest/highlight Version ^2.17