# Deadzone library registry — see #51, #103, #113, and the Quick start in README.md. # # Each entry is one library to scrape. Required fields: # # lib_id canonical "/org/project" identifier (matches db.docs.lib_id) # kind source kind discriminator. Valid values: # - github-md raw markdown URLs, no LLM (fast path) # - github-rst raw reStructuredText URLs, no LLM # (fast path for cpython, Django, NumPy, # and other Sphinx-doc'd projects) # - scrape-via-agent HTML/text via an OpenAI-compatible # chat completions endpoint (set the # DEADZONE_AGENT_ENDPOINT[_*] env vars; # see README "Scraping non-trivial doc # sources" for the full contract) # - godoc Go source parsed via go/doc. # Stdlib: GitHub Contents API # (golang/go is not a Go module). # Third-party modules: proxy.golang.org # zip + sumdb verify — capability is # shipped but **policy is opt-in only**: # prefer github-md for third-party Go # modules unless empirical evaluation # shows godoc retrieval beats narrative. # See #198 (impl + ACs) and #133 (research, # closed — output was #198's locked design). # urls list of doc URLs to fetch # # Optional: # # ref git tag or commit SHA to pin all URLs of this lib to. URLs # that contain the literal "{ref}" placeholder get it # substituted at resolve time (#103). When used at top level, # applies to every expanded version unless overridden. # # description short upstream-authored summary (1-2 sentences, # ~100-220 chars) of what this lib IS and what role it plays. # Mixed into the lib-row embedding alongside the normalized # lib_id at scrape time so search_libraries can rank on # semantic intent instead of lib_id token overlap alone # (#191). Source preference: upstream README first # paragraph, GitHub repo description, or official tagline — # whatever is authoritative. Avoid licensing/sponsorship # text and marketing fluff ("powerful", "blazing fast", # "modern") unless the upstream tagline literally uses the # word and dropping it loses information. Empty/missing # reverts to the legacy lib_id-only embedding (no behavior # change). Whitespace-only normalizes to "" at parse time. # Example: # description: Asynchronous runtime for Rust providing IO, # scheduling, and synchronization primitives. # # versions mapping of version identifiers to per-version overrides. # When present, every effective URL list (baseline or a # per-version `urls:` override) must contain the literal # "{ref}" placeholder; one effective entry is produced per # version with lib_id "/". The pre-#120 # "{version}" placeholder has been retired and is rejected # at parse time. Shape: # # versions: # "1.4": { ref: v1.4.1 } # per-version git pin # "1.5": { ref: v1.5.0 } # per-version git pin # "2.0": { urls: [...] } # per-version url list # # Per-version overrides: # - `ref:` pins this version's {ref} substitution, # overrides the top-level `ref:` (#103). # - `urls:` replaces the top-level `urls:` for this version # wholesale (#115). Omit the field to inherit # the baseline; an explicit `urls: []` is # rejected. Use this when two versions of the # same lib diverge structurally, or when the # URL path literal differs per version (see the # `hashicorp/terraform` entry below). # - `description:` replaces the top-level `description:` # for this version's libs-table row only (#191). # Use sparingly — only when versions have # meaningfully diverged (e.g. a major API # rewrite). Omit to inherit the top-level # description; whitespace-only normalizes to "" # at parse time so it doesn't accidentally # suppress inheritance. # # The legacy list shape `versions: [v1, v2]` is rejected at # parse time — use `{"1.4": {...}, "1.5": {...}}` instead # (see #117). # # lib_id vs docs source repo: # `lib_id` is the canonical identifier — it matches `db.docs.lib_id` # and is what users query through the MCP surface. It is NOT # guaranteed to match the GitHub org/project that hosts the doc URLs. # # When upstream splits code and docs into sibling repos (a common JS/ # TS pattern, but also seen on Rust + Go ORMs + DBs), the lib_id stays # on the canonical "lib home" repo while the URLs target the docs # sibling. Inspect the URL host to see which repo a scrape actually # reads from. # # Sidecar docs repos currently in use (10 of 48 entries): # /uptrace/bun → uptrace/bun-docs # /honojs/hono → honojs/website # /expressjs/express → expressjs/expressjs.com # /nestjs/nest → nestjs/docs.nestjs.com # /vuejs/vue → vuejs/docs # /withastro/astro → withastro/docs # /tokio-rs/tokio → tokio-rs/website # /serde-rs/serde → serde-rs/serde-rs.github.io # /dragonflydb/dragonfly → dragonflydb/documentation # /grafana/k6 → grafana/k6-docs # # The remaining 38 entries are in-repo (lib_id's repo IS the docs # source). The Grafana stack ships docs in-repo under `docs/sources/` # monorepo-style; most other ecosystems split them out. # # Patch is mechanical when needed: bump `ref:` to a new commit on the # docs sibling, not on the lib repo. # # Version-pinning conventions in this file (#120): # - `versions:` keys are the user-facing IDENTIFIER surfaced by the # MCP surface (`search_libraries`, `search_docs`). They are always # `major.minor` with no `v` prefix (e.g. `1.14`, `0.135`, `3.14`). # - The actual git tag used by the scraper lives in each version's # `ref:` field. URLs reference `{ref}` — not `{version}` — so the # patch bump (`v1.14.5` → `v1.14.6`) is a `ref:` edit that never # touches the user-facing identifier or the consolidated DB shape. # - Exception: `hashicorp/terraform` hardcodes the `v1.13.x` and # `v1.14.x` path literals in each version's own `urls:` block # (per-version URL override from #115). The repo interleaves every # supported terraform version under different path prefixes, so # the two versions share a top-level `ref:` (the web-unified-docs # sha) but can't share a URL template under the `{ref}`-only # placeholder vocabulary. Duplicating the URL list is cheap and # keeps the vocabulary one-placeholder-wide. # - Exception: `scaleway/scaleway-sdk-go` ships only # `v1.0.0-beta.N` prereleases, so its two active minors collapse to # the same `1.0` under the major.minor rule. Fallback: keep the full # prerelease string (`v1.0.0-beta.35`, `v1.0.0-beta.36`) as the # version key, and set per-version `ref:` to the same string so # `{ref}` substitution resolves to the git tag. # - We ship the last 2 minor releases of each lib's latest major # (#113 "2 dernières versions"); single-version when the upstream # has no stable tags or the URL set is trivially thin. The "last 2 # minors" policy (#118) indexes exactly one patch per minor, which # is why dropping the patch from the identifier is lossless. # # Override this path with `deadzone scrape --config `. Restrict a # run to one library with `--lib /org/project` (matches all versions) or # pin to one version with `--lib /org/project --version ` (#113). # Ref policy: prefer git tags; fall back to full 40-char SHAs. # Short SHAs are forbidden — they are not collision-resistant on # large repos and are subject to upstream GC. libraries: - lib_id: /modelcontextprotocol/go-sdk description: Official Go SDK for the Model Context Protocol (MCP), used by clients and servers exchanging tools, prompts, and resources with LLM hosts. kind: github-md versions: "1.4": { ref: v1.4.1 } "1.5": { ref: v1.5.0 } urls: - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/README.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/README.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/server.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/client.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/protocol.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/mcpgodebug.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/troubleshooting.md - https://raw.githubusercontent.com/modelcontextprotocol/go-sdk/{ref}/docs/rough_edges.md # FastAPI — repo transferred from tiangolo/fastapi to fastapi/fastapi # (new fastapi org). Docs site at fastapi.tiangolo.com is rendered # from docs/en/docs/*.md in the repo, so we pull the raw markdown # directly: no LLM extraction, no truncation, no verifier skips. # Tags ship without a "v" prefix. - lib_id: /fastapi/fastapi description: Python web framework for building APIs based on standard Python type hints, with automatic OpenAPI/Swagger documentation and async support. kind: github-md versions: "0.134": { ref: 0.134.0 } "0.135": { ref: 0.135.3 } urls: - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/additional-responses.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/additional-status-codes.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/advanced-dependencies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/advanced-python-types.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/async-tests.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/behind-a-proxy.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/custom-response.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/dataclasses.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/events.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/generate-clients.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/json-base64-bytes.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/middleware.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/openapi-callbacks.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/openapi-webhooks.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/path-operation-advanced-configuration.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/response-change-status-code.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/response-cookies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/response-directly.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/response-headers.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/security/http-basic-auth.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/security/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/security/oauth2-scopes.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/settings.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/stream-data.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/strict-content-type.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/sub-applications.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/templates.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/testing-dependencies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/testing-events.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/testing-websockets.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/using-request-directly.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/websockets.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/advanced/wsgi.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/async.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/benchmarks.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/contributing.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/cloud.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/concepts.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/docker.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/https.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/manually.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/server-workers.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/deployment/versions.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/features.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/help-fastapi.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/learn/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/project-generation.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/python-types.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/resources/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/background-tasks.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/bigger-applications.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/body-fields.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/body-multiple-params.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/body-nested-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/body-updates.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/body.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/cookie-param-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/cookie-params.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/cors.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/debugging.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/classes-as-dependencies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/dependencies-with-yield.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/global-dependencies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/dependencies/sub-dependencies.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/encoder.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/extra-data-types.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/extra-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/first-steps.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/handling-errors.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/header-param-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/header-params.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/middleware.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/path-operation-configuration.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/path-params-numeric-validations.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/path-params.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/query-param-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/query-params-str-validations.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/query-params.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/request-files.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/request-form-models.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/request-forms-and-files.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/request-forms.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/response-model.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/response-status-code.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/schema-extra-example.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/security/first-steps.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/security/get-current-user.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/security/index.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/security/oauth2-jwt.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/security/simple-oauth2.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/sql-databases.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/static-files.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/tutorial/testing.md - https://raw.githubusercontent.com/fastapi/fastapi/{ref}/docs/en/docs/virtual-environments.md # OpenJDK intentionally omitted from 0.1: docs.oracle.com javadoc is # pre-rendered HTML only (no markdown/rst source upstream), so pulling it # would require the scrape-via-agent LLM path. Deferred until we either # parse javadoc HTML directly or accept the quality/perf tradeoff. # Python stdlib — docs ship as reStructuredText in cpython/Doc/library/, # so we pull the raw .rst directly. No HTML scrape, no LLM. The 20 # modules below are the "core 20" decided in #95. - lib_id: /python/cpython description: Reference implementation of the Python programming language, providing the standard library and the interpreter runtime. kind: github-rst versions: "3.13": { ref: v3.13.9 } "3.14": { ref: v3.14.4 } urls: - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/os.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/sys.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/pathlib.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/json.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/collections.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/itertools.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/functools.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/subprocess.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/asyncio.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/argparse.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/re.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/datetime.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/typing.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/dataclasses.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/enum.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/logging.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/urllib.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/http.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/socket.rst - https://raw.githubusercontent.com/python/cpython/{ref}/Doc/library/threading.rst # HashiCorp Terraform — docs live as MDX in hashicorp/web-unified-docs # under content/terraform/.x/docs/. The git ref is a sha from # web-unified-docs' main (the repo holds every supported terraform # version side-by-side under different path prefixes, so the same sha # serves both v1.13.x and v1.14.x). Bump the sha to refresh the # snapshot. # # Per-version `urls:` blocks instead of a shared baseline: the repo # path contains a literal `v1.13.x` / `v1.14.x` segment, so the two # versions can't share a single URL template under the post-#120 # placeholder vocabulary (the only placeholder is `{ref}`, which is # the same sha for both). Duplicating the URL list is the cheap way # to keep the vocab one-placeholder-wide. - lib_id: /hashicorp/terraform description: Infrastructure as code tool for declaratively provisioning and managing cloud resources via providers and HCL configuration. kind: github-md ref: 9c479db1ab97a2f175e049c0d5bbf31c24959c7e versions: "1.13": urls: - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/intro/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/intro/core-workflow.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/intro/use-cases.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/style.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/resources/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/resources/configure.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/resources/destroy.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/modules/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/modules/configuration.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/modules/sources.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/values/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/values/variables.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/values/outputs.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/values/locals.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/purpose.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/backends.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/remote.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/locking.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/workspaces.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/state/import.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/references.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/conditionals.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/for.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/function-calls.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/types.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/type-constraints.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/operators.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/strings.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/language/expressions/dynamic-blocks.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/init.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/plan.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/apply.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/destroy.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/import.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/validate.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/fmt.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/state/list.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/state/mv.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/state/rm.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/state/show.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.13.x/docs/cli/commands/workspace/index.mdx "1.14": urls: - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/intro/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/intro/core-workflow.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/intro/use-cases.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/style.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/resources/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/resources/configure.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/resources/destroy.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/modules/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/modules/configuration.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/modules/sources.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/values/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/values/variables.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/values/outputs.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/values/locals.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/purpose.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/backends.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/remote.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/locking.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/workspaces.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/state/import.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/index.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/references.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/conditionals.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/for.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/function-calls.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/types.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/type-constraints.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/operators.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/strings.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/language/expressions/dynamic-blocks.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/init.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/plan.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/apply.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/destroy.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/import.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/validate.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/fmt.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/state/list.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/state/mv.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/state/rm.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/state/show.mdx - https://raw.githubusercontent.com/hashicorp/web-unified-docs/{ref}/content/terraform/v1.14.x/docs/cli/commands/workspace/index.mdx # OpenTofu — docs are MDX directly in the opentofu repo at # website/docs/. Terraform fork, so the tree shape mirrors hashicorp's. - lib_id: /opentofu/opentofu description: Open-source infrastructure as code tool, community-driven fork of Terraform under the Linux Foundation, compatible with HCL and existing providers. kind: github-md versions: "1.10": { ref: v1.10.9 } "1.11": { ref: v1.11.6 } urls: - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/intro/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/intro/core-workflow.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/intro/use-cases.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/intro/upgrading.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/intro/whats-new.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/resources/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/resources/syntax.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/resources/behavior.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/modules/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/modules/syntax.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/modules/sources.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/values/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/values/variables.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/values/outputs.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/values/locals.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/purpose.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/backends.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/remote.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/locking.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/workspaces.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/import.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/encryption.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/state/sensitive-data.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/index.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/references.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/conditionals.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/for.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/function-calls.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/types.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/type-constraints.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/operators.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/strings.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/language/expressions/dynamic-blocks.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/init.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/plan.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/apply.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/destroy.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/validate.mdx - https://raw.githubusercontent.com/opentofu/opentofu/{ref}/website/docs/cli/commands/fmt.mdx # OVHcloud Go SDK — README is the canonical reference. - lib_id: /ovh/go-ovh description: Official Go client library for the OVHcloud public APIs, handling authentication, request signing, and consumer-key flows. kind: github-md versions: "1.8": { ref: v1.8.0 } "1.9": { ref: v1.9.0 } urls: - https://raw.githubusercontent.com/ovh/go-ovh/{ref}/README.md # OVHcloud CLI (v2). Canonical repo name is `ovhcloud-cli`, not `ovh-cli`. - lib_id: /ovh/ovhcloud-cli description: Command-line interface for the OVHcloud APIs, scriptable wrapper for managing accounts, projects, and cloud resources. kind: github-md versions: "0.10": { ref: v0.10.0 } "0.11": { ref: v0.11.0 } urls: - https://raw.githubusercontent.com/ovh/ovhcloud-cli/{ref}/README.md # OVHcloud Terraform provider — README + top-level provider doc. - lib_id: /ovh/terraform-provider-ovh description: Terraform provider for OVHcloud resources covering compute, networking, public cloud, dedicated servers, and managed services. kind: github-md versions: "2.12": { ref: v2.12.0 } "2.13": { ref: v2.13.0 } urls: - https://raw.githubusercontent.com/ovh/terraform-provider-ovh/{ref}/README.md - https://raw.githubusercontent.com/ovh/terraform-provider-ovh/{ref}/docs/index.md # Scaleway Go SDK — still shipped as v1.0.0-beta.N (no stable). Both # active betas would collapse to `1.0` under the major.minor rule, so # this lib keeps the full prerelease string as the version key (the # documented exception to the #120 convention). `ref:` mirrors the # version key verbatim because the version IS the git tag for this lib. - lib_id: /scaleway/scaleway-sdk-go description: Official Go SDK for the Scaleway cloud APIs (instances, object storage, Kubernetes Kapsule, serverless containers, IAM). kind: github-md versions: v1.0.0-beta.35: { ref: v1.0.0-beta.35 } v1.0.0-beta.36: { ref: v1.0.0-beta.36 } urls: - https://raw.githubusercontent.com/scaleway/scaleway-sdk-go/{ref}/README.md # Scaleway CLI — README + cookbook + v2 migration guide. - lib_id: /scaleway/scaleway-cli description: Command-line interface for managing Scaleway cloud resources (instances, Kapsule, object storage, IAM), built on top of the Scaleway Go SDK. kind: github-md versions: "2.53": { ref: v2.53.0 } "2.54": { ref: v2.54.0 } urls: - https://raw.githubusercontent.com/scaleway/scaleway-cli/{ref}/README.md - https://raw.githubusercontent.com/scaleway/scaleway-cli/{ref}/docs/cookbook.md - https://raw.githubusercontent.com/scaleway/scaleway-cli/{ref}/docs/migration_guide_v2.md # Scaleway Terraform provider — README + top-level provider doc. - lib_id: /scaleway/terraform-provider-scaleway description: Terraform provider for Scaleway cloud resources (instances, networking, Kubernetes Kapsule, object storage, serverless). kind: github-md versions: "2.71": { ref: v2.71.0 } "2.72": { ref: v2.72.0 } urls: - https://raw.githubusercontent.com/scaleway/terraform-provider-scaleway/{ref}/README.md - https://raw.githubusercontent.com/scaleway/terraform-provider-scaleway/{ref}/docs/index.md # opencode (AI coding CLI, formerly sst/opencode, transferred to # anomalyco). The project only tags a separate `vscode-*` extension # and ships the CLI from its `dev` branch without release tags, so # we pin to a commit SHA from `dev` and single-version this entry. # Bump the sha to refresh. Source files are .mdx under # packages/web/src/content/docs/ at the English root only — translated # subdirs (bs/, ar/, fr/, etc.) are intentionally excluded. See #149. - lib_id: /anomalyco/opencode description: Open-source AI coding agent for the terminal, model-agnostic and configurable via slash commands and a TUI. kind: github-md ref: 908e28175f9e5c46206c8884bdd9a7dbb31d0f0b urls: - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/acp.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/agents.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/cli.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/commands.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/config.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/custom-tools.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/ecosystem.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/enterprise.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/formatters.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/github.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/gitlab.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/go.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/ide.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/index.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/keybinds.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/lsp.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/mcp-servers.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/models.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/modes.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/network.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/permissions.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/plugins.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/providers.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/rules.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/sdk.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/server.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/share.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/skills.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/themes.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/tools.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/troubleshooting.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/tui.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/web.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/windows-wsl.mdx - https://raw.githubusercontent.com/anomalyco/opencode/{ref}/packages/web/src/content/docs/zen.mdx # tursodatabase/turso-go — Go driver for Turso/Limbo. No releases yet # (`gh api repos/tursodatabase/turso-go/releases/latest` → "no releases" # as of 2026-04-23), so we pin to `main` with a bare URL list. README # only — CONTRIBUTING/LICENSE are project meta, not library docs. See #132. - lib_id: /tursodatabase/turso-go description: Official Go driver and client library for Turso, the SQLite-compatible distributed database, with embedded and remote sync modes. kind: github-md urls: - https://raw.githubusercontent.com/tursodatabase/turso-go/main/README.md # tursodatabase/turso — SQLite-compatible engine (formerly Limbo). The # upstream has no stable tag yet; latest prerelease on 2026-04-23 is # v0.6.0-pre.22. URL list walks docs/ + subdirs (sql-reference, internals, # agent-guides, contributing). sql-reference/ is authored as .mdx # (Mintlify source); ParseMarkdown handles them as markdown with minor # JSX noise — acceptable tradeoff to keep the SQL reference indexed. # docs/language-reference/ is skipped (it only ships compiled mdBook HTML, # not markdown source). See #132. - lib_id: /tursodatabase/turso description: In-process SQLite-compatible database written in Rust (formerly Limbo/libSQL), with vector search, full-text search, MVCC, and CDC. kind: github-md versions: "0.6": { ref: v0.6.0-pre.22 } urls: - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/fts.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/manual.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/testing.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/javascript-api-reference.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/README.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/compatibility.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/data-types.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/experimental-features.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/expressions.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/extensions.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/multiprocess-access.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/pragmas.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/cli/command-line-options.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/cli/getting-started.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/cli/shell-commands.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/aggregate.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/array.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/date-time.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/fts.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/json.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/math.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/scalar.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/vector.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/functions/window.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/alter-table.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/analyze.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/attach-database.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-domain.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-index.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-materialized-view.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-table.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-trigger.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-type.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-view.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/create-virtual-table.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/delete.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/detach-database.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-domain.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-index.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-table.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-trigger.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-type.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/drop-view.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/explain.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/insert.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/replace.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/select.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/transactions.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/update.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/sql-reference/statements/upsert.mdx - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/internals/mvcc/DESIGN.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/internals/mvcc/GC.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/internals/mvcc/RECOVERY_SEMANTICS.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/async-io-model.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/code-quality.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/debugging.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/mvcc.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/pr-workflow.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/storage-format.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/testing.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/agent-guides/transaction-correctness.md - https://raw.githubusercontent.com/tursodatabase/turso/{ref}/docs/contributing/contributing_functions.md # tursodatabase/turso-docs — the hosted Turso platform docs at # docs.turso.tech. Mintlify serves raw markdown when '.md' is appended # to any doc path. kind is github-md because scraper.FetchOne is # host-agnostic — see #132. Curated subset (not full sitemap) covering # /introduction, /sdk/*, /cli/*, /features/*. docs.turso.tech is # unversioned (always current), so no `versions:` block and no ref pin. - lib_id: /tursodatabase/turso-docs description: Documentation site source for the Turso edge SQLite database platform, covering SDKs, CLI, and managed service usage. kind: github-md urls: - https://docs.turso.tech/introduction.md - https://docs.turso.tech/local-development.md - https://docs.turso.tech/sdk/introduction.md - https://docs.turso.tech/sdk/authentication.md - https://docs.turso.tech/sdk/authorization.md - https://docs.turso.tech/sdk/go/quickstart.md - https://docs.turso.tech/sdk/go/reference.md - https://docs.turso.tech/sdk/ts/quickstart.md - https://docs.turso.tech/sdk/ts/reference.md - https://docs.turso.tech/sdk/python/quickstart.md - https://docs.turso.tech/sdk/python/reference.md - https://docs.turso.tech/sdk/rust/quickstart.md - https://docs.turso.tech/sdk/rust/reference.md - https://docs.turso.tech/sdk/http/quickstart.md - https://docs.turso.tech/sdk/http/reference.md - https://docs.turso.tech/cli/introduction.md - https://docs.turso.tech/cli/installation.md - https://docs.turso.tech/cli/authentication.md - https://docs.turso.tech/cli/db/create.md - https://docs.turso.tech/cli/db/list.md - https://docs.turso.tech/cli/db/shell.md - https://docs.turso.tech/features/ai-and-embeddings.md - https://docs.turso.tech/features/attach-database.md - https://docs.turso.tech/features/branching.md - https://docs.turso.tech/features/embedded-replicas/introduction.md - https://docs.turso.tech/features/multi-db-schemas.md - https://docs.turso.tech/features/point-in-time-recovery.md - https://docs.turso.tech/features/sqlite-extensions.md # knights-analytics/hugot — Go port of Hugging Face transformers. # Load-bearing for internal/embed (ONNX inference over tokenized text). # Tiny surface: README + contrib.md. CHANGELOG skipped (release log, # not library docs). See #142. - lib_id: /knights-analytics/hugot description: Go library for running HuggingFace transformer models on the ONNX Runtime, with embedding, classification, and token generation pipelines. kind: github-md versions: "0.6": { ref: v0.6.5 } "0.7": { ref: v0.7.2 } urls: - https://raw.githubusercontent.com/knights-analytics/hugot/{ref}/README.md - https://raw.githubusercontent.com/knights-analytics/hugot/{ref}/contrib.md # spf13/cobra — CLI framework. Newly load-bearing after #134 (deadzone # CLI migration from stdlib flag to cobra). Canonical doc source is # site/content/ (Hugo markdown). CONDUCT/CONTRIBUTING/SECURITY skipped # (project meta). See #142. - lib_id: /spf13/cobra description: Go library for building modern command-line applications, with subcommands, POSIX flag parsing, and shell completion generation. kind: github-md versions: "1.9": { ref: v1.9.1 } "1.10": { ref: v1.10.2 } urls: - https://raw.githubusercontent.com/spf13/cobra/{ref}/README.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/active_help.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/user_guide.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/projects_using_cobra.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/completions/_index.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/completions/bash.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/completions/fish.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/completions/powershell.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/completions/zsh.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/docgen/_index.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/docgen/man.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/docgen/md.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/docgen/rest.md - https://raw.githubusercontent.com/spf13/cobra/{ref}/site/content/docgen/yaml.md # jdx/mise — polyglot version manager / task runner. Pinned by # .mise.toml in this repo. CalVer tagging (v2026.4.X = April 2026); # version key is major.minor (month), ref points at the latest patch # of that month. URL list covers concept + configuration + workflow # docs; the 64 auto-generated pages under docs/cli/ are skipped # (equivalent to `mise help `, not learning material). Plugin # authoring docs (plugin-*-development.md, plugin-lua-modules.md) are # also skipped — out of scope for deadzone's use of mise. See #142. - lib_id: /jdx/mise description: Polyglot tool version manager and task runner, drop-in successor to asdf with support for Go, Node.js, Python, Ruby, and many language runtimes. kind: github-md versions: "2026.3": { ref: v2026.3.9 } "2026.4": { ref: v2026.4.19 } urls: - https://raw.githubusercontent.com/jdx/mise/{ref}/README.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/index.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/about.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/architecture.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/cache-behavior.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/configuration.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/continuous-integration.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/core-tools.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/direnv.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/directories.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/errors.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/external-resources.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/faq.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/getting-started.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/glossary.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/hooks.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/ide-integration.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/installing-mise.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/mcp.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/paranoid.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/plugins.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/registry.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/shell-aliases.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/templates.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/tips-and-tricks.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/troubleshooting.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/url-replacements.md - https://raw.githubusercontent.com/jdx/mise/{ref}/docs/walkthrough.md # casey/just — command runner used by the top-level justfile. Pinned # by .mise.toml. Tags drop the `v` prefix from 1.0 onwards. README is # the canonical doc; GRAMMAR.md is the authoritative recipe-syntax # reference; skills/just/SKILL.md is the upstream agent-oriented # cheat sheet. CHANGELOG/CONTRIBUTING/中文 README skipped. See #142. - lib_id: /casey/just description: Command runner for project-specific tasks, similar in spirit to make but focused on running recipes rather than tracking file dependencies. kind: github-md versions: "1.49": { ref: "1.49.0" } "1.50": { ref: "1.50.0" } urls: - https://raw.githubusercontent.com/casey/just/{ref}/README.md - https://raw.githubusercontent.com/casey/just/{ref}/GRAMMAR.md - https://raw.githubusercontent.com/casey/just/{ref}/skills/just/SKILL.md # direnv/direnv — per-directory env loader driving .envrc at the repo # root. README + docs/* + man pages (served as markdown by upstream). # docs/github-actions.md is omitted because it landed in v2.37 and # does not exist at v2.36 — keeping a single URL list across both # minors (no per-version override needed). See #142. - lib_id: /direnv/direnv description: Shell extension that loads and unloads environment variables based on the current directory, scoped via per-project .envrc files. kind: github-md versions: "2.36": { ref: v2.36.0 } "2.37": { ref: v2.37.1 } urls: - https://raw.githubusercontent.com/direnv/direnv/{ref}/README.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/docs/development.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/docs/hook.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/docs/installation.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/docs/ruby.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/man/direnv.1.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/man/direnv.toml.1.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/man/direnv-stdlib.1.md - https://raw.githubusercontent.com/direnv/direnv/{ref}/man/direnv-fetchurl.1.md # daulet/tokenizers — Go bindings around Hugging Face tokenizers, # statically linked into deadzone at build time (libtokenizers.a + # CGO_LDFLAGS). Thin repo: README covers the static-build + CGO # pattern exhaustively; examples/go + examples/web are the reference # integrations. CONTRIBUTING skipped (project meta). See #142. - lib_id: /daulet/tokenizers description: Go bindings for HuggingFace's Rust tokenizers library, providing high-throughput BPE, WordPiece, and Unigram tokenization for ML pipelines. kind: github-md versions: "1.26": { ref: v1.26.0 } "1.27": { ref: v1.27.0 } urls: - https://raw.githubusercontent.com/daulet/tokenizers/{ref}/README.md - https://raw.githubusercontent.com/daulet/tokenizers/{ref}/examples/go/README.md - https://raw.githubusercontent.com/daulet/tokenizers/{ref}/examples/web/README.md # microsoft/onnxruntime — ONNX inference runtime reached transitively # via gomlx -> yalue/onnxruntime_go. Repo is huge; docs/ is mostly # internal dev notes (ABI, training, operator kernels) that are not # relevant to deadzone's use case. URL list is tightly scoped to the # C API surface (what CGO linking actually needs): project README + # C_API_Guidelines + c_cxx sample entry. See #142. - lib_id: /microsoft/onnxruntime description: Cross-platform inference and training accelerator for ONNX models, with hardware-accelerated execution providers (CUDA, CoreML, DirectML, TensorRT). kind: github-md versions: "1.24": { ref: v1.24.4 } "1.25": { ref: v1.25.0 } urls: - https://raw.githubusercontent.com/microsoft/onnxruntime/{ref}/README.md - https://raw.githubusercontent.com/microsoft/onnxruntime/{ref}/docs/C_API_Guidelines.md - https://raw.githubusercontent.com/microsoft/onnxruntime/{ref}/docs/c_cxx/README.md # modelcontextprotocol/modelcontextprotocol — the MCP spec (contract) # vs. the already-indexed /modelcontextprotocol/go-sdk (implementation). # Spec releases are date-coded; each tag keeps its own subtree under # docs/specification// so `{ref}` appears in both the tag and # the in-repo path (substituteRef is strings.ReplaceAll — multiple # occurrences are fine). Date strings don't fit the major.minor rule, # so version keys fall back to the full date (same pattern as # scaleway-sdk-go prereleases). tasks.mdx and schema.mdx are only in # the 2025-11-25 tag — omitted to keep both URL lists identical. See # #142. - lib_id: /modelcontextprotocol/modelcontextprotocol description: Specification and reference materials for the Model Context Protocol (MCP), an open standard for connecting LLM applications to data sources and tools. kind: github-md versions: "2025-06-18": { ref: 2025-06-18 } "2025-11-25": { ref: 2025-11-25 } urls: - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/index.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/changelog.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/architecture/index.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/index.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/authorization.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/lifecycle.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/security_best_practices.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/transports.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/utilities/cancellation.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/utilities/ping.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/basic/utilities/progress.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/client/elicitation.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/client/roots.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/client/sampling.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/index.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/prompts.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/resources.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/tools.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/utilities/completion.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/utilities/logging.mdx - https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/{ref}/docs/specification/{ref}/server/utilities/pagination.mdx # gin-gonic/gin — most popular Go HTTP web framework. Single-file # canonical guide at docs/doc.md (~70KB) plus README as the index. # No separate docs site — the in-repo markdown is the source of truth. - lib_id: /gin-gonic/gin description: HTTP web framework for Go with a martini-like API, focused on routing throughput and middleware composition for building REST APIs. kind: github-md ref: v1.12.0 urls: - https://raw.githubusercontent.com/gin-gonic/gin/{ref}/README.md - https://raw.githubusercontent.com/gin-gonic/gin/{ref}/docs/doc.md # go-chi/chi — lightweight, idiomatic Go HTTP router. Upstream uses the # README itself as the canonical documentation; there is no docs/ tree. - lib_id: /go-chi/chi description: Lightweight idiomatic HTTP router for Go, composable via middleware and built directly on net/http with no external runtime dependencies. kind: github-md ref: v5.2.5 urls: - https://raw.githubusercontent.com/go-chi/chi/{ref}/README.md # ent/ent — entity framework / ORM for Go (Facebook origin). Docs live # in doc/md/ as a Docusaurus source tree mixing .md and .mdx; the .mdx # files contain `import Tabs from '@theme/Tabs'`-style component imports # that surface as a few lines of stray text in parsed output, but the # underlying content is otherwise clean markdown. community.md (stub), # contributors.md (29KB list), translations.md, writing-docs.md skipped # — project meta, not learning material. - lib_id: /ent/ent description: Entity framework for Go that generates type-safe code from a graph-based schema, supporting SQL backends and complex relations. kind: github-md ref: v0.14.6 urls: - https://raw.githubusercontent.com/ent/ent/{ref}/README.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/aggregate.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/ci.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/code-gen.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/crud.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/data-migrations.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/dialects.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/eager-load.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/extension.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/faq.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/features.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/generating-ent-schemas.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/getting-started.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/globalid.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/graphql.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/hooks.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/interceptors.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/migrate.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/multischema-migrations.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/paging.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/predicates.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/privacy.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-annotations.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-def.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-edges.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-fields.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-indexes.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-mixin.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/schema-view.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/sql-integration.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/templates.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/testing.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/transactions.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/traversals.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-setup.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-intro.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-setting-up.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-generating-proto.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-generating-a-service.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-server-and-client.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-edges.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-ext-service.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-optional-fields.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-grpc-service-generation-options.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-crud.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql.mdx - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-schema-generator.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-mutation-input.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-paginate.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-filter-input.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-field-collection.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-tx-mutation.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/tutorial-todo-gql-node.md - https://raw.githubusercontent.com/ent/ent/{ref}/doc/md/versioned-migrations.mdx # sqlc-dev/sqlc — generates type-safe Go code from SQL. docs/ is a # Sphinx-MyST tree (.rst index + mostly .md content), so kind: github-md # works directly — we just skip the two stray .rst files # (reference/language-support.rst, guides/using-go-and-pgx.rst). # Coverage spans overview/install + howto/ + reference/ + tutorials/ # + guides/. - lib_id: /sqlc-dev/sqlc description: Generates type-safe Go code from raw SQL queries, validating queries against the database schema at compile time. kind: github-md ref: v1.31.1 urls: - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/README.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/overview/install.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/ci-cd.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/ddl.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/delete.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/embedding.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/generate.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/insert.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/managed-databases.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/named_parameters.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/overrides.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/prepared_query.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/push.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/query_count.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/rename.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/select.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/structs.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/transactions.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/update.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/verify.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/howto/vet.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/changelog.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/cli.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/config.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/datatypes.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/environment-variables.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/macros.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/reference/query-annotations.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/tutorials/getting-started-mysql.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/tutorials/getting-started-postgresql.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/tutorials/getting-started-sqlite.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/development.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/migrating-off-hosted-managed-databases.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/migrating-to-sqlc-gen-kotlin.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/migrating-to-sqlc-gen-python.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/plugins.md - https://raw.githubusercontent.com/sqlc-dev/sqlc/{ref}/docs/guides/privacy.md # uptrace/bun — SQL-first Go ORM. Docs live in a separate `bun-docs` # repo (no tags — pinned to commit SHA), VuePress source under # docs/{guide,postgres}/. The postgres/ pages are general-purpose # PostgreSQL operational guides authored by uptrace, not strictly # bun-specific — included because they're load-bearing for users # adopting bun + Postgres. lib_id stays /uptrace/bun (the lib repo) # for canonical naming; URLs target the bun-docs repo. - lib_id: /uptrace/bun description: SQL-first Go ORM and query builder for PostgreSQL, MySQL, and SQLite, with first-class support for migrations and bulk operations. kind: github-md ref: 290ada1ee4c46eae2af9394fbfb0d7e1470eb118 urls: - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/README.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/complex-queries.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/cursor-pagination.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/custom-types.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/debugging.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/drivers.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/fixtures.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/golang-orm.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/hooks.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/migrations.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/models.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/performance-monitoring.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/pg-migration.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/placeholders.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/queries.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-common-table-expressions.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-create-table.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-delete.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-drop-table.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-insert.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-merge.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-select.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-truncate-table.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-update.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/query-where.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/relations.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/running-bun-in-production.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/soft-deletes.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/starter-kit.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/guide/transactions.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/copy-data.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/faceted-full-text-search-tsvector.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/listen-notify.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/performance-tuning.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/pgbackrest-s3-backups.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/postgres-arrays.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/postgres-data-types.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/postgres-uuid-generate.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/table-partition.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/tuning-zfs-aws-ebs.md - https://raw.githubusercontent.com/uptrace/bun-docs/{ref}/docs/postgres/zero-downtime-migrations.md # honojs/hono — small, fast Web Standards-based framework. Docs live in # the sibling `honojs/website` repo (VitePress), pinned to a commit SHA # since the docs repo has no tags. Coverage spans api/, concepts/, # getting-started/ (deployment platform guides), guides/, helpers/, and # middleware/builtin/. lib_id stays /honojs/hono (the lib repo) for # canonical naming; URLs target honojs/website. Same pattern as bun. - lib_id: /honojs/hono description: JavaScript web framework built on Web Standards, runs on Cloudflare Workers, Deno, Bun, Node.js, and AWS Lambda. kind: github-md ref: 7cca6ae11bd538f8e2cf119ddb8646744becb60f urls: - https://raw.githubusercontent.com/honojs/website/{ref}/docs/index.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/context.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/exception.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/hono.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/presets.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/request.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/api/routing.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/benchmarks.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/developer-experience.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/middleware.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/motivation.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/routers.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/stacks.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/concepts/web-standard.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/ali-function-compute.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/aws-lambda.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/azure-functions.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/basic.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/bun.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/cloudflare-pages.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/cloudflare-workers.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/deno.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/fastly.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/google-cloud-run.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/lambda-edge.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/netlify.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/nextjs.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/nodejs.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/service-worker.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/supabase-functions.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/vercel.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/getting-started/webassembly-wasi.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/best-practices.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/create-hono.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/examples.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/faq.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/helpers.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/jsx-dom.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/jsx.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/middleware.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/others.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/rpc.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/testing.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/guides/validation.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/accepts.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/adapter.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/conninfo.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/cookie.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/css.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/dev.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/factory.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/html.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/jwt.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/proxy.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/route.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/ssg.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/streaming.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/testing.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/helpers/websocket.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/basic-auth.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/bearer-auth.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/body-limit.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/cache.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/combine.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/compress.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/context-storage.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/cors.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/csrf.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/etag.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/ip-restriction.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/jsx-renderer.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/jwk.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/jwt.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/language.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/logger.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/method-override.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/pretty-json.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/request-id.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/secure-headers.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/timeout.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/timing.md - https://raw.githubusercontent.com/honojs/website/{ref}/docs/middleware/builtin/trailing-slash.md # expressjs/express — venerable Node.js HTTP framework. Docs live in # `expressjs/expressjs.com` (Jekyll on gh-pages branch — pin commit SHA). # Markdown files have Jekyll frontmatter (`---layout: page---`) and # Liquid `{{ page.lang }}` templating in URLs; both surface as text in # chunks but don't break parsing. English subtree only (en/) — non-en # localizations excluded. Versioned API references (en/3x, en/4x, en/5x) # excluded; only the current top-level api.md is indexed. blog/, # changelog/, en/resources/contributing.md skipped (project meta). - lib_id: /expressjs/express description: Minimal and flexible Node.js HTTP web application framework, providing routing, middleware, and a baseline feature set for web and APIs. kind: github-md ref: 2d4df3f05fbd5d5f211f5938395ae965e8714d60 urls: - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/api.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/behind-proxies.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/database-integration.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/debugging.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/error-handling.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/migrating-4.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/migrating-5.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/overriding-express-api.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/routing.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/using-middleware.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/using-template-engines.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/guide/writing-middleware.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/advanced/best-practice-performance.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/advanced/best-practice-security.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/advanced/developing-template-engines.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/advanced/healthcheck-graceful-shutdown.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/advanced/security-updates.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/basic-routing.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/examples.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/faq.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/generator.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/hello-world.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/installing.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/starter/static-files.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/resources/community.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/resources/glossary.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/resources/middleware.md - https://raw.githubusercontent.com/expressjs/expressjs.com/{ref}/en/resources/utils.md # fastify/fastify — fast and low-overhead Node.js framework. Docs ship # in-repo at docs/{Guides,Reference}/. Pinned to v5.8.5 (latest stable # 5.x). Contributing.md skipped (project meta). Migration-Guide-V3/V4/V5 # kept — load-bearing for users upgrading. - lib_id: /fastify/fastify description: Fast and low-overhead web framework for Node.js, focused on schema-based JSON validation and high request-throughput via efficient routing. kind: github-md ref: v5.8.5 urls: - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/index.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Benchmarking.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Database.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Delay-Accepting-Requests.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Detecting-When-Clients-Abort.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Ecosystem.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Fluent-Schema.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Getting-Started.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Index.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Migration-Guide-V3.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Migration-Guide-V4.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Migration-Guide-V5.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Plugins-Guide.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Prototype-Poisoning.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Recommendations.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Serverless.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Style-Guide.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Testing.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Write-Plugin.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Guides/Write-Type-Provider.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/ContentTypeParser.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Decorators.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Encapsulation.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Errors.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/HTTP2.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Hooks.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Index.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/LTS.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Lifecycle.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Logging.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Middleware.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Plugins.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Principles.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Reply.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Request.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Routes.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Server.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Type-Providers.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/TypeScript.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Validation-and-Serialization.md - https://raw.githubusercontent.com/fastify/fastify/{ref}/docs/Reference/Warnings.md # nestjs/nest — opinionated Node.js framework. Docs live in # `nestjs/docs.nestjs.com` (Angular-driven site, master branch, no tags # — pin commit SHA). Markdown files contain Angular preprocessor markers # like `@@filename(...)` for code-language switching and HTML `
` # tags for images; both surface as text in chunks but don't break the # parser. lib_id stays /nestjs/nest. content/{enterprise,support}.md and # content/discover/who-uses.* skipped (sales/listing meta). - lib_id: /nestjs/nest description: Node.js framework for building scalable server-side applications with TypeScript, using decorators, dependency injection, and modular architecture inspired by Angular. kind: github-md ref: 239dffa12125337a987128439f08ff884108050c urls: - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/introduction.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/first-steps.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/controllers.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/components.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/modules.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/middlewares.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/exception-filters.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/pipes.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/guards.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/interceptors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/custom-decorators.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/application-context.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/deployment.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/migration.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/cli/libraries.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/cli/overview.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/cli/scripts.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/cli/usages.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/cli/workspaces.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/devtools/ci-cd.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/devtools/overview.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/errors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/global-prefix.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/http-adapter.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/hybrid-application.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/keep-alive-connections.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/multiple-servers.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/raw-body.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/request-lifecycle.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/faq/serverless.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/async-components.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/circular-dependency.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/dependency-injection.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/discovery-service.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/dynamic-modules.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/execution-context.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/lazy-loading-modules.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/lifecycle-events.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/module-reference.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/platform-agnosticism.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/provider-scopes.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/fundamentals/unit-testing.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/cli-plugin.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/complexity.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/directives.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/extensions.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/federation.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/field-middleware.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/guards-interceptors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/interfaces.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/mapped-types.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/mutations.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/plugins.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/quick-start.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/resolvers-map.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/scalars.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/schema-generator.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/sharing-models.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/subscriptions.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/graphql/unions-and-enums.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/basics.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/custom-transport.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/exception-filters.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/grpc.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/guards.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/interceptors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/kafka.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/mqtt.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/nats.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/pipes.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/rabbitmq.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/microservices/redis.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/cli-plugin.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/decorators.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/introduction.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/mapped-types.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/operations.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/other-features.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/security.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/openapi/types-and-parameters.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/async-local-storage.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/cqrs.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/crud-generator.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/documentation.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/hot-reload.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/mikroorm.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/mongodb.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/necord.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/nest-commander.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/passport.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/prisma.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/repl.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/router-module.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/sentry.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/serve-static.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/sql-sequelize.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/sql-typeorm.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/suites.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/swc.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/recipes/terminus.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/authentication.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/authorization.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/cors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/csrf.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/encryption-hashing.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/helmet.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/security/rate-limiting.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/caching.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/compression.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/configuration.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/cookies.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/events.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/file-upload.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/http-module.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/logger.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/mongo.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/mvc.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/performance.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/queues.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/serialization.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/server-sent-events.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/sessions.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/sql.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/streaming-files.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/task-scheduling.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/validation.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/techniques/versioning.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/adapter.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/exception-filters.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/gateways.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/guards.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/interceptors.md - https://raw.githubusercontent.com/nestjs/docs.nestjs.com/{ref}/content/websockets/pipes.md # vuejs/vue — progressive frontend framework. Docs ship in a sibling # repo `vuejs/docs` (VitePress, no tags — pinned by commit SHA). Markdown # is mostly clean prose with VitePress directives (`:::tip`, conditional # `
` / `
` blocks # for dual-API content); both surface as text in chunks. lib_id stays # /vuejs/vue. examples/ (Vue code), about/, error-reference/ (auto-gen), # ecosystem/ skipped — out of learning scope. mouse.js in reusability/ # is a code file, not docs. - lib_id: /vuejs/vue description: Progressive JavaScript framework for building user interfaces, with reactive data binding, component composition, and a single-file component model. kind: github-md ref: 037a76daf60b0638e2837e8daa3174262e37af65 urls: - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/glossary/index.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/introduction.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/quick-start.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/application.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/class-and-style.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/component-basics.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/computed.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/conditional.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/event-handling.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/forms.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/lifecycle.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/list.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/reactivity-fundamentals.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/template-refs.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/template-syntax.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/essentials/watchers.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/async.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/attrs.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/events.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/props.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/provide-inject.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/registration.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/slots.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/components/v-model.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/built-ins/keep-alive.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/built-ins/suspense.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/built-ins/teleport.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/built-ins/transition-group.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/built-ins/transition.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/reusability/composables.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/reusability/custom-directives.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/reusability/plugins.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/routing.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/sfc.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/ssr.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/state-management.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/testing.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/scaling-up/tooling.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/best-practices/accessibility.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/best-practices/performance.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/best-practices/production-deployment.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/best-practices/security.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/typescript/composition-api.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/typescript/options-api.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/typescript/overview.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/animation.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/composition-api-faq.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/reactivity-in-depth.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/reactivity-transform.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/render-function.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/rendering-mechanism.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/ways-of-using-vue.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/guide/extras/web-components.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/application.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/built-in-components.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/built-in-directives.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/built-in-special-attributes.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/built-in-special-elements.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/compile-time-flags.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/component-instance.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/composition-api-dependency-injection.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/composition-api-helpers.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/composition-api-lifecycle.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/composition-api-setup.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/custom-elements.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/custom-renderer.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/general.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/index.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/options-composition.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/options-lifecycle.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/options-misc.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/options-rendering.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/options-state.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/reactivity-advanced.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/reactivity-core.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/reactivity-utilities.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/render-function.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/sfc-css-features.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/sfc-script-setup.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/sfc-spec.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/ssr.md - https://raw.githubusercontent.com/vuejs/docs/{ref}/src/api/utility-types.md # sveltejs/svelte — frontend framework with compiled output. Docs live # in-repo under `documentation/docs/` (no per-package tag corresponds # to the docs at v5+, so pinned by commit SHA on the main monorepo). # Markdown is exceptionally clean: pure prose + code blocks, no MDX # components, no preprocessor markers. 99-legacy/ skipped — covers # Svelte 3/4 patterns historical only; 99-faq.md kept. index.md per # subdir skipped (TOC-only stubs). - lib_id: /sveltejs/svelte description: Compiler-based UI framework that converts components to efficient vanilla JavaScript at build time, with no virtual DOM and built-in reactivity. kind: github-md ref: dc5bd887b50c593033408b7faa079d56f38e74b9 urls: - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/01-introduction/01-overview.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/01-introduction/02-getting-started.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/01-introduction/03-svelte-files.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/01-introduction/04-svelte-js-files.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/01-what-are-runes.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/02-$state.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/03-$derived.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/04-$effect.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/05-$props.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/06-$bindable.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/07-$inspect.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/02-runes/08-$host.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/01-basic-markup.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/02-if.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/03-each.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/04-key.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/05-await.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/06-snippet.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/07-@render.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/08-@html.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/09-@attach.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/10-@const.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/11-@debug.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/12-bind.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/13-use.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/14-transition.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/15-in-and-out.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/16-animate.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/17-style.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/18-class.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/03-template-syntax/19-await-expressions.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/04-styling/01-scoped-styles.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/04-styling/02-global-styles.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/04-styling/03-custom-properties.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/04-styling/04-nested-style-elements.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/01-svelte-boundary.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/02-svelte-window.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/03-svelte-document.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/04-svelte-body.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/05-svelte-head.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/06-svelte-element.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/05-special-elements/07-svelte-options.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/06-runtime/01-stores.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/06-runtime/02-context.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/06-runtime/03-lifecycle-hooks.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/06-runtime/04-imperative-component-api.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/06-runtime/05-hydratable.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/01-best-practices.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/02-testing.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/03-typescript.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/04-custom-elements.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/06-v4-migration-guide.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/07-v5-migration-guide.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/07-misc/99-faq.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/20-svelte.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-action.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-animate.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-attachments.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-compiler.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-easing.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-events.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-legacy.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-motion.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-reactivity-window.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-reactivity.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-server.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-store.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/21-svelte-transition.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/30-compiler-errors.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/30-compiler-warnings.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/30-runtime-errors.md - https://raw.githubusercontent.com/sveltejs/svelte/{ref}/documentation/docs/98-reference/30-runtime-warnings.md # withastro/astro — content-driven web framework. Docs live in sibling # repo `withastro/docs` (Starlight-based, no tags — pinned by commit # SHA), authored as .mdx with light component usage (`:::note`, # ``); prose-dense and parser-friendly. English subtree only # (en/) — non-en localizations excluded. Top-level pages + basics + # concepts + guides (top-level) + recipes + reference (top-level) only. # tutorial/ subtree (interactive course, 7 sub-modules) excluded — # tutorial-shaped content benefits less from semantic search than from # linear reading. en/guides/ subdirs (cms, deploy, integrations-guide, # migrate-to-astro, etc.) and en/reference/ subdirs (errors, # experimental-flags, modules) skipped to keep PR-3 manageable; can be # promoted later if user-requested. - lib_id: /withastro/astro description: Web framework for content-driven sites that ships zero JavaScript by default, with island architecture and multi-framework component support (React, Vue, Svelte). kind: github-md ref: 6bd56078bfb402e32ed639c507872c2cc91f8d49 urls: - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/astro-courses.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/contribute.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/develop-and-build.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/editor-setup.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/getting-started.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/install-and-setup.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/upgrade-astro.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/basics/astro-components.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/basics/astro-pages.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/basics/layouts.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/basics/project-structure.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/concepts/islands.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/concepts/why-astro.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/actions.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/astro-db.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/authentication.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/build-with-ai.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/client-side-scripts.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/configuring-astro.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/content-collections.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/data-fetching.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/dev-toolbar.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/ecommerce.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/endpoints.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/environment-variables.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/fonts.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/framework-components.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/images.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/imports.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/integrations.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/internationalization.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/markdown-content.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/middleware.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/on-demand-rendering.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/prefetch.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/routing.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/server-islands.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/sessions.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/styling.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/syntax-highlighting.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/testing.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/troubleshooting.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/typescript.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/guides/view-transitions.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/add-yaml-support.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/analyze-bundle-size.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/build-custom-img-component.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/build-forms-api.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/build-forms.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/bun.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/call-endpoints.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/captcha.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/customizing-output-filenames.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/docker.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/dynamically-importing-images.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/external-links.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/i18n.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/making-toolbar-apps.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/modified-time.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/reading-time.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/rss.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/sharing-state-islands.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/sharing-state.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/streaming-improve-page-performance.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/recipes/tailwind-rendered-markdown.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/adapter-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/api-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/astro-syntax.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/cli-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/configuration-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/container-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/content-loader-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/dev-toolbar-app-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/directives-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/error-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/font-provider-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/image-service-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/integrations-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/legacy-flags.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/programmatic-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/renderer-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/routing-reference.mdx - https://raw.githubusercontent.com/withastro/docs/{ref}/src/content/docs/en/reference/session-driver-reference.mdx # tokio-rs/tokio — async runtime for Rust. Docs live in sibling repo # `tokio-rs/website` (Hugo, no tags — pinned by commit SHA), authored # as plain markdown. Coverage: glossary + index + topics/ (testing, # tracing, shutdown, bridging) + the canonical Tokio tutorial. blog/ # excluded. - lib_id: /tokio-rs/tokio description: Asynchronous runtime for Rust providing IO, scheduling, and synchronization primitives for writing reliable network applications. kind: github-md ref: 46517ae6c29326df204bb8abd96308012809abba urls: - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/glossary.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/index.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/bridging.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/index.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/shutdown.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/testing.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/tracing-next-steps.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/topics/tracing.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/async.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/channels.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/framing.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/hello-tokio.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/index.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/io.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/select.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/setup.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/shared-state.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/spawning.md - https://raw.githubusercontent.com/tokio-rs/website/{ref}/content/tokio/tutorial/streams.md # serde-rs/serde — Rust serialization framework. Docs live in sibling # repo `serde-rs/serde-rs.github.io` (Jekyll on GH Pages, no tags — # pinned by commit SHA). Markdown source under _src/, prose-dense. - lib_id: /serde-rs/serde description: Generic serialization and deserialization framework for Rust, supporting JSON, YAML, TOML, MessagePack, and many other formats via derive macros. kind: github-md ref: 811393f8ddf79078d559bc479eb560927534148b urls: - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/README.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/SUMMARY.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attr-bound.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attr-default.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attr-flatten.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attr-rename.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attr-skip-serializing.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/attributes.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/container-attrs.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/conventions.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/convert-error.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/custom-date-format.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/custom-serialization.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/data-format.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/data-model.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/derive.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/deserialize-map.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/deserialize-struct.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/enum-number.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/enum-representations.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/error-handling.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/examples.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/feature-flags.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/field-attrs.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/help.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/ignored-any.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/impl-deserialize.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/impl-deserializer.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/impl-serialize.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/impl-serializer.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/json.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/lifetimes.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/no-std.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/remote-derive.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/stream-array.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/string-or-struct.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/transcode.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/unit-testing.md - https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/{ref}/_src/variant-attrs.md # redis/docs — official Redis documentation. Hugo-based site under # content/, pinned by commit SHA. PR-4 covers ONLY content/develop/ # core OSS dev paths (get-started, data-types top-level, reference). # Heavy subtrees deferred to follow-up PRs: # - content/develop/clients/ (per-language SDKs, would balloon URL count) # - content/develop/{programmability,pubsub,ai}/ # - content/develop/data-types/{json,probabilistic,streams,timeseries,vector-sets}/ subdirs # - content/commands/ (per-command pages, hundreds of files) # - content/operate/ (Redis Enterprise / Redis Cloud admin) # - content/apis/, content/embeds/ # Hugo `_index.md` files (Hugo section landings) included; gopher.md # in reference/ skipped (historical Gopher protocol). - lib_id: /redis/redis description: In-memory key-value data structure store used as a database, cache, message broker, and streaming engine, with persistence and pub/sub. kind: github-md ref: 488b72b3a95c8c90c9fa42deb5c7b9868f002935 urls: - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/_index.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/_index.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/data-store.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/document-database.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/faq.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/rag.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/redis-in-ai.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/get-started/vector-database.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/_index.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/bitfields.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/bitmaps.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/compare-data-types.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/geospatial.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/hashes.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/lists.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/sets.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/sorted-sets.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/data-types/strings.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/_index.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/client-side-caching.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/clients.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/command-arguments.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/command-tips.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/key-specs.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/protocol-spec.md - https://raw.githubusercontent.com/redis/docs/{ref}/content/develop/reference/sentinel-clients.md # dragonflydb/dragonfly — modern Redis-compatible in-memory DB. Docs # in sibling repo `dragonflydb/documentation` (Docusaurus, no tags — # pinned by commit SHA). _category_.yml files (Docusaurus metadata, # not docs) skipped. command-reference/ subdirs (per-command groups # acl/bloom-filter/cluster-management/etc.) deferred to follow-up if # user-requested — top-level compatibility.md only. cloud/ subdirs # (connect/migrate/sso) similarly deferred. - lib_id: /dragonflydb/dragonfly description: In-memory key-value data store fully compatible with the Redis and Memcached protocols, designed for higher throughput and lower memory footprint. kind: github-md ref: b6c9fc9ecd8e71f247769722eb5697ec885064b1 urls: - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/about/about.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/about/faq.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/about/license.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/benchmark.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/binary.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/cloud.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/docker-compose.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/docker.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/getting-started.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/kubernetes-operator.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/kubernetes.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/getting-started/native-packages.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/development/cli.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/development/sdks.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/command-reference/compatibility.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/backups.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/bandwidth.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/cloud.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/connections.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/data-retention.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/datastores.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/enterprise.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/getting-started.md - https://raw.githubusercontent.com/dragonflydb/documentation/{ref}/docs/cloud/monitoring.md # open-telemetry/opentelemetry.io — official OTel website (Hugo). # Pinned by commit SHA. PR-4 covers core concepts + collector + # getting-started + demo + guidance top-level. Heavy subtrees # deferred to follow-up PRs: # - content/en/docs/languages/ (per-language SDKs: Go, Python, Java, # Node, .NET, Ruby, etc. — each a deep subtree) # - content/en/docs/concepts/{context-propagation,instrumentation, # instrumentation-scope,resources,sampling,signals}/ subdirs # - content/en/docs/{contributing,compatibility,migration}/ # - content/en/docs/specs/, /security/ - lib_id: /open-telemetry/opentelemetry description: Vendor-neutral observability framework with APIs, SDKs, and the OTel Collector for instrumenting applications and forwarding traces, metrics, and logs to aggregation backends (Loki, Jaeger, Prometheus). kind: github-md ref: 04f6be942965ba53e19121fc4966d603d8787f95 urls: - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/_index.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/_index.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/components.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/distributions.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/glossary.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/observability-primer.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/concepts/semantic-conventions.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/getting-started/_index.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/getting-started/dev.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/getting-started/ops.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/getting-started/reference-application-specification.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/_index.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/architecture.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/benchmarks.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/configuration.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/distributions.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/internal-telemetry.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/management.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/quick-start.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/registry.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/resiliency.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/scaling.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/transforming-telemetry.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/collector/troubleshooting.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/_index.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/architecture.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/development.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/docker-deployment.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/forking.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/kubernetes-deployment.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/demo/tests.md - https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/{ref}/content/en/docs/guidance/_index.md # grafana/grafana — observability dashboard platform. Hugo docs live # in-repo at docs/sources/. The product is huge (200+ doc pages); PR-5 # keeps ONLY top-level section landings to make the corpus discoverable # without bloating. Deeper subtrees deferred: # - administration/, breaking-changes/, developer-resources/, # developers/ (plugin development), as-code/, setup-grafana/ # (install), getting-started/, troubleshooting/ # The kept landings (_index.md) capture the hub-and-spoke nav for each # major topic; users follow links from there. Aggressive scope-fence # is deliberate — Grafana docs deserve a dedicated PR when sized # properly. - lib_id: /grafana/grafana description: Observability platform for visualization and analysis of metrics, logs, and traces, with a plugin architecture supporting many data sources. kind: github-md ref: 2a9d7c18219e9421c3c9a44cb40df19657ba5dbb urls: - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/_index.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/introduction/_index.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/introduction/grafana-cloud.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/introduction/grafana-enterprise.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/fundamentals/_index.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/datasources/_index.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/datasources/troubleshooting.md - https://raw.githubusercontent.com/grafana/grafana/{ref}/docs/sources/alerting/_index.md # NOTE: dashboards/_index.md, explore/_index.md, and # panels-visualizations/_index.md don't exist as files at the # top level — content is one level deeper. Skipped here; cover # in a follow-up PR if dashboard/panel docs are user-requested. # grafana/loki — log aggregation system. docs/sources/ Hugo, in-repo. # Coverage: get-started + query (LogQL is the load-bearing query # language; full top-level files included) + send-data + alert # landings. Deferred: setup/, operations/, configure/, reference/, # release-notes/, community/, visualize/. .png files filtered out. - lib_id: /grafana/loki description: Horizontally-scalable, multi-tenant log aggregation system inspired by Prometheus, indexing labels rather than full log content for cheap storage. kind: github-md ref: d8f4d0f6668928184dd4aa993a7481101b0ea169 urls: - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/_index.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/get-started/_index.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/get-started/architecture.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/get-started/components.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/get-started/deployment-modes.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/get-started/hash-rings.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/_index.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/analyzer.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/bp-query.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/ip.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/metric_queries.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/query_acceleration.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/query_examples.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/query_reference.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/query/template_functions.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/send-data/_index.md - https://raw.githubusercontent.com/grafana/loki/{ref}/docs/sources/alert/_index.md # grafana/tempo — distributed tracing backend. docs/sources/tempo/ # Hugo, in-repo. Coverage: tempo top-level + introduction (5 files) + # api_docs (3 files, skip .png) + configuration top-level (skip # AGENTS.md, .png). helm-charts subtree deferred. - lib_id: /grafana/tempo description: Distributed tracing backend that ingests OpenTelemetry, Jaeger, and Zipkin formats with object-storage-only persistence (S3, GCS, Azure Blob). kind: github-md ref: 4dc3e5b0d3463a0b67498b662b85a148698b4afd urls: - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/_index.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/docker-example.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/introduction/_index.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/introduction/architecture.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/introduction/glossary.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/introduction/telemetry.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/introduction/trace-structure.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/api_docs/_index.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/api_docs/mcp-server.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/api_docs/pushing-spans-with-http.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/_index.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/anonymous-usage-reporting.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/manifest.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/parquet.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/polling.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/tenant-ids.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/usage-tracker.md - https://raw.githubusercontent.com/grafana/tempo/{ref}/docs/sources/tempo/configuration/use-trace-data.md # grafana/mimir — horizontally-scalable Prometheus-compatible TSDB. # docs/sources/mimir/ Hugo, in-repo. Each subdir contains only # `_index.md` at the top level (real content is one level deeper); # PR-5 captures section landings for hub-and-spoke discovery. # Deeper subtrees (manage/, configure/, get-started/, references/) # deferred — they would require their own dedicated PR. - lib_id: /grafana/mimir description: Highly-scalable long-term storage for Prometheus metrics, supporting horizontal scaling, multi-tenancy, and cardinality at the billion-series scale. kind: github-md ref: cc1467ac91ae9358a46277660b20acae000163c5 urls: - https://raw.githubusercontent.com/grafana/mimir/{ref}/docs/sources/mimir/_index.md - https://raw.githubusercontent.com/grafana/mimir/{ref}/docs/sources/mimir/introduction/_index.md - https://raw.githubusercontent.com/grafana/mimir/{ref}/docs/sources/mimir/get-started/_index.md - https://raw.githubusercontent.com/grafana/mimir/{ref}/docs/sources/mimir/configure/_index.md - https://raw.githubusercontent.com/grafana/mimir/{ref}/docs/sources/mimir/manage/_index.md # grafana/alloy — OpenTelemetry-compatible collector with programmable # pipelines. docs/sources/ Hugo, in-repo. Coverage: introduction (5), # get-started (4), configure (8 OS-specific), tutorials (6), # monitor (8), collect (8). Deferred: reference/ (component reference # is massive — every component gets its own page; deserves own PR), # set-up/, troubleshoot/, assets/, shared/. - lib_id: /grafana/alloy description: Vendor-neutral OpenTelemetry Collector distribution from Grafana Labs, with built-in pipelines for Prometheus, Loki, Tempo, and Mimir. kind: github-md ref: e830b3be28412ab6c5659d8c238c208fffd7354a urls: - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/introduction/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/introduction/how-alloy-works.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/introduction/otel_alloy.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/introduction/requirements.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/introduction/why-alloy.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/get-started/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/get-started/clustering.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/get-started/modules.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/get-started/syntax.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/kubernetes.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/linux.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/load-remote-configuration.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/macos.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/nonroot.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/proxy.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/configure/windows.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/first-components-and-stdlib.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/logs-and-relabeling-basics.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/processing-logs.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/send-logs-to-loki.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/tutorials/send-metrics-to-prometheus.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-docker-containers.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-kubernetes-logs.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-linux.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-logs-from-file.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-logs-over-tcp.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-structured-logs.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/monitor/monitor-syslog-messages.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/_index.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/azure-event-hubs-logs.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/choose-component.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/datadog-traces-metrics.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/ecs-opentelemetry-data.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/logs-in-kubernetes.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/metamonitoring.md - https://raw.githubusercontent.com/grafana/alloy/{ref}/docs/sources/collect/opentelemetry-data.md # grafana/k6 — load testing tool. Docs in sibling repo # `grafana/k6-docs`, Hugo, versioned; pinned to v1.7.x (latest stable # k6 series). Coverage: get-started + using-k6 (the canonical usage # surface, 15 files) + testing-guides (10 files). Deferred: # - examples/, javascript-api/ (generated reference, huge) # - extensions/, k6-studio/, grafana-cloud-k6/ (hosted-product) # - reference/, results-output/, set-up/, release-notes/ - lib_id: /grafana/k6 description: Load-testing tool scripted in JavaScript, designed for engineering teams to test API and web application performance under controlled traffic patterns. kind: github-md ref: d257660eb1be0efa1db7d9ddb5e3b54306798388 urls: - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/_index.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/get-started/_index.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/get-started/resources.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/get-started/results-output.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/_index.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/assertions.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/checks.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/cookies.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/environment-variables.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/execution-context-variables.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/http-debugging.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/http-requests.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/javascript-typescript-compatibility-mode.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/k6-deps-command.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/modules.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/run-k6-test-script.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/tags-and-groups.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/test-lifecycle.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/using-k6/thresholds.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/_index.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/api-load-testing.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/automated-performance-testing.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/calculate-concurrent-users.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/load-testing-websites.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/performance-testing-grpc-services.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/running-distributed-tests.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/running-large-tests.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/synthetic-monitoring.md - https://raw.githubusercontent.com/grafana/k6-docs/{ref}/docs/sources/k6/v1.7.x/testing-guides/use-chai-with-k6.md # grafana/pyroscope — continuous profiling platform. docs/sources/ # Hugo, in-repo. Coverage: introduction + get-started + configure- # client + view-and-analyze-profile-data. Deferred: configure-server/, # deploy-kubernetes/, reference-pyroscope-* (architecture refs), # reference-server-api/, release-notes/, upgrade-guide/. - lib_id: /grafana/pyroscope description: Continuous profiling backend that aggregates and analyzes CPU, memory, and goroutine profiles across services for production performance debugging. kind: github-md ref: 4813c00d022f506d626e38e806f7bacf432865c5 urls: - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/_index.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/introduction/_index.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/introduction/flamegraphs.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/introduction/pyroscope-in-grafana.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/introduction/what-is-profiling.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/get-started/_index.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/get-started/ride-share-tutorial.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/configure-client/_index.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/configure-client/aws-lambda.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/configure-client/memory-overhead.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/configure-client/profile-types.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/_index.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/explore-profiles.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/line-by-line.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/profile-cli.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/pyroscope-ui.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/self-vs-total.md - https://raw.githubusercontent.com/grafana/pyroscope/{ref}/docs/sources/view-and-analyze-profile-data/traces-to-profiles.md # grafana/faro-web-sdk — frontend RUM (Real User Monitoring) SDK. # docs/sources/ Hugo, in-repo. Smallest coverage in PR-5 — only the # tutorials directory is user-facing; developer/ is internal release # process, skipped. - lib_id: /grafana/faro-web-sdk description: Frontend application observability SDK that captures errors, traces, and web vitals from browser apps and forwards them to Grafana Cloud or Tempo/Loki. kind: github-md ref: c96c565026503972eceae6c47d53fd81eaf9da75 urls: - https://raw.githubusercontent.com/grafana/faro-web-sdk/{ref}/docs/sources/tutorials/quick-start-browser.md - https://raw.githubusercontent.com/grafana/faro-web-sdk/{ref}/docs/sources/tutorials/use-angular.md - https://raw.githubusercontent.com/grafana/faro-web-sdk/{ref}/docs/sources/tutorials/use-cdn-library.md # ── kind: godoc ────────────────────────────────────────────── # Current policy (locked 2026-05-04): kind: godoc is reserved for # the Go stdlib only. Third-party Go modules continue to use # kind: github-md — their narrative docs (READMEs, hugo sites, # mkdocs) typically beat go/doc-emitted API reference for the kinds # of queries an LLM-augmented coding agent runs (concept-finding, # idiomatic-pattern lookup, completions/build-config questions). # The proxy.golang.org + sumdb fetch path is shipped and tested # (#198) but no third-party entry is currently configured. # # Revisit if a specific lib surfaces a real gap (e.g. its github-md # corpus misses signatures the LLM keeps hallucinating). The "godoc # vs github-md per lib" evaluation is policy-deferred — file a new # research issue if scope expands beyond stdlib. # # The Go stdlib has no narrative alternative — go/doc is the only # source — so /golang/go/ entries below are the single # canonical place this kind is exercised in production. # ── Go stdlib (auto-generated by scripts/genstdlib/main.go) ── # 186 packages, ref: go1.26.2. Re-run on Go version bump: # just gen-stdlib > /tmp/stdlib.yaml && splice this section into # libraries_sources.yaml under '── kind: godoc ──'. # Description format: Key APIs: - lib_id: /golang/go/archive/tar description: "Package tar implements access to tar archives. Key APIs: FileInfoNames, Format, Header, Reader, Writer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/archive/tar?ref={ref} - lib_id: /golang/go/archive/zip description: "Package zip provides support for reading and writing ZIP archives. Key APIs: Compressor, Decompressor, File, FileHeader, ReadCloser, Reader, Writer, RegisterCompressor." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/archive/zip?ref={ref} - lib_id: /golang/go/arena description: "The arena package provides the ability to allocate memory for a collection of Go values and free that space manually all at once, safely. Key APIs: Arena, Clone, MakeSlice, New." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/arena?ref={ref} - lib_id: /golang/go/bufio description: "Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. Key APIs: ReadWriter, Reader, Scanner, SplitFunc, Writer, ScanBytes, ScanLines, ScanRunes." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/bufio?ref={ref} - lib_id: /golang/go/bytes description: "Package bytes implements functions for the manipulation of byte slices. Key APIs: Buffer, Reader, Clone, Compare, Contains, ContainsAny, ContainsFunc, ContainsRune." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/bytes?ref={ref} - lib_id: /golang/go/cmp description: "Package cmp provides types and functions related to comparing ordered values. Key APIs: Ordered, Compare, Less, Or." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/cmp?ref={ref} - lib_id: /golang/go/compress/bzip2 description: "Package bzip2 implements bzip2 decompression. Key APIs: StructuralError, NewReader." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/compress/bzip2?ref={ref} - lib_id: /golang/go/compress/flate description: "Package flate implements the DEFLATE compressed data format, described in RFC 1951. Key APIs: CorruptInputError, InternalError, ReadError, Reader, Resetter, WriteError, Writer, NewReader." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/compress/flate?ref={ref} - lib_id: /golang/go/compress/gzip description: "Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952. Key APIs: Header, Reader, Writer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/compress/gzip?ref={ref} - lib_id: /golang/go/compress/lzw description: "Package lzw implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19. Key APIs: Order, Reader, Writer, NewReader, NewWriter." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/compress/lzw?ref={ref} - lib_id: /golang/go/compress/zlib description: "Package zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950. Key APIs: Resetter, Writer, NewReader, NewReaderDict." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/compress/zlib?ref={ref} - lib_id: /golang/go/container/heap description: "Package heap provides heap operations for any type that implements heap.Interface. Key APIs: Interface, Fix, Init, Pop, Push, Remove." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/container/heap?ref={ref} - lib_id: /golang/go/container/list description: "Package list implements a doubly linked list. Key APIs: Element, List." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/container/list?ref={ref} - lib_id: /golang/go/container/ring description: "Package ring implements operations on circular lists. Key APIs: Ring." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/container/ring?ref={ref} - lib_id: /golang/go/context description: "Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. Key APIs: CancelCauseFunc, CancelFunc, Context, AfterFunc, Cause, WithCancel, WithCancelCause, WithDeadline." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/context?ref={ref} - lib_id: /golang/go/crypto description: "Package crypto collects common cryptographic constants. Key APIs: Decapsulator, Decrypter, DecrypterOpts, Encapsulator, Hash, MessageSigner, PrivateKey, PublicKey." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto?ref={ref} - lib_id: /golang/go/crypto/aes description: "Package aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197. Key APIs: KeySizeError, NewCipher." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/aes?ref={ref} - lib_id: /golang/go/crypto/boring description: "Package boring exposes functions that are only available when building with Go+BoringCrypto. Key APIs: Enabled." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/boring?ref={ref} - lib_id: /golang/go/crypto/cipher description: "Package cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations. Key APIs: AEAD, Block, BlockMode, Stream, StreamReader, StreamWriter." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/cipher?ref={ref} - lib_id: /golang/go/crypto/des description: "Package des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3. Key APIs: KeySizeError, NewCipher, NewTripleDESCipher." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/des?ref={ref} - lib_id: /golang/go/crypto/dsa description: "Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3. Key APIs: ParameterSizes, Parameters, PrivateKey, PublicKey, GenerateKey, GenerateParameters, Sign, Verify." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/dsa?ref={ref} - lib_id: /golang/go/crypto/ecdh description: "Package ecdh implements Elliptic Curve Diffie-Hellman over NIST curves and Curve25519. Key APIs: Curve, KeyExchanger, PrivateKey, PublicKey." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/ecdh?ref={ref} - lib_id: /golang/go/crypto/ecdsa description: "Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in [FIPS 186-5]. Key APIs: PrivateKey, PublicKey, Sign, SignASN1, Verify, VerifyASN1." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/ecdsa?ref={ref} - lib_id: /golang/go/crypto/ed25519 description: "Package ed25519 implements the Ed25519 signature algorithm. Key APIs: Options, PrivateKey, PublicKey, GenerateKey, Sign, Verify, VerifyWithOptions." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/ed25519?ref={ref} - lib_id: /golang/go/crypto/elliptic description: "Package elliptic implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields. Key APIs: Curve, CurveParams, GenerateKey, Marshal, MarshalCompressed, Unmarshal, UnmarshalCompressed." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/elliptic?ref={ref} - lib_id: /golang/go/crypto/fips140 description: "Go standard library package fips140. Key APIs: Enabled, Enforced, Version, WithoutEnforcement." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/fips140?ref={ref} - lib_id: /golang/go/crypto/hkdf description: "Package hkdf implements the HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869. Key APIs: Expand, Extract, Key." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/hkdf?ref={ref} - lib_id: /golang/go/crypto/hmac description: "Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198. Key APIs: Equal, New." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/hmac?ref={ref} - lib_id: /golang/go/crypto/hpke description: "Package hpke implements Hybrid Public Key Encryption (HPKE) as defined in [RFC 9180]. Key APIs: AEAD, KDF, KEM, PrivateKey, PublicKey, Recipient, Sender, Open." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/hpke?ref={ref} - lib_id: /golang/go/crypto/md5 description: "Go standard library package md5. Key APIs: Data." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/md5?ref={ref} - lib_id: /golang/go/crypto/mlkem description: "Package mlkem implements the quantum-resistant key encapsulation method ML-KEM (formerly known as Kyber), as specified in [NIST FIPS 203]. Key APIs: DecapsulationKey1024, DecapsulationKey768, EncapsulationKey1024, EncapsulationKey768." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/mlkem?ref={ref} - lib_id: /golang/go/crypto/mlkem/mlkemtest description: "Package mlkemtest provides testing functions for the ML-KEM algorithm. Key APIs: Encapsulate1024, Encapsulate768." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/mlkem/mlkemtest?ref={ref} - lib_id: /golang/go/crypto/pbkdf2 description: "Package pbkdf2 implements the key derivation function PBKDF2 as defined in RFC 8018 (PKCS #5 v2.1). Key APIs: Key." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/pbkdf2?ref={ref} - lib_id: /golang/go/crypto/rand description: "Package rand implements a cryptographically secure random number generator. Key APIs: Int, Prime, Read, Text." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/rand?ref={ref} - lib_id: /golang/go/crypto/rc4 description: "Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography. Key APIs: Cipher, KeySizeError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/rc4?ref={ref} - lib_id: /golang/go/crypto/rsa description: "Package rsa implements RSA encryption as specified in PKCS #1 and RFC 8017. Key APIs: CRTValue, OAEPOptions, PKCS1v15DecryptOptions, PSSOptions, PrecomputedValues, PrivateKey, PublicKey, DecryptOAEP." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/rsa?ref={ref} - lib_id: /golang/go/crypto/sha1 description: "Package sha1 implements the SHA-1 hash algorithm as defined in RFC 3174. Key APIs: New, Sum." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/sha1?ref={ref} - lib_id: /golang/go/crypto/sha256 description: "Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. Key APIs: New, New224, Sum224, Sum256." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/sha256?ref={ref} - lib_id: /golang/go/crypto/sha3 description: "Package sha3 implements the SHA-3 hash algorithms and the SHAKE extendable output functions defined in FIPS 202. Key APIs: SHA3, SHAKE, Sum224, Sum256, Sum384, Sum512, SumSHAKE128, SumSHAKE256." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/sha3?ref={ref} - lib_id: /golang/go/crypto/sha512 description: "Package sha512 implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4. Key APIs: New, New384, New512_224, New512_256, Sum384, Sum512, Sum512_224, Sum512_256." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/sha512?ref={ref} - lib_id: /golang/go/crypto/subtle description: "Package subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly. Key APIs: ConstantTimeByteEq, ConstantTimeCompare, ConstantTimeCopy, ConstantTimeEq, ConstantTimeLessOrEq, ConstantTimeSelect, WithDataIndependentTiming, XORBytes." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/subtle?ref={ref} - lib_id: /golang/go/crypto/tls description: "Package tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446. Key APIs: AlertError, Certificate, CertificateRequestInfo, CertificateVerificationError, CipherSuite, ClientAuthType, ClientHelloInfo, ClientSessionCache." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/tls?ref={ref} - lib_id: /golang/go/crypto/tls/fipsonly description: Package fipsonly restricts all TLS configuration to FIPS-approved settings. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/tls/fipsonly?ref={ref} - lib_id: /golang/go/crypto/x509 description: "Package x509 implements a subset of the X.509 standard. Key APIs: CertPool, Certificate, CertificateInvalidError, CertificateRequest, ConstraintViolationError, ExtKeyUsage, HostnameError, InsecureAlgorithmError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/x509?ref={ref} - lib_id: /golang/go/crypto/x509/pkix description: "Package pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP. Key APIs: AlgorithmIdentifier, AttributeTypeAndValue, AttributeTypeAndValueSET, CertificateList, Extension, Name, RDNSequence, RelativeDistinguishedNameSET." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/crypto/x509/pkix?ref={ref} - lib_id: /golang/go/database/sql description: "Package sql provides a generic interface around SQL (or SQL-like) databases. Key APIs: ColumnType, Conn, DB, DBStats, IsolationLevel, NamedArg, Null, NullBool." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/database/sql?ref={ref} - lib_id: /golang/go/database/sql/driver description: "Package driver defines interfaces to be implemented by database drivers as used by package sql. Key APIs: ColumnConverter, Conn, ConnBeginTx, ConnPrepareContext, Connector, Driver, DriverContext, Execer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/database/sql/driver?ref={ref} - lib_id: /golang/go/debug/buildinfo description: "Package buildinfo provides access to information embedded in a Go binary about how it was built. Key APIs: BuildInfo." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/buildinfo?ref={ref} - lib_id: /golang/go/debug/dwarf description: "Package dwarf provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf. Key APIs: AddrType, ArrayType, Attr, BasicType, BoolType, CharType, Class, CommonType." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/dwarf?ref={ref} - lib_id: /golang/go/debug/elf description: "Package elf implements access to ELF object files. Key APIs: Chdr32, Chdr64, Class, CompressionType, Data, Dyn32, Dyn64, DynFlag." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/elf?ref={ref} - lib_id: /golang/go/debug/gosym description: "Package gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers. Key APIs: DecodingError, Func, LineTable, Obj, Sym, Table, UnknownFileError, UnknownLineError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/gosym?ref={ref} - lib_id: /golang/go/debug/macho description: "Package macho implements access to Mach-O object files. Key APIs: Cpu, Dylib, DylibCmd, Dysymtab, DysymtabCmd, FatArch, FatArchHeader, FatFile." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/macho?ref={ref} - lib_id: /golang/go/debug/pe description: "Package pe implements access to PE (Microsoft Windows Portable Executable) files. Key APIs: COFFSymbol, COFFSymbolAuxFormat5, DataDirectory, File, FileHeader, FormatError, ImportDirectory, OptionalHeader32." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/pe?ref={ref} - lib_id: /golang/go/debug/plan9obj description: "Package plan9obj implements access to Plan 9 a.out object files. Key APIs: File, FileHeader, Section, SectionHeader, Sym." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/debug/plan9obj?ref={ref} - lib_id: /golang/go/embed description: "Package embed provides access to files embedded in the running Go program. Key APIs: FS." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/embed?ref={ref} - lib_id: /golang/go/encoding description: "Package encoding defines interfaces shared by other packages that convert data to and from byte-level and textual representations. Key APIs: BinaryAppender, BinaryMarshaler, BinaryUnmarshaler, TextAppender, TextMarshaler, TextUnmarshaler." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding?ref={ref} - lib_id: /golang/go/encoding/ascii85 description: "Package ascii85 implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats. Key APIs: CorruptInputError, Decode, Encode, MaxEncodedLen, NewDecoder, NewEncoder." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/ascii85?ref={ref} - lib_id: /golang/go/encoding/asn1 description: "Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690. Key APIs: BitString, Enumerated, Flag, ObjectIdentifier, RawContent, RawValue, StructuralError, SyntaxError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/asn1?ref={ref} - lib_id: /golang/go/encoding/base32 description: "Package base32 implements base32 encoding as specified by RFC 4648. Key APIs: CorruptInputError, Encoding, NewDecoder, NewEncoder." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/base32?ref={ref} - lib_id: /golang/go/encoding/base64 description: "Package base64 implements base64 encoding as specified by RFC 4648. Key APIs: CorruptInputError, Encoding, NewDecoder, NewEncoder." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/base64?ref={ref} - lib_id: /golang/go/encoding/binary description: "Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. Key APIs: AppendByteOrder, ByteOrder, Append, AppendUvarint, AppendVarint, Decode, Encode, PutUvarint." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/binary?ref={ref} - lib_id: /golang/go/encoding/csv description: "Package csv reads and writes comma-separated values (CSV) files. Key APIs: ParseError, Reader, Writer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/csv?ref={ref} - lib_id: /golang/go/encoding/gob description: "Package gob manages streams of gobs - binary values exchanged between an [Encoder] (transmitter) and a [Decoder] (receiver). Key APIs: CommonType, Decoder, Encoder, GobDecoder, GobEncoder, Debug, Register, RegisterName." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/gob?ref={ref} - lib_id: /golang/go/encoding/hex description: "Package hex implements hexadecimal encoding and decoding. Key APIs: InvalidByteError, AppendDecode, AppendEncode, Decode, DecodeString, DecodedLen, Dump, Dumper." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/hex?ref={ref} - lib_id: /golang/go/encoding/json description: "Package json implements encoding and decoding of JSON as defined in RFC 7159. Key APIs: Decoder, Delim, Encoder, InvalidUTF8Error, InvalidUnmarshalError, Marshaler, MarshalerError, Number." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/json?ref={ref} - lib_id: /golang/go/encoding/json/jsontext description: "Package jsontext implements syntactic processing of JSON as specified in RFC 4627, RFC 7159, RFC 7493, RFC 8259, and RFC 8785. Key APIs: Decoder, Encoder, Kind, Options, Pointer, SyntacticError, Token, Value." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/json/jsontext?ref={ref} - lib_id: /golang/go/encoding/json/v2 description: "Package json implements semantic processing of JSON as specified in RFC 8259. Key APIs: Marshaler, MarshalerTo, Marshalers, Options, SemanticError, Unmarshaler, UnmarshalerFrom, Unmarshalers." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/json/v2?ref={ref} - lib_id: /golang/go/encoding/pem description: "Package pem implements the PEM data encoding, which originated in Privacy Enhanced Mail. Key APIs: Block, Encode, EncodeToMemory." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/pem?ref={ref} - lib_id: /golang/go/encoding/xml description: "Package xml implements a simple XML 1.0 parser that understands XML name spaces. Key APIs: Attr, CharData, Comment, Decoder, Directive, Encoder, EndElement, Marshaler." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/encoding/xml?ref={ref} - lib_id: /golang/go/errors description: "Package errors implements functions to manipulate errors. Key APIs: As, AsType, Is, Join, New, Unwrap." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/errors?ref={ref} - lib_id: /golang/go/expvar description: "Package expvar provides a standardized interface to public variables, such as operation counters in servers. Key APIs: Float, Func, Int, KeyValue, Map, String, Var, Do." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/expvar?ref={ref} - lib_id: /golang/go/flag description: "Package flag implements command-line flag parsing. Key APIs: ErrorHandling, Flag, FlagSet, Getter, Value, Arg, Args, Bool." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/flag?ref={ref} - lib_id: /golang/go/fmt description: "Package fmt implements formatted I/O with functions analogous to C's printf and scanf. Key APIs: Formatter, GoStringer, ScanState, Scanner, State, Stringer, Append, Appendf." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/fmt?ref={ref} - lib_id: /golang/go/go/ast description: "Package ast declares the types used to represent syntax trees for Go packages. Key APIs: ArrayType, AssignStmt, BadDecl, BadExpr, BadStmt, BasicLit, BinaryExpr, BlockStmt." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/ast?ref={ref} - lib_id: /golang/go/go/build description: "Package build gathers information about Go packages. Key APIs: Context, Directive, ImportMode, MultiplePackageError, NoGoError, Package, ArchChar, IsLocalImport." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/build?ref={ref} - lib_id: /golang/go/go/build/constraint description: "Package constraint implements parsing and evaluation of build constraint lines. Key APIs: AndExpr, Expr, NotExpr, OrExpr, SyntaxError, TagExpr, GoVersion, IsGoBuild." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/build/constraint?ref={ref} - lib_id: /golang/go/go/constant description: "Package constant implements Values representing untyped Go constants and their corresponding operations. Key APIs: Kind, Value, BitLen, BoolVal, Bytes, Compare, Float32Val, Float64Val." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/constant?ref={ref} - lib_id: /golang/go/go/doc description: "Package doc extracts source code documentation from a Go AST. Key APIs: Example, Filter, Func, Mode, Note, Package, Type, Value." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/doc?ref={ref} - lib_id: /golang/go/go/doc/comment description: "Package comment implements parsing and reformatting of Go doc comments, (documentation comments), which are comments that immediately precede a top-level declaration of a package, const, func, type, or var. Key APIs: Block, Code, Doc, DocLink, Heading, Italic, Link, LinkDef." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/doc/comment?ref={ref} - lib_id: /golang/go/go/format description: "Package format implements standard formatting of Go source. Key APIs: Node, Source." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/format?ref={ref} - lib_id: /golang/go/go/importer description: "Package importer provides access to export data importers. Key APIs: Lookup, Default, For, ForCompiler." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/importer?ref={ref} - lib_id: /golang/go/go/parser description: "Package parser implements a parser for Go source files. Key APIs: Mode, ParseDir, ParseExpr, ParseExprFrom, ParseFile." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/parser?ref={ref} - lib_id: /golang/go/go/printer description: "Package printer implements printing of AST nodes. Key APIs: CommentedNode, Config, Mode, Fprint." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/printer?ref={ref} - lib_id: /golang/go/go/scanner description: "Package scanner implements a scanner for Go source text. Key APIs: Error, ErrorHandler, ErrorList, Mode, Scanner, PrintError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/scanner?ref={ref} - lib_id: /golang/go/go/token description: "Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). Key APIs: File, FileSet, Pos, Position, Token, IsExported, IsIdentifier, IsKeyword." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/token?ref={ref} - lib_id: /golang/go/go/types description: "Package types declares the data types and implements the algorithms for type-checking of Go packages. Key APIs: Alias, ArgumentError, Array, Basic, BasicInfo, BasicKind, Builtin, Chan." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/types?ref={ref} - lib_id: /golang/go/go/version description: "Package version provides operations on [Go versions] in [Go toolchain name syntax]: strings like \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-custom\". Key APIs: Compare, IsValid, Lang." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/go/version?ref={ref} - lib_id: /golang/go/hash description: "Package hash provides interfaces for hash functions. Key APIs: Cloner, Hash, Hash32, Hash64, XOF." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash?ref={ref} - lib_id: /golang/go/hash/adler32 description: "Package adler32 implements the Adler-32 checksum. Key APIs: Checksum, New." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash/adler32?ref={ref} - lib_id: /golang/go/hash/crc32 description: "Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32, checksum. Key APIs: Table, Checksum, ChecksumIEEE, New, NewIEEE, Update." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash/crc32?ref={ref} - lib_id: /golang/go/hash/crc64 description: "Package crc64 implements the 64-bit cyclic redundancy check, or CRC-64, checksum. Key APIs: Table, Checksum, New, Update." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash/crc64?ref={ref} - lib_id: /golang/go/hash/fnv description: "Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions created by Glenn Fowler, Landon Curt Noll, and Phong Vo. Key APIs: New128, New128a, New32, New32a, New64, New64a." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash/fnv?ref={ref} - lib_id: /golang/go/hash/maphash description: "Package maphash provides hash functions on byte sequences and comparable values. Key APIs: Hash, Seed, Bytes, Comparable, String, WriteComparable." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/hash/maphash?ref={ref} - lib_id: /golang/go/html description: "Package html provides functions for escaping and unescaping HTML text. Key APIs: EscapeString, UnescapeString." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/html?ref={ref} - lib_id: /golang/go/html/template description: "Package template (html/template) implements data-driven templates for generating HTML output safe against code injection. Key APIs: CSS, Error, ErrorCode, FuncMap, HTML, HTMLAttr, JS, JSStr." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/html/template?ref={ref} - lib_id: /golang/go/image description: "Package image implements a basic 2-D image library. Key APIs: Alpha, Alpha16, CMYK, Config, Gray, Gray16, Image, NRGBA." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image?ref={ref} - lib_id: /golang/go/image/color description: "Package color implements a basic color library. Key APIs: Alpha, Alpha16, CMYK, Color, Gray, Gray16, Model, NRGBA." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/color?ref={ref} - lib_id: /golang/go/image/color/palette description: Go standard library package palette. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/color/palette?ref={ref} - lib_id: /golang/go/image/draw description: "Package draw provides image composition functions. Key APIs: Drawer, Image, Op, Quantizer, RGBA64Image, Draw, DrawMask." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/draw?ref={ref} - lib_id: /golang/go/image/gif description: "Package gif implements a GIF image decoder and encoder. Key APIs: GIF, Options, Decode, DecodeConfig, Encode, EncodeAll." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/gif?ref={ref} - lib_id: /golang/go/image/jpeg description: "Package jpeg implements a JPEG image decoder and encoder. Key APIs: FormatError, Options, Reader, UnsupportedError, Decode, DecodeConfig, Encode." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/jpeg?ref={ref} - lib_id: /golang/go/image/png description: "Package png implements a PNG image decoder and encoder. Key APIs: CompressionLevel, Encoder, EncoderBuffer, EncoderBufferPool, FormatError, UnsupportedError, Decode, DecodeConfig." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/image/png?ref={ref} - lib_id: /golang/go/index/suffixarray description: Gen generates sais2.go by duplicating functions in sais.go using different input types. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/index/suffixarray?ref={ref} - lib_id: /golang/go/io description: "Package io provides basic interfaces to I/O primitives. Key APIs: ByteReader, ByteScanner, ByteWriter, Closer, LimitedReader, OffsetWriter, PipeReader, PipeWriter." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/io?ref={ref} - lib_id: /golang/go/io/fs description: "Package fs defines basic interfaces to a file system. Key APIs: DirEntry, FS, File, FileInfo, FileMode, GlobFS, PathError, ReadDirFS." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/io/fs?ref={ref} - lib_id: /golang/go/io/ioutil description: "Package ioutil implements some I/O utility functions. Key APIs: NopCloser, ReadAll, ReadDir, ReadFile, TempDir, TempFile, WriteFile." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/io/ioutil?ref={ref} - lib_id: /golang/go/iter description: "Package iter provides basic definitions and operations related to iterators over sequences. Key APIs: Seq, Seq2, Pull, Pull2." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/iter?ref={ref} - lib_id: /golang/go/log description: "Package log implements a simple logging package. Key APIs: Logger, Fatal, Fatalf, Fatalln, Flags, Output, Panic, Panicf." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/log?ref={ref} - lib_id: /golang/go/log/slog description: "Package slog provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs. Key APIs: Attr, Handler, HandlerOptions, JSONHandler, Kind, Level, LevelVar, Leveler." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/log/slog?ref={ref} - lib_id: /golang/go/log/syslog description: "Package syslog provides a simple interface to the system log service. Key APIs: Priority, Writer, NewLogger." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/log/syslog?ref={ref} - lib_id: /golang/go/maps description: "Package maps defines various functions useful with maps of any type. Key APIs: All, Clone, Collect, Copy, DeleteFunc, Equal, EqualFunc, Insert." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/maps?ref={ref} - lib_id: /golang/go/math description: "Package math provides basic constants and mathematical functions. Key APIs: Abs, Acos, Acosh, Asin, Asinh, Atan, Atan2, Atanh." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math?ref={ref} - lib_id: /golang/go/math/big description: "Go standard library package big. Key APIs: Graph, Point, SVGPoint." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math/big?ref={ref} - lib_id: /golang/go/math/bits description: "Package bits implements bit counting and manipulation functions for the predeclared unsigned integer types. Key APIs: Add, Add32, Add64, Div, Div32, Div64, LeadingZeros, LeadingZeros16." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math/bits?ref={ref} - lib_id: /golang/go/math/cmplx description: "Package cmplx provides basic constants and mathematical functions for complex numbers. Key APIs: Abs, Acos, Acosh, Asin, Asinh, Atan, Atanh, Conj." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math/cmplx?ref={ref} - lib_id: /golang/go/math/rand description: "Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. Key APIs: Rand, Source, Source64, Zipf, ExpFloat64, Float32, Float64, Int." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math/rand?ref={ref} - lib_id: /golang/go/math/rand/v2 description: "Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. Key APIs: ChaCha8, PCG, Rand, Source, Zipf, ExpFloat64, Float32, Float64." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/math/rand/v2?ref={ref} - lib_id: /golang/go/mime description: "Package mime implements parts of the MIME spec. Key APIs: WordDecoder, WordEncoder, AddExtensionType, ExtensionsByType, FormatMediaType, ParseMediaType, TypeByExtension." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/mime?ref={ref} - lib_id: /golang/go/mime/multipart description: "Package multipart implements MIME multipart parsing, as defined in RFC 2046. Key APIs: File, FileHeader, Form, Part, Reader, Writer, FileContentDisposition." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/mime/multipart?ref={ref} - lib_id: /golang/go/mime/quotedprintable description: "Package quotedprintable implements quoted-printable encoding as specified by RFC 2045. Key APIs: Reader, Writer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/mime/quotedprintable?ref={ref} - lib_id: /golang/go/net description: "Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. Key APIs: Addr, AddrError, Buffers, Conn, DNSConfigError, DNSError, Dialer, Error." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net?ref={ref} - lib_id: /golang/go/net/http description: "Package http provides HTTP client and server implementations. Key APIs: Client, ClientConn, CloseNotifier, ConnState, Cookie, CookieJar, CrossOriginProtection, Dir." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http?ref={ref} - lib_id: /golang/go/net/http/cgi description: "Package cgi implements CGI (Common Gateway Interface) as specified in RFC 3875. Key APIs: Handler, Request, RequestFromMap, Serve." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/cgi?ref={ref} - lib_id: /golang/go/net/http/cookiejar description: "Package cookiejar implements an in-memory RFC 6265-compliant http.CookieJar. Key APIs: Jar, Options, PublicSuffixList." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/cookiejar?ref={ref} - lib_id: /golang/go/net/http/fcgi description: "Package fcgi implements the FastCGI protocol. Key APIs: ProcessEnv, Serve." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/fcgi?ref={ref} - lib_id: /golang/go/net/http/httptest description: "Package httptest provides utilities for HTTP testing. Key APIs: ResponseRecorder, Server, NewRequest, NewRequestWithContext." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/httptest?ref={ref} - lib_id: /golang/go/net/http/httptrace description: "Package httptrace provides mechanisms to trace the events within HTTP client requests. Key APIs: ClientTrace, DNSDoneInfo, DNSStartInfo, GotConnInfo, WroteRequestInfo, WithClientTrace." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/httptrace?ref={ref} - lib_id: /golang/go/net/http/httputil description: "Package httputil provides HTTP utility functions, complementing the more common ones in the net/http package. Key APIs: BufferPool, ClientConn, ProxyRequest, ReverseProxy, ServerConn, DumpRequest, DumpRequestOut, DumpResponse." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/httputil?ref={ref} - lib_id: /golang/go/net/http/pprof description: "Package pprof serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool. Key APIs: Cmdline, Handler, Index, Profile, Symbol, Trace." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/http/pprof?ref={ref} - lib_id: /golang/go/net/mail description: "Package mail implements parsing of mail messages. Key APIs: Address, AddressParser, Header, Message, ParseDate." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/mail?ref={ref} - lib_id: /golang/go/net/netip description: "Package netip defines an IP address type that's a small value type. Key APIs: Addr, AddrPort, Prefix." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/netip?ref={ref} - lib_id: /golang/go/net/rpc description: "Package rpc provides access to the exported methods of an object across a network or other I/O connection. Key APIs: Call, Client, ClientCodec, Request, Response, Server, ServerCodec, ServerError." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/rpc?ref={ref} - lib_id: /golang/go/net/rpc/jsonrpc description: "Package jsonrpc implements a JSON-RPC 1.0 ClientCodec and ServerCodec for the rpc package. Key APIs: Dial, NewClient, NewClientCodec, NewServerCodec, ServeConn." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/rpc/jsonrpc?ref={ref} - lib_id: /golang/go/net/smtp description: "Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321. Key APIs: Auth, Client, ServerInfo, SendMail." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/smtp?ref={ref} - lib_id: /golang/go/net/textproto description: "Package textproto implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP. Key APIs: Conn, Error, MIMEHeader, Pipeline, ProtocolError, Reader, Writer, CanonicalMIMEHeaderKey." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/textproto?ref={ref} - lib_id: /golang/go/net/url description: "Package url parses URLs and implements query escaping. Key APIs: Error, EscapeError, InvalidHostError, URL, Userinfo, Values, JoinPath, PathEscape." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/net/url?ref={ref} - lib_id: /golang/go/os description: "Package os provides a platform-independent interface to operating system functionality. Key APIs: DirEntry, File, FileInfo, FileMode, LinkError, PathError, ProcAttr, Process." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/os?ref={ref} - lib_id: /golang/go/os/exec description: "Package exec runs external commands. Key APIs: Cmd, Error, ExitError, LookPath." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/os/exec?ref={ref} - lib_id: /golang/go/os/signal description: "Package signal implements access to incoming signals. Key APIs: Ignore, Ignored, Notify, NotifyContext, Reset, Stop." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/os/signal?ref={ref} - lib_id: /golang/go/os/user description: "Package user allows user account lookups by name or id. Key APIs: Group, UnknownGroupError, UnknownGroupIdError, UnknownUserError, UnknownUserIdError, User." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/os/user?ref={ref} - lib_id: /golang/go/path description: "Package path implements utility routines for manipulating slash-separated paths. Key APIs: Base, Clean, Dir, Ext, IsAbs, Join, Match, Split." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/path?ref={ref} - lib_id: /golang/go/path/filepath description: "Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. Key APIs: WalkFunc, Abs, Base, Clean, Dir, EvalSymlinks, Ext, FromSlash." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/path/filepath?ref={ref} - lib_id: /golang/go/plugin description: "Package plugin implements loading and symbol resolution of Go plugins. Key APIs: Plugin, Symbol." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/plugin?ref={ref} - lib_id: /golang/go/reflect description: "Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. Key APIs: ChanDir, Kind, MapIter, Method, SelectCase, SelectDir, SliceHeader, StringHeader." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/reflect?ref={ref} - lib_id: /golang/go/regexp description: "Package regexp implements regular expression search. Key APIs: Regexp, Match, MatchReader, MatchString, QuoteMeta." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/regexp?ref={ref} - lib_id: /golang/go/regexp/syntax description: "Package syntax parses regular expressions into parse trees and compiles parse trees into programs. Key APIs: EmptyOp, Error, ErrorCode, Flags, Inst, InstOp, Op, Prog." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/regexp/syntax?ref={ref} - lib_id: /golang/go/runtime description: mkduff generates duff_*.s. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime?ref={ref} - lib_id: /golang/go/runtime/asan description: Go standard library package asan. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/asan?ref={ref} - lib_id: /golang/go/runtime/cgo description: "Package cgo contains runtime support for code generated by the cgo tool. Key APIs: Handle, Incomplete." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/cgo?ref={ref} - lib_id: /golang/go/runtime/coverage description: "Package coverage contains APIs for writing coverage profile data at runtime from long-running and/or server programs that do not terminate via os.Exit. Key APIs: ClearCounters, WriteCounters, WriteCountersDir, WriteMeta, WriteMetaDir." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/coverage?ref={ref} - lib_id: /golang/go/runtime/debug description: "Package debug contains facilities for programs to debug themselves while they are running. Key APIs: BuildInfo, BuildSetting, CrashOptions, GCStats, Module, FreeOSMemory, PrintStack, ReadGCStats." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/debug?ref={ref} - lib_id: /golang/go/runtime/metrics description: "Package metrics provides a stable interface to access implementation-defined metrics exported by the Go runtime. Key APIs: Description, Float64Histogram, Sample, Value, ValueKind, Read." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/metrics?ref={ref} - lib_id: /golang/go/runtime/msan description: Go standard library package msan. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/msan?ref={ref} - lib_id: /golang/go/runtime/pprof description: "Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. Key APIs: LabelSet, Profile, Do, ForLabels, Label, SetGoroutineLabels, StartCPUProfile, StopCPUProfile." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/pprof?ref={ref} - lib_id: /golang/go/runtime/race description: Package race implements data race detection logic. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/race?ref={ref} - lib_id: /golang/go/runtime/secret description: "Package secret contains helper functions for zeroing out memory that is otherwise invisible to a user program in the service of forward secrecy. Key APIs: Do, Enabled." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/secret?ref={ref} - lib_id: /golang/go/runtime/trace description: "Package trace contains facilities for programs to generate traces for the Go execution tracer. Key APIs: FlightRecorder, FlightRecorderConfig, Region, Task, IsEnabled, Log, Logf, Start." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/runtime/trace?ref={ref} - lib_id: /golang/go/simd/archsimd description: "Package archsimd provides access to architecture-specific SIMD operations. Key APIs: Float32x16, Float32x4, Float32x8, Float64x2, Float64x4, Float64x8, Int16x16, Int16x32." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/simd/archsimd?ref={ref} - lib_id: /golang/go/slices description: "Package slices defines various functions useful with slices of any type. Key APIs: All, AppendSeq, Backward, BinarySearch, BinarySearchFunc, Chunk, Clip, Clone." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/slices?ref={ref} - lib_id: /golang/go/sort description: "Go standard library package sort. Key APIs: Variant." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/sort?ref={ref} - lib_id: /golang/go/strconv description: "Package strconv implements conversions to and from string representations of basic data types. Key APIs: NumError, AppendBool, AppendFloat, AppendInt, AppendQuote, AppendQuoteRune, AppendQuoteRuneToASCII, AppendQuoteRuneToGraphic." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/strconv?ref={ref} - lib_id: /golang/go/strings description: "Package strings implements simple functions to manipulate UTF-8 encoded strings. Key APIs: Builder, Reader, Replacer, Clone, Compare, Contains, ContainsAny, ContainsFunc." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/strings?ref={ref} - lib_id: /golang/go/structs description: "Package structs defines marker types that can be used as struct fields to modify the properties of a struct. Key APIs: HostLayout." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/structs?ref={ref} - lib_id: /golang/go/sync description: "Package sync provides basic synchronization primitives such as mutual exclusion locks. Key APIs: Cond, Locker, Map, Mutex, Once, Pool, RWMutex, WaitGroup." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/sync?ref={ref} - lib_id: /golang/go/sync/atomic description: "Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. Key APIs: Bool, Int32, Int64, Pointer, Uint32, Uint64, Uintptr, Value." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/sync/atomic?ref={ref} - lib_id: /golang/go/syscall description: mkasm.go generates assembly trampolines to call library routines from Go. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/syscall?ref={ref} - lib_id: /golang/go/syscall/js description: "Package js gives access to the WebAssembly host environment when using the js/wasm architecture. Key APIs: Error, Func, Type, Value, ValueError, CopyBytesToGo, CopyBytesToJS." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/syscall/js?ref={ref} - lib_id: /golang/go/testing description: "Package testing provides support for automated testing of Go packages. Key APIs: B, BenchmarkResult, Cover, CoverBlock, F, InternalBenchmark, InternalExample, InternalFuzzTarget." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing?ref={ref} - lib_id: /golang/go/testing/cryptotest description: "Package cryptotest provides deterministic random source testing. Key APIs: SetGlobalRandom." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/cryptotest?ref={ref} - lib_id: /golang/go/testing/fstest description: "Package fstest implements support for testing implementations and users of file systems. Key APIs: MapFS, MapFile, TestFS." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/fstest?ref={ref} - lib_id: /golang/go/testing/iotest description: "Package iotest implements Readers and Writers useful mainly for testing. Key APIs: DataErrReader, ErrReader, HalfReader, NewReadLogger, NewWriteLogger, OneByteReader, TestReader, TimeoutReader." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/iotest?ref={ref} - lib_id: /golang/go/testing/quick description: "Package quick implements utility functions to help with black box testing. Key APIs: CheckEqualError, CheckError, Config, Generator, SetupError, Check, CheckEqual, Value." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/quick?ref={ref} - lib_id: /golang/go/testing/slogtest description: "Package slogtest implements support for testing implementations of log/slog.Handler. Key APIs: Run, TestHandler." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/slogtest?ref={ref} - lib_id: /golang/go/testing/synctest description: "Package synctest provides support for testing concurrent code. Key APIs: Test, Wait." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/testing/synctest?ref={ref} - lib_id: /golang/go/text/scanner description: "Package scanner provides a scanner and tokenizer for UTF-8-encoded text. Key APIs: Position, Scanner, TokenString." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/text/scanner?ref={ref} - lib_id: /golang/go/text/tabwriter description: "Package tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text. Key APIs: Writer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/text/tabwriter?ref={ref} - lib_id: /golang/go/text/template description: "Package template implements data-driven templates for generating textual output. Key APIs: ExecError, FuncMap, Template, HTMLEscape, HTMLEscapeString, HTMLEscaper, IsTrue, JSEscape." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/text/template?ref={ref} - lib_id: /golang/go/text/template/parse description: "Package parse builds parse trees for templates as defined by text/template and html/template. Key APIs: ActionNode, BoolNode, BranchNode, BreakNode, ChainNode, CommandNode, CommentNode, ContinueNode." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/text/template/parse?ref={ref} - lib_id: /golang/go/time description: "Go standard library package time. Key APIs: MapZone, SupplementalData." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/time?ref={ref} - lib_id: /golang/go/time/tzdata description: Package tzdata provides an embedded copy of the timezone database. kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/time/tzdata?ref={ref} - lib_id: /golang/go/unicode description: "Package unicode provides data and functions to test some properties of Unicode code points. Key APIs: CaseRange, Range16, Range32, RangeTable, SpecialCase, In, Is, IsControl." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/unicode?ref={ref} - lib_id: /golang/go/unicode/utf16 description: "Package utf16 implements encoding and decoding of UTF-16 sequences. Key APIs: AppendRune, Decode, DecodeRune, Encode, EncodeRune, IsSurrogate, RuneLen." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/unicode/utf16?ref={ref} - lib_id: /golang/go/unicode/utf8 description: "Package utf8 implements functions and constants to support text encoded in UTF-8. Key APIs: AppendRune, DecodeLastRune, DecodeLastRuneInString, DecodeRune, DecodeRuneInString, EncodeRune, FullRune, FullRuneInString." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/unicode/utf8?ref={ref} - lib_id: /golang/go/unique description: "The unique package provides facilities for canonicalizing (\"interning\") comparable values. Key APIs: Handle." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/unique?ref={ref} - lib_id: /golang/go/unsafe description: "Package unsafe contains operations that step around the type safety of Go programs. Key APIs: ArbitraryType, IntegerType, Pointer, Alignof, Offsetof, Sizeof, String, StringData." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/unsafe?ref={ref} - lib_id: /golang/go/weak description: "Package weak provides ways to safely reference memory weakly, that is, without preventing its reclamation. Key APIs: Pointer." kind: godoc ref: go1.26.2 urls: - https://api.github.com/repos/golang/go/contents/src/weak?ref={ref}