Automations & Data Integrations
Automation Surfaces
- GitHub Actions workflows in
.github/workflows/ - Workflow helper scripts in
.github/scripts/ - n8n pipeline assets in
snippets/assets/data/n8n/ - Maintenance scripts in
operations/scripts/
Data Integrations
API Specifications
API Specifications
API Specifications
Canonical API/spec files inapi/:api/openapi.yamlapi/openapi.jsonapi/studio.yamlapi/gateway.openapi.yamlapi/ai-worker.yamlapi/cli-http.yaml
-
operations/scripts/snippets/fetch-openapi-specs.sh -
operations/scripts/snippets/generate-api-docs.sh
Automated External Data Feeds
Automated External Data Feeds
Automated External Data Feeds
Core external feed outputs:- Forum ->
snippets/data/social-feeds/forumData.jsx - Ghost blog ->
snippets/data/social-feeds/ghostBlogData.jsx - YouTube ->
snippets/data/social-feeds/youtubeData.jsx - Release/global state ->
snippets/data/globals/latestRelease.jsx - Showcase ->
snippets/data/showcase-feed/showcaseData.jsx
- GitHub workflows under
.github/workflows/update-*.yml - n8n assets under
snippets/assets/data/n8n/
Internal Data Layers
Internal Data Layers
Internal Data Layers
- Route/link maps:
snippets/data/*/hrefs.jsx - Domain data modules:
snippets/data/**/*.jsx - Variables/meta docs snippets:
snippets/data/variables*.mdx - AI sitemap:
sitemap-ai.xml(generated byoperations/scripts/generators/content/seo/generate-ai-sitemap.js, refreshed via.github/workflows/generate-ai-sitemap.yml)
Integrations Mentioned in Product Docs
Integrations Mentioned in Product Docs
Integrations Mentioned in Product Docs
The repository includes integration-oriented docs for:- LPT and related exchange/reference data surfaces
- Explorer and protocol/resource integrations
- GitHub and ecosystem summaries via automation outputs
Operational Notes
- Treat generated data artifacts as derived state.
- Update pipeline scripts/workflows, then regenerate artifacts and indexes.
- Prefer deterministic outputs and stable write paths for CI predictability.
Related
- Workflow inventory: workflows-catalog.mdx
- Script inventory: scripts-catalog.mdx
- Pipeline map: automations.md
Core Pipelines
- Quality + CI
- Data Refresh
- Governance + Intake
1. Quality + CI
1. Quality + CI
1) Quality + CI
test-suite.yml- changed-file checks + browser testtest-v2-pages.yml- v2 browser sweep + artifacts/commentsbroken-links.yml- advisory link checkeropenapi-reference-validation.yml- blocking OpenAPI endpoint-reference integrity checks forv2+ locales with conservative autofix on non-PR runs
- Triggers: PR (
main,docs-v2), push (main,docs-v2), daily schedule (04:35 UTC), manual dispatch - Validator:
operations/tests/integration/openapi-reference-audit.js - Autofix scope: method case,
METHOD /pathspacing, leading slash only - Failure handling: unresolved findings update a single rolling marker issue (
[//]: # (openapi-reference-audit)); clean runs close it with a resolution comment - Labels ensured idempotently before issue sync:
docs-v2,help wanted,status: needs-routing,type: bug,area: ci-cd - Local reproduction:
node operations/tests/integration/openapi-reference-audit.js --full --strict --report /tmp/openapi-audit.md --report-json /tmp/openapi-audit.jsonnode operations/tests/integration/openapi-reference-audit.js --full --fix --write --report /tmp/openapi-audit-fix.md --report-json /tmp/openapi-audit-fix.json
endpoint-not-found-in-spec:- identify mapped spec from report
- verify endpoint exists in mapped spec
- update frontmatter + component reference together
- retire removed endpoints from docs routes/locales when needed
2. Data Refresh Pipelines
2. Data Refresh Pipelines
2) Data Refresh Pipelines
freshness-monitor.yml- advisory daily freshness report for derived automation outputsupdate-livepeer-release.yml-> updates globals release dataupdate-forum-data.yml-> updates forum data snippetsupdate-ghost-blog-data.yml-> updates ghost blog data snippetsupdate-youtube-data.yml-> updates YouTube data snippetsproject-showcase-sync.yml-> updates showcase pipeline data
3. Governance + Intake Pipelines
3. Governance + Intake Pipelines
3) Governance + Intake Pipelines
discord-issue-intake.yml+issue-auto-label.yml- review automation workflows (
build-review-assets.yml,generate-review-table.yml,update-review-template.yml)
Showcase + Trending Topics Pipeline Notes
Showcase
Primary artifacts:snippets/data/showcase-feed/showcaseData.jsx.github/workflows/project-showcase-sync.ymlsnippets/assets/data/n8n/project-showcase-application-workflow.jsonsnippets/assets/data/n8n/Showcase_Project_Pipeline.json
- searchable/sortable ecosystem entries
- pipeline reusable for additional curation sources
- active GitHub Action plus active n8n overlap is still unresolved and needs human review before either side is retired
Trending Topics / Aggregation
Primary artifacts:snippets/data/social-feeds/forumData.jsxsnippets/data/social-feeds/ghostBlogData.jsxsnippets/data/social-feeds/youtubeData.jsx
- aggregate recent community signal across forum/blog/YouTube
- feed “latest” sections and maintain freshness automatically
- superseded n8n definitions now have tracked archive copies under
tasks/staging/deprecated-n8n/
n8n-only Feeds
snippets/assets/data/n8n/Discord_Announce_to_Mintlify.jsonremains the only repo-tracked Discord announcements pipeline; external hosting and activation still need owner confirmation.snippets/assets/data/n8n/Luma-To-Mintlify.jsonremains the repo-tracked Luma events pipeline; the workflow is active in JSON but external runtime ownership is still undocumented.
Operational Controls
- Generated catalogs for scripts/workflows/templates prevent blind spots.
- CI and pre-commit checks reduce drift between pipeline outputs and docs expectations.
freshness-monitor.ymladds a read-only daily staleness check without mutating any data files.- Superseded n8n definitions are mirrored into
tasks/staging/deprecated-n8n/for deprecation tracking while the source files await human-approved cleanup. - Active GitHub Action and n8n overlap is tolerated only where repo evidence still suggests live usage and the owner has not confirmed retirement.
Related
- Public workflow guide:
v2/resources/documentation-guide/automations-workflows.mdx - Internal quality map: quality-gates.md
- Script inventory: scripts-catalog.mdx