docs: move extensions to lfx section

This commit is contained in:
Mendon Kissling
2026-06-22 14:50:35 -04:00
parent 9f6ffad86e
commit 431a405ba8
7 changed files with 42 additions and 15 deletions

View File

@ -129,3 +129,7 @@ The loader and validator both emit typed errors keyed by the manifest field that
Run `lfx extension validate <path>` to see every error as a structured object with `code`, `message`, `location`, `hint`, and `ref_url`.
## See also
- [Bundle extensions overview](./extensions-overview)
- [Build your first extension](./extensions-quickstart)
- [About LFX](./lfx-overview)

View File

@ -70,4 +70,11 @@ lfx extension list
If you have custom components that you want to distribute and version independently of your Langflow install, you can package them as an extension.
For more information, see [Build your first Langflow Extension](./extensions-quickstart.mdx).
For more information, see [Build your first Langflow Extension](./extensions-quickstart.mdx).
## See also
- [About LFX](./lfx-overview)
- [Build your first extension](./extensions-quickstart)
- [Manifest reference](./extensions-manifest)
- [Run flows with LFX](./lfx-run)

View File

@ -107,3 +107,8 @@ The scaffold ships a working `Component` subclass that prints `"Hello, {name}!"`
The bundle appears in the palette without further configuration.
## See also
- [Bundle extensions overview](./extensions-overview)
- [Manifest reference](./extensions-manifest)
- [About LFX](./lfx-overview)
- [Run flows with LFX](./lfx-run)

View File

@ -231,3 +231,10 @@ lfx push --env local
```
This command will send the request to the Langflow base URL at `http://127.0.0.1:7860` using a Langflow API key named `LANGFLOW_LOCAL_API_KEY`.
## See also
- [About LFX](./lfx-overview)
- [Install LFX](./lfx-install)
- [Run flows with LFX](./lfx-run)
- [Bundle extensions](./extensions-overview)

View File

@ -110,7 +110,9 @@ To list available commands:
lfx --help
```
## Next steps
## See also
- [About LFX](./lfx-overview)
- [Run flows with LFX](./lfx-run)
- [Flow DevOps Toolkit SDK](/flow-devops-sdk)
- [Flow DevOps Toolkit SDK](./lfx-devops-sdk.mdx)
- [Bundle extensions](./extensions-overview)

View File

@ -278,7 +278,9 @@ export LANGFLOW_COMPONENT_CATEGORY_ALLOWLIST="core"
uv run lfx serve my_flow.json
```
## Next steps
## See also
- [Flow DevOps Toolkit SDK](/flow-devops-sdk) — version, test, and deploy flows from the CLI
- [Bundle extensions](/extensions-overview) — develop and distribute custom component bundles
- [About LFX](./lfx-overview)
- [Install LFX](./lfx-install)
- [Flow DevOps Toolkit SDK](./lfx-devops-sdk.mdx)
- [Bundle extensions](./extensions-overview)

View File

@ -188,15 +188,6 @@ module.exports = {
id: "Develop/configuration-cli",
label: "Use the Langflow CLI"
},
{
type: "category",
label: "Bundle extensions",
items: [
"Develop/extensions-overview",
"Develop/extensions-quickstart",
"Develop/extensions-manifest",
],
},
],
},
{
@ -340,6 +331,15 @@ module.exports = {
id: "Lfx/lfx-devops-sdk",
label: "Flow DevOps Toolkit SDK"
},
{
type: "category",
label: "Bundle extensions",
items: [
"Lfx/extensions-overview",
"Lfx/extensions-quickstart",
"Lfx/extensions-manifest",
],
},
],
},
{