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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
m0lz.01: Does it make sense to me?
Jacob Molz · 2026-05-12 · via DEV Community

Does it make sense to me?

That is the bar I wanted for m0lz.01.

I do not need another content calendar, another notes app, or another agent that says it can publish while leaving the real work scattered across terminals, drafts, browser tabs, and half-finished checklists. I wanted one local system that could take an idea, turn it into research, draft the post, challenge the argument, publish to my site, and prepare the distribution work without pretending the risky parts are magic.

m0lz.01 is that system. It is a standalone blog CLI with Codex and Claude authoring surfaces over the same SQLite state and file artifacts. The CLI owns the mechanical work. Codex and Claude help plan, write, review, and operate it.

The important part is not that it can write. The important part is that the system leaves me with a workflow I can inspect.

The Shape

The pipeline has six working phases: ideas, research, benchmark, draft, evaluate, and publish. published is the successful terminal state. unpublished is a rollback state that keeps the slug reserved because the canonical URL is permanent.

The hub is this site. Every post lands at https://m0lz.dev/writing/<slug>. Cross-posts point their canonical URL back here. Project repos and research pages are spokes around the hub, not competing sources of truth.

The CLI stores state in .blog-agent/state.db and writes phase artifacts next to it:

  • research notes
  • benchmark results
  • MDX drafts
  • evaluation reports
  • generated research pages
  • social paste files
  • publish receipts

That sounds boring because it should. The durable value is not an agent personality. It is state that survives the chat window.

Codex First, Not Claude Only

The first version of this story over-indexed on the /blog Claude surface because that was the first polished interactive path. That is no longer the full picture.

The truth is simpler: m0lz.01 is a local CLI first. Codex is now a first-class way I work on and operate the system. This repo has Codex command wrappers under .codex/commands/* and migrated source-command skills under .agents/skills/source-command-*. Claude Code still has the packaged .claude-plugin/ /blog skill, and that plugin ships in the npm tarball.

Those are two clients over the same CLI boundary. Neither one gets to be the database. Neither one gets to be the publishing system. They propose work, inspect files, draft text, run checks, and hand off state changes to blog.

That distinction matters. If I am writing from Codex, I can run the same plan and evaluation discipline I use for code changes. If I am in Claude Code, I can use the packaged /blog flow. The content pipeline does not care which assistant helped produce the next approved step.

One Prompt Still Does Not Mean No Judgment

The pleasant demo is: ask for a launch post, get a published post.

The actual workflow is stricter. The authoring layer proposes a plan. The CLI validates that the plan is made of registered leaf commands. The operator approves it. blog agent apply executes the approved steps and writes a receipt.

For a project launch, the work is roughly:

blog research init m0lz-01-launch --topic "m0lz.01 launch"
blog research finalize m0lz-01-launch
blog benchmark skip m0lz-01-launch
blog draft init m0lz-01-launch
blog draft complete m0lz-01-launch
blog evaluate init m0lz-01-launch
blog evaluate structural-autocheck m0lz-01-launch
blog evaluate record m0lz-01-launch structural structural.json
blog evaluate record m0lz-01-launch adversarial adversarial.json
blog evaluate record m0lz-01-launch methodology methodology.json
blog evaluate synthesize m0lz-01-launch
blog evaluate complete m0lz-01-launch
blog publish start m0lz-01-launch

Enter fullscreen mode Exit fullscreen mode

The plan path wraps those commands with a hash gate. Approval records a SHA256 hash of the canonical plan payload. If the plan changes after approval, verify and apply reject it with HASH_MISMATCH.

That gate is useful, but it is not a sandbox. The authoring surface can still ask to run blog commands. A human at the terminal can still bypass the plan system. The model is cooperative: a cooperative author, a cooperative assistant, and a CLI that makes the approved path hard to accidentally drift from.

Evaluation Is Where the System Earns Its Keep

I do not trust first drafts. I trust pressure.

m0lz.01 runs a three-reviewer panel:

  • Structural review checks the content shape, MDX contract, sources, and publish readiness.
  • Adversarial review uses Codex GPT-5.5 high to argue against the thesis.
  • Methodology review uses Codex GPT-5.5 xhigh for benchmark validity, reproducibility, and evidence claims.

The synthesis step groups findings into consensus, majority, and single-reviewer issues. Consensus and majority issues block. Autocheck findings block. Single-reviewer issues can be advisory, but I rejected several algorithmic passes while dogfooding this post because serious findings were landing as single-reviewer advisories.

That is useful signal. The system did not merely produce a green check. It made the weakness visible enough for me to refuse the result.

What Ships Automatically

The publish pipeline is checkpointed. If step five fails, the next blog publish start <slug> resumes from step five. Each step is designed to be idempotent.

The pipeline can:

  • create or update the canonical MDX in the hub repo
  • generate the research companion page
  • pause for the site pull request gate
  • create a Dev.to draft with published: false
  • attach the canonical URL to the Dev.to draft
  • prepare paste-ready Medium, Substack, LinkedIn, and Hacker News text
  • update companion repo links when a project repo exists

Dev.to is the one API cross-post path I am willing to automate right now. Medium, Substack, LinkedIn, and Hacker News remain paste-ready outputs because the manual review step is still useful and the APIs are not worth binding into the publish path yet.

What It Does Not Bind Yet

The plan hash does not bind .blogrc.yaml. If the workspace config changes between approval and apply, the plan hash does not catch it. The plan displays venues as operator-facing mitigation, but config-hash binding is still future work.

The SQLite database is local state, not protected state. Back it up before upgrades if a workspace matters.

The lock is slug-scoped and cooperative. It prevents two applies for the same slug from running at once. It does not defend against arbitrary filesystem edits inside .blog-agent/.

Those limitations do not make the system useless. They define the boundary. m0lz.01 is not a general-purpose secure agent runtime. It is a local publishing workflow with receipts, phase gates, and enough friction to keep me from shipping whatever the assistant wrote first.

Install

Install the CLI globally and verify that the binary resolves:

npm install -g m0lz-01
blog --help

Enter fullscreen mode Exit fullscreen mode

Create a dedicated workspace outside your project repos:

mkdir -p ~/blog
cd ~/blog
blog init

Enter fullscreen mode Exit fullscreen mode

Edit .blogrc.yaml with your hub site repo, base URL, content directories, author handles, and optional project map. Then edit .env with DEVTO_API_KEY if Dev.to publishing is enabled.

Use Codex from the m0lz.01 repo when you want the local command-wrapper workflow:

.codex/commands/prime.md
.codex/commands/plan-feature.md <topic>
.codex/commands/execute.md <plan-file>
.codex/commands/evaluate.md <plan-file>

Enter fullscreen mode Exit fullscreen mode

Use the packaged Claude Code plugin when you want the /blog skill:

claude --plugin-dir "$(npm root -g)/m0lz-01/.claude-plugin"

Enter fullscreen mode Exit fullscreen mode

Then start with the real question:

/blog launch a new project

Enter fullscreen mode Exit fullscreen mode

Source is at github.com/jmolz/m0lz.01. The repo includes the CLI, the packaged Claude plugin, the Codex command wrappers, and the regression tests that keep the publishing path honest.