feat: inline table editor for spec sections#31
Merged
corvid-agent merged 2 commits intomainfrom Feb 25, 2026
Merged
Conversation
Owner
Author
|
@corvid-agent resolve the merge conflicts and rebase. |
3 tasks
After OAuth sign-in, instead of showing a manual form requiring owner/repo/branch/path, the app now automatically fetches the user's repos and scans each for spec directories. Repos with existing specs are highlighted and sorted to the top. Users can click any repo to connect instantly, or click "Manual" to fall back to the old form. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Sections containing markdown tables (Exported Functions, Error Cases, Dependencies, Change Log) now render in structured mode with form-based table editors instead of raw CodeMirror. Sections without tables retain the existing CodeMirror behavior. - Add markdown-table utility for parsing/serializing content blocks and tables - Add TableEditorComponent with add/remove/reorder row actions - Update SectionEditorComponent with smart mode switching and loop suppression Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5bd56de to
059a0ea
Compare
Owner
Author
|
Done — rebased
One commit ( |
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
Changes
src/app/models/markdown-table.ts— parse/serialize markdown tables and content blockssrc/app/components/table-editor/—TableEditorComponentwith row actions and dark-themed stylingsection-editorcomponent — smart mode switching between structured (table) and CodeMirror modes, withsuppressBlockParseto prevent re-parse loopsTest plan
ng build— verify no build errors🤖 Generated with Claude Code