Open
Conversation
Contributor
Summary
Previous Results
Insights
Slowest Tests
🎉 No failed tests in this run. | 🍂 No flaky tests in this run. Github Test Reporter by CTRF 💚 🔄 This comment has been updated |
hulto
requested changes
Feb 2, 2026
* feat: generate vscode-tome-builder documentation and examples from source - Add `scripts/generate-assets.ts` to read documentation and tome examples from the repo root. - Update `package.json` to run generation before compilation. - Update `tsconfig.json` to exclude the scripts directory. - Update `docs.ts` and `examples.ts` with generated content. Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com> * feat: generate vscode-tome-builder assets from source - Add `scripts/generate-assets.ts` to read documentation and tome examples from the repo root. - Update `package.json` to run generation before compilation. - Update `tsconfig.json` to exclude the scripts directory. - Update `.gitignore` to ignore generated `docs.ts` and `examples.ts` in `mcp-server/src`. - Remove existing `docs.ts` and `examples.ts` to stop tracking them. Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com> * feat: vscode-tome-builder reads docs and examples from disk at runtime - Update `mcp-server/src/docs.ts` to locate the repo root and read markdown docs from `docs/_docs/user-guide/`. - Update `mcp-server/src/examples.ts` to locate the repo root and read tome examples from `tavern/tomes/`. - Update `mcp-server/src/index.ts` to use the new runtime file reading functions. - Revert previous build-time generation scripts and config changes. Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com> --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com>
- Update `mcp-server/src/index.ts` to locate the repo root and read markdown docs from `docs/_docs/user-guide/` and tome examples from `tavern/tomes/` at runtime. - Remove redundant `mcp-server/src/docs.ts` and `mcp-server/src/examples.ts` files. - Revert previous build-time generation scripts, config changes, and dependencies. - Revert `.gitignore` changes as no files are generated anymore. Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com>
…uilder-asset-generation-8727951929389785993
- **vscode-tome-builder**: Switch to runtime parsing for documentation and examples.
- `index.ts` now locates repo root and reads files directly.
- Removed redundant `docs.ts` and `examples.ts`.
- **eldritch-lsp**: Create new Rust Language Server crate.
- Located in `implants/lib/eldritch/eldritch-lsp`.
- Added to `implants` workspace.
- Features linter with optimization hooks (`LintRule`).
- Indexes standard library from `implants/lib/eldritch/stdlib`.
- Integrates `eldritch-core` for parsing.
Co-authored-by: JonLMyers <14082284+JonLMyers@users.noreply.github.com>
hulto
reviewed
Feb 6, 2026
| } | ||
|
|
||
| export function getEldritchDoc(): string { | ||
| return readDocFile('docs/_docs/user-guide/eldritch.md'); |
Collaborator
There was a problem hiding this comment.
Does typescript have an embed at build time option?
This won't work if we build the package in CI AFAIK
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.
What type of PR is this?
/kind feature
What this PR does / why we need it:
This PR adds a Tome creation extension that uses a user defined AI model and MCP server to ease the creation of Eldritch powered tomes.
Which issue(s) this PR fixes:
Fixes #