v1.11.0 — add plan2code-bot to root changelog

This commit is contained in:
2026-03-01 21:33:57 -08:00
parent c92865c395
commit 37311a7e68
5 changed files with 42 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
# Changelog
## 1.1.0
- Add `--resume` flag to continue incomplete runs from saved state
- Skip previously succeeded steps when resuming (init, plan, document, implement, finalize)
- Restore idea name, description, project directory, and implement pass counter from state
- Auto-detect state files in current directory (enhancement mode) or subdirectories (new-project mode)
- Delete state file automatically after a fully successful run
- Preserve state file on failure for later resume
- Add `deleteState()` and `findExistingState()` utilities to bot-state module
- Add bot-state unit tests (saveState, loadState, deleteState, findExistingState)
## 1.0.0
- Initial release
- Two auto-detected modes: new-project and enhancement
- `--idea` flag to seed the idea generator
- Full workflow execution: init → plan → document → implement → finalize
- Artifact validation after each step
- State persistence to `.plan2code-bot-state.json`
- Auto-responder for autonomous Claude Agent SDK sessions
- Bot-friendly skill installation (strips `disable-model-invocation`)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "plan2code-bot",
"version": "1.0.0",
"version": "1.1.0",
"description": "Plan2Code Bot - Autonomous workflow runner for testing plan2code end-to-end",
"type": "module",
"main": "dist/index.js",
+1 -1
View File
@@ -11,7 +11,7 @@ import type { BotConfig, BotMode, BotState, StepName, StepResult } from './types
const BANNER = `
╔══════════════════════════════════════╗
║ plan2code-bot v1.0.0 ║
║ plan2code-bot v1.1.0 ║
║ Autonomous Workflow Test Runner ║
╚══════════════════════════════════════╝
`;