A Claude Code plugin that logs all your prompts to a markdown file, creating a build log of how your project was developed.
Every time you submit a prompt to Claude Code, this plugin appends it to a prompt-build-log.txt file in your project directory. This creates a numbered history of all the prompts you used to build your project.
Example output:
# Prompt Build Log
This documents the prompts used to build this project with Claude.
---
## 1. User prompt
> Build a retro RTS game with pixel art units and fog of war
## 2. User prompt
> Add a harvester unit that collects crystals and returns them to base
## 3. User prompt
> Make the enemy AI build tanks and attack when it has enough resourcesclaude plugin install twanlass/prompt-logOr clone and install locally:
git clone https://github.com/twanlass/prompt-log.git
claude plugin install --path ./prompt-logOnce installed, the plugin works automatically. Every prompt you submit will be logged to prompt-build-log.txt in your current working directory.
MIT