Consolidate tracking systems + add Plan Tracker IPC service#63
Merged
Consolidate tracking systems + add Plan Tracker IPC service#63
Conversation
Delete doc-history/ (30 archived plans/progress files), docs/progress/ (19 stale progress files + .gitkeep), and docs/sprints/ (6 sprint files). Rewrite docs/tracker.json to v2 schema: - Remove deprecated fields: progressFile, commit, supersededBy, updatedBy - Remove unused statuses: BLOCKED, SUPERSEDED, ABANDONED - Purge all ARCHIVED entries (files deleted) - Purge old IMPLEMENTED entries that shipped long ago - Keep 5 active entries: future-roadmap, separation-of-concerns, comprehensive-e2e-suite, custom-theme-editor, tracking-consolidation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…hema - validate-tracker.mjs: Remove BLOCKED/SUPERSEDED/ABANDONED statuses, remove progressFile schema check, remove docs/progress/ orphan scan, remove full-codebase-audit special-case, update to v2 schema docs - check-docs.mjs: Remove docs/progress/ from accepted doc paths - CLAUDE.md: Remove all docs/progress/ references, remove Gap resolution row, simplify Plan lifecycle changes row - .gitignore: Replace blanket .claude/progress/ ignore with granular runtime file patterns (events.jsonl, current.md, history.md, index.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Create the full IPC data layer for reading/writing docs/tracker.json: - Types: TrackerPlanStatus, TrackerPlan, TrackerFile - Zod schemas matching the types - Contract with 3 channels: tracker.list, tracker.get, tracker.update - Synchronous TrackerService (local file read/write pattern) - Thin IPC handlers wrapping service with Promise.resolve() - Registered in root IPC barrel and handler registry - Service instantiated in service-registry.ts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…dation Remove 8 orphan plan files from docs/plans/ that were tracked in v1 but excluded from the v2 tracker. Update ai-docs references to remove docs/progress/ and doc-history/ paths that no longer exist. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/tracker.jsonis now the single source of truth for plan/feature statusdoc-history/,docs/progress/,docs/sprints/, and orphan plan files (-19,124 lines)docs/tracker.jsonfrom v1 (33 entries, complex schema) to v2 (5 entries, simplified schema)tracker.list,tracker.get,tracker.updatechannels so the app UI can read/write tracker status (data layer only, no UI yet)validate-tracker.mjs,check-docs.mjs) for v2 schema.gitignoreto exclude.claude/progress/runtime files while keeping the directory usable by the workflow pluginCLAUDE.mdandai-docs/to remove all references to deleted directoriesTest plan
npm run lint— zero violationsnpm run typecheck— zero errorsnpm run test— 156/156 passingnpm run build— successnpm run validate:tracker— PASS with v2 schemanpm run check:docs— PASSclaude-workflowplugin compatibility (uses.claude/progress/runtime, independent ofdocs/tracker.json)🤖 Generated with Claude Code