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

推荐订阅源

云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
腾讯CDC
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
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 Git for AI prompts — here's why and how
naya · 2026-06-25 · via DEV Community

I Built Git for AI Prompts — Here's Why and How

Every engineer I know who builds with LLMs has the same problem.

You spend hours tuning a system prompt. It's working great. You tweak it a little. Then a little more. Then something breaks — the model starts giving worse answers, hallucinating more, ignoring your instructions.

And you have absolutely no idea what you changed.

Your prompt history is scattered across files, Notion docs, Slack messages, and git commits buried inside application code. There's no clean way to see what changed, when, or why — let alone get back to the version that was actually working.

So I built promptctl.


What is it?

promptctl is a CLI tool that brings the git mental model to prompt management. You commit versions, diff them, roll back, search across them — all from the terminal.

$ echo "You are a helpful assistant." | promptctl commit system -m "initial"
✓ Committed prompt "system" as v1

$ echo "You are a helpful assistant. Always cite sources." | promptctl commit system -m "added citation"
✓ Committed prompt "system" as v2

$ promptctl diff system
--- system v1 (2026-06-01 09:12)
+++ system v2 (2026-06-03 14:47)

- You are a helpful assistant.
+ You are a helpful assistant. Always cite sources.

$ promptctl rollback system 1 -m "citation hurt recall"
✓ Rolled back "system" to v1 → saved as v3

If you've used git, you already know how to use promptctl.


The full workflow

Committing a prompt

You can pipe from stdin, read from a file, or type interactively:

# From stdin
echo "You are a helpful assistant." | promptctl commit system -m "initial"

# From a file — best for longer prompts
promptctl commit system --file prompts/system.txt -m "from file"

# Tag with the model it was written for
promptctl commit classifier -m "optimized for speed" --model gpt-4o-mini --tag prod

Viewing history

$ promptctl log system --preview

prompt: system
──────────────────────────────────────────────────
  v3    2026-06-24 19:41:34
        citation hurt recall
        1 lines, 5 words, 28 chars
        "You are a helpful assistant."

  v2    2026-06-24 19:41:25
        added citation
        1 lines, 8 words, 49 chars
        "You are a helpful assistant. Always cite sources."

  v1    2026-06-24 19:41:25
        initial
        1 lines, 5 words, 28 chars
        "You are a helpful assistant."

Diffing versions

promptctl diff system          # latest vs previous
promptctl diff system 2        # v2 vs latest
promptctl diff system 1 3      # explicit comparison

Diffs are colorized — red for removed lines, green for added.

Searching across everything

$ promptctl search "cite sources"

Results for "cite sources"
──────────────────────────────────────────────────
  system v2  2026-06-24 19:41
           added citation
           …You are a helpful assistant. Always cite source

Search checks content, commit messages, and tags.

Watching a file

This one's my favorite. Point it at a file and it auto-commits every time you save:

promptctl watch prompts/system.txt --as system --model claude-3

Now you can edit in your normal editor and every save is a versioned snapshot. The commit timestamp matches the file's modification time, not when promptctl ran.

Other commands

promptctl copy system system-experimental   # fork with full history
promptctl show system --copy                # copy to clipboard
promptctl show system --version-at 2026-06-01  # time travel
promptctl export system > history.md        # full markdown export
promptctl stats                             # store-wide overview
promptctl prune system --keep 10            # housekeeping


How it works

Everything is stored in .promptctl/store.json in your project directory — similar to how .git/ works. The store is discovered by walking up parent directories, so commands work from any subdirectory.

your-project/
├── .promptctl/
│   └── store.json     ← all prompt versions live here
├── src/
└── ...

Commit store.json to git and your whole team shares prompt history. Or add .promptctl/ to .gitignore if you want a local-only store.

Writes are atomic — we write to a temp file and rename, so you never get a corrupt store even if the process is killed mid-write.


Why Go, why zero dependencies?

I wanted promptctl to be a tool you install once and forget about. No runtime required, no node_modules, no pip install, no version conflicts.

Go's standard library covers everything promptctl needs:

  • JSON serialization
  • Atomic file writes
  • Directory traversal
  • Diff algorithm (LCS, implemented from scratch)
  • ANSI color detection

The result is a single binary you install with:

go install github.com/naya-ai/promptctl/cmd/promptctl@latest

And it works on Mac, Linux, and Windows.


Shell completions

# Bash
source <(promptctl completion bash)

# Zsh
source <(promptctl completion zsh)

# Fish
promptctl completion fish > ~/.config/fish/completions/promptctl.fish

Completions dynamically suggest your prompt names for every command that takes a <name> argument.


What's next

This is v0.1.0 — the core workflow is solid but there's a lot more to build. Things I'm thinking about:

  • Remote sync (S3, GitHub Gist) so prompts are backed up and shareable
  • Side-by-side diff view
  • VS Code extension

If you build with LLMs and prompt management is painful for you, I'd love to hear what's missing.


Try it

go install github.com/naya-ai/promptctl/cmd/promptctl@latest
promptctl init
echo "You are a helpful assistant." | promptctl commit system -m "initial"
promptctl log system

GitHub: github.com/naya-ai/promptctl

If this solves a problem you have, a star on the repo goes a long way for a solo project. And if something's broken or missing, open an issue — I respond fast.