Chelys Recipes

Plugin recipes for Chelys, the local process host for TeXlyre language servers and tools.

Recipe Browser

Browse language-server and tool recipes that Chelys can install and run locally for TeXlyre.

0
Total Recipes
0
Types
-
Last Updated

Loading recipes...

API Reference

Access recipes programmatically using the JSON API:

GET https://texlyre.github.io/chelys-recipes/api/recipes.json

The API returns every recipe organized by type, including its manifest URL. Chelys fetches this index in Settings → Plugins → Browse recipes.

Usage

import { recipesApi } from 'chelys-recipes';

// Get every recipe grouped by type
const api = await recipesApi.getRecipes();

// Search recipes
const results = await recipesApi.searchRecipes('grammar');

// Get recipes by type
const servers = await recipesApi.getRecipesByCategory('lsp');

// Fetch a full manifest
const manifest = await recipesApi.getManifest(results[0]);