Documentation Indexing
Below is a list of all the pages in our documentation.
This is ideal for automated look ups, or giving AIs full context of our documentation.
This is the code used to generate this page
---import { getCollection } from "astro:content";
const allPages: { slug: string }[] = await getCollection("docs");
/* ignore "this" page, to simplify usage; * removing the worry of potential infinite link loopbacks * when running your automation scripts or ai scrapers */const thisPath = Astro.url.pathname;const pages = allPages.filter((doc) => `/${doc.slug}/` !== thisPath);---
<ul> { pages.map((page) => ( <li> <a id={page.slug} href={`/${page.slug}`}> {page.slug} </a> </li> )) }</ul>
- automation/changelog
- automation/cursor
- components/fixtures/webhook-fixture
- components/libraries/predicates/in-memory-predicate
- components/libraries/predicates
- components/libraries/predicates/redis-predicate
- components/libraries/api-exceptions
- components/libraries/exception-guard
- components/libraries/iam-validation
- components/libraries/jwks-guard
- components/libraries/logger
- components/libraries/metrics
- components/libraries/redis-factory
- components/libraries/swagger-factory
- components/project-structures/services
- components
- flowcathon/1-ingestion
- flowcathon/2-data-core
- flowcathon/3-transform
- flowcathon/getting-started
- guides/account/create-an-account
- guides/architecture/best-pactices
- guides/architecture
- guides/architecture/moving-to-v2
- guides/architecture/primitives
- guides/data-core/create-data-core
- guides/data-core/create-flow-types-and-event-types
- guides/data-core/navigate-to-a-data-core
- guides/data-core/what-is-a-data-core
- guides/flowcore-cli/auth-management-cli
- guides/flowcore-cli/create-resources-cli
- guides/flowcore-cli/extend-cli
- guides/flowcore-cli/generating-types-cli
- guides/flowcore-cli/generator-cli
- guides/flowcore-cli/get-logs
- guides/flowcore-cli/get-resources-cli
- guides/flowcore-cli/install-cli
- guides/flowcore-cli/login-cli
- guides/flowcore-cli/reset-adapter
- guides/flowcore-cli/stream-cli
- guides/flowcore-sdk
- guides/generators/generator-cli
- guides/iam/getting-started
- guides/iam/policies
- guides/iam/resources
- guides/iam/roles
- guides/ingestion/create-an-api-key
- guides/ingestion/delete-an-api-key
- guides/ingestion/ingestion-options
- guides/ingestion/what-is-an-ingestion-channel
- guides/installation
- guides/organization/create-an-organization
- guides/organization/invite-user-to-organization
- guides/organization/navigate-to-organization-settings
- guides/organization/switch-between-organizations
- guides/organization/upgrade-your-organization
- guides/scenario/using-data-cores-belonging-to-other-organizations
- guides/transformer/developing-a-transformer
- guides/account-linking/account-linking
- guides/account-linking/link-aws-account
- guides/example
- index