Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions CODEX_HANDOFF.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ or temporary deployment credentials.
focus, so externally downloaded files appear without a restart while collapsed
branches stay inexpensive. Their context menu also supports the existing workspace
file operations and opening through the system application.
- **Structured local document ingestion (2026-08-19):** Existing Word,
PowerPoint, Excel, OpenDocument, RTF, EPUB, CSV, and text-based PDF files are
converted locally to structured Markdown with the pinned MIT-licensed anydoc
Rust library before reaching the Agent. This replaces TierNote's former light
OOXML/PDF text scraping, preserves document structure more faithfully, and
adds fixed parser resource limits. Scanned or image-only PDFs still require a
separate OCR path. Keep the native TierNote DOCX/PDF generators: anydoc is an
input parser, not an output-document generator. Do not invoke its npx skill or
bind the app to a developer-local checkout.
- The current Agent tool surface can edit text files but cannot execute terminal
commands. It must state that honestly and never claim builds or tests ran. Add
shell execution only together with an explicit user approval and safety model.
Expand Down
32 changes: 32 additions & 0 deletions THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Third-party notices

## anydoc

TierNote uses anydoc 0.1.9 to convert local Word, PowerPoint, Excel,
OpenDocument, RTF, EPUB, CSV, and text-based PDF files into structured Markdown
for the Agent. Conversion runs locally inside the desktop application; TierNote
does not use the hosted Firecrawl Parse service.

MIT License

Copyright (c) 2026 Sideguide Technologies Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Source and license:
https://github.com/firecrawl/anydoc/blob/v0.1.9/LICENSE

## printpdf

TierNote uses printpdf 0.7 to write PDF files and subset local TrueType fonts.
Expand Down
Loading