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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
博客园_首页
爱范儿
爱范儿
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
Y
Y Combinator Blog
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
月光博客
月光博客
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans

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
I built a landing page for my CLI tool! and used the CLI ...
Dev For · 2026-04-26 · via DEV Community

I built a landing page for my own CLI tool, and I ended up using the CLI itself to keep everything organized. Felt worth sharing.

Last week I made Progflow, a workspace manager for Linux and Termux. You give it a project and it opens your editor, opens URLs, sets environment variables, all in one command. I'd been using it for my other stuff but hadn't really put it through its paces on a single focused project. Last week I decided to make a simple site for the tool, so I dogfooded it.

I opened a terminal, created a flow called "site" with progflow new site. I told it the directory, set nvim as my editor, added the GitHub repo URL and the live Netlify preview. Then I ran progflow on site. Instantly nvim opened in the right folder, my browser popped up with the repo and the deploy preview. No setup, no typing the same paths over and over. I just started coding.

Whenever I stopped for the day, I'd run progflow off site. It asked for a quick note. I wrote things like "fixed copy button" or "mobile nav wraps weirdly". No to-do file, no trying to remember what I was debugging at 2am. Next session, progflow on site and I was right back where I left off, mentally and literally.

I'm not writing this to sell you on the tool. Honestly, I didn't expect it to be this useful for a single static page. But it was. Most of the time I'd just been jumping between terminal windows and losing mental state. This thing removed that whole loop.

The website itself is nothing fancy. Plain HTML, no frameworks, no gradients because I'm tired of those. It has an install command with a copy button, a quick guide to the CLI, an architecture SVG, that's about it. I did spend a silly amount of time debugging why Google Search Console wouldn't fetch my sitemap even though it was perfectly fine. And a base tag leftover from a GitHub Pages template broke all my nav links until I spotted it. Normal stuff.

After everything was live, I just used the same flow to revisit it whenever a thought popped up. It still works. It feels stupidly nice to type a few letters and have your entire workspace appear.

If you built something that you ended up using yourself way more than expected, I'd love to hear about it. That's the whole reason I'm posting this, not to get you to star the repo, just to tell you about that little surprise.