Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bbaacd3
Add markdown-it-py and linkify-it-py dependencies for markdown writer
juliandickie Apr 24, 2026
3f01973
Scaffold docs_markdown_writer module with failing tests
juliandickie Apr 24, 2026
ff3ebd7
Implement paragraph emission in markdown writer
juliandickie Apr 24, 2026
8e87336
Implement heading emission with HEADING_N named styles
juliandickie Apr 24, 2026
beb350b
Implement inline bold, italic, code, and link styling
juliandickie Apr 24, 2026
69632ed
Implement unordered and ordered list emission
juliandickie Apr 24, 2026
4c3ac41
Implement fenced code block emission with monospace styling
juliandickie Apr 24, 2026
ac33475
Implement blockquote and horizontal rule emission
juliandickie Apr 24, 2026
a01af20
Verify tab_id threading across all request types
juliandickie Apr 24, 2026
bf37a92
Add real-world fixture test using HONOUR-HEALTH-01 blog article
juliandickie Apr 24, 2026
0103cfc
Add update_tab_from_markdown MCP tool wrapping the writer
juliandickie Apr 24, 2026
e8364b1
Document update_tab_from_markdown in skills reference and README
juliandickie Apr 24, 2026
b374139
Add spike test confirming end-to-end tab operations work
juliandickie Apr 24, 2026
5ae09fd
Fix insert_doc_tab tab_id extraction - response key is addDocumentTab
juliandickie Apr 24, 2026
7f6fe75
Fix update_tab_from_markdown deleteContentRange off-by-one
juliandickie Apr 24, 2026
026a4e0
Add integration test for update_tab_from_markdown against real Doc
juliandickie Apr 24, 2026
e25270c
Emit blank spacer paragraphs between top-level markdown blocks
juliandickie Apr 24, 2026
57cf334
Add acceptance script for HONOUR-HEALTH-01 A01 real content
juliandickie Apr 24, 2026
66db431
Address CodeRabbit PR review - docstring fixes, test hygiene, fence n…
juliandickie Apr 24, 2026
06109c4
Merge remote-tracking branch 'origin/main' into fork-extension
taylorwilsdon Apr 25, 2026
076d7ed
refac
taylorwilsdon Apr 25, 2026
57c16b5
refac
taylorwilsdon Apr 25, 2026
f2a6153
refac
taylorwilsdon Apr 26, 2026
c4dc3c1
feedback
taylorwilsdon Apr 26, 2026
7ab77e8
Merge branch 'main' of github.com:taylorwilsdon/google_workspace_mcp …
taylorwilsdon Apr 26, 2026
4f8796c
refac
taylorwilsdon Apr 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,7 @@ Saved files expire after 1 hour and are cleaned up automatically.
| <sub>`debug_table_structure`</sub> | <sub>Complete</sub> | <sub>Debug table issues</sub> |
| <sub>`list_document_comments`</sub> | <sub>Complete</sub> | <sub>List all document comments</sub> |
| <sub>`manage_document_comment`</sub> | <sub>Complete</sub> | <sub>Create, reply to, or resolve comments</sub> |
| <sub>`manage_doc_tab`</sub> | <sub>Complete</sub> | <sub>Create, rename, delete, or populate tabs from markdown</sub> |

#### 📊 Google Sheets <sub>[`sheets_tools.py`](gsheets/sheets_tools.py)</sub>

Expand Down
1 change: 1 addition & 0 deletions core/tool_tiers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ docs:
- inspect_doc_structure
- create_table_with_data
- debug_table_structure
- manage_doc_tab

sheets:
core:
Expand Down
Loading
Loading