# Lexicon Garden

> ATProtocol Lexicon discovery, documentation, and management

## Overview

Lexicon Garden is a service for browsing, discovering, and managing ATProtocol lexicon schemas. Lexicons define the data schemas and RPC methods used in the AT Protocol ecosystem, including Bluesky and other compatible services.

## What are Lexicons?

Lexicons are schema definitions that describe:

- **Records**: Data stored in user repositories (posts, profiles, follows, etc.)
- **Queries**: Read-only RPC methods for fetching data
- **Procedures**: Write RPC methods that modify state
- **Subscriptions**: Real-time event streams

Each lexicon is identified by an NSID (Namespaced Identifier) like `app.bsky.feed.post` which follows reverse-DNS notation.

## ATProtocol Documentation

- [Lexicon Specification](https://atproto.com/specs/lexicon) - Full technical specification
- [Lexicon Guide](https://atproto.com/guides/lexicon) - Introduction and guide
- [ATProtocol Overview](https://atproto.com/guides/overview) - Protocol overview

## Example Records

### Bluesky Post (`app.bsky.feed.post`)

A basic social media post:

```json
{
  "$type": "app.bsky.feed.post",
  "text": "Hello, ATProtocol!",
  "createdAt": "2024-01-15T12:00:00.000Z"
}
```

### Follow Record (`app.bsky.graph.follow`)

A social graph follow relationship:

```json
{
  "$type": "app.bsky.graph.follow",
  "subject": "did:plc:abc123...",
  "createdAt": "2024-01-15T12:00:00.000Z"
}
```

### Profile Record (`app.bsky.actor.profile`)

A user profile with display name and bio:

```json
{
  "$type": "app.bsky.actor.profile",
  "displayName": "Alice",
  "description": "Building cool things with ATProtocol"
}
```

## XRPC API Reference

This service implements the following XRPC endpoints for programmatic access.

### com.atproto.identity.resolveIdentity

Resolve an identity (DID or handle) to a full DID document.

**Method**: `GET`

**Endpoint**: `https://lexicon.garden/xrpc/com.atproto.identity.resolveIdentity`

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `identifier` | string | Yes | Handle or DID to resolve |

**Response**:

```json
{
  "did": "did:plc:abc123...",
  "handle": "alice.bsky.social",
  "didDoc": {
    "id": "did:plc:abc123...",
    "alsoKnownAs": ["at://alice.bsky.social"],
    "service": [...]
  }
}
```

**Example Request**:

```bash
curl "https://lexicon.garden/xrpc/com.atproto.identity.resolveIdentity?identifier=alice.bsky.social"
```

**Errors**:
- `HandleNotFound` - The handle does not resolve to any DID
- `DidNotFound` - The DID does not exist
- `DidDeactivated` - The DID has been deactivated

### com.atproto.lexicon.resolveLexicon

Resolve a lexicon schema by NSID. Returns the schema definition from the authoritative source.

**Method**: `GET`

**Endpoint**: `https://lexicon.garden/xrpc/com.atproto.lexicon.resolveLexicon`

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `nsid` | string | Yes | The NSID to resolve (e.g., `app.bsky.feed.post`) |
| `refresh` | string | No | Force refresh from source (requires auth as owner) |

**Response**:

```json
{
  "cid": "bafyrei...",
  "uri": "at://did:plc:abc123/com.atproto.lexicon.schema/app.bsky.feed.post",
  "schema": {
    "lexicon": 1,
    "id": "app.bsky.feed.post",
    "defs": {
      "main": {
        "type": "record",
        "key": "tid",
        "record": { ... }
      }
    }
  }
}
```

**Example Request**:

```bash
curl "https://lexicon.garden/xrpc/com.atproto.lexicon.resolveLexicon?nsid=app.bsky.feed.post"
```

**Conditional Request Headers**:
- `If-None-Match`: Returns 304 if ETag matches
- `If-Modified-Since`: Returns 304 if not modified since timestamp
- `If-Match`: Returns 412 if ETag doesn't match

**Errors**:
- `InvalidRequest` - Invalid NSID format
- `NotFound` - Lexicon not found
- `AuthorityNotFound` - No authority found for NSID

### com.atproto.lexicon.validate

Validate a lexicon schema structure, and optionally validate data against it.

**Method**: `POST`

**Endpoint**: `https://lexicon.garden/xrpc/com.atproto.lexicon.validate`

**Input** (JSON body):

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `schema` | object | Yes | The lexicon schema to validate |
| `record` | object | No | Record data to validate (for record schemas) |
| `params` | object | No | Query params to validate (for query/procedure) |
| `input` | object | No | Input body to validate (for procedures) |
| `flags` | object | No | Validation flags (see below) |

**Validation Flags**:

| Flag | Type | Description |
|------|------|-------------|
| `allowLegacyBlob` | boolean | Allow legacy blob format |
| `allowLenientDatetime` | boolean | Allow lenient datetime parsing |
| `skipExternalRefs` | boolean | Skip validation of external references |
| `externalSchemas` | array | External schemas for reference validation |

**Response**:

```json
{
  "valid": true,
  "errors": []
}
```

**Example Request** (validate schema only):

```bash
curl -X POST "https://lexicon.garden/xrpc/com.atproto.lexicon.validate" \
  -H "Content-Type: application/json" \
  -d '{
    "schema": {
      "lexicon": 1,
      "id": "example.post",
      "defs": {
        "main": {
          "type": "record",
          "key": "tid",
          "record": {
            "type": "object",
            "properties": {
              "text": {"type": "string"}
            },
            "required": ["text"]
          }
        }
      }
    }
  }'
```

**Example Request** (validate record against schema):

```bash
curl -X POST "https://lexicon.garden/xrpc/com.atproto.lexicon.validate" \
  -H "Content-Type: application/json" \
  -d '{
    "schema": {...},
    "record": {
      "text": "Hello, world!"
    }
  }'
```

**Errors**:
- `InvalidRequest` - Invalid schema structure or mismatched data type

### garden.lexicon.browse

Browse indexed lexicons whose NSID begins with a segment-aligned prefix. `community.lexicon` matches `community.lexicon.foo` but not `community.lexiconfoo`. Results are sorted ascending and paginated with an opaque cursor.

**Method**: `GET`

**Endpoint**: `https://lexicon.garden/xrpc/garden.lexicon.browse`

**Authentication**: Not required

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `prefix` | string | Yes | NSID prefix, one or more dot-separated segments |
| `lexiconType` | string | No | Filter by definition type (`record`, `query`, `procedure`, `subscription`, `permission-set`) |
| `limit` | integer | No | Max results (default 50, max 100) |
| `cursor` | string | No | Opaque pagination cursor from a prior response |

**Response**:

```json
{
  "lexicons": [
    "community.lexicon.calendar.event",
    "community.lexicon.calendar.rsvp"
  ],
  "cursor": "AAAAAg"
}
```

**Example**:

```bash
curl "https://lexicon.garden/xrpc/garden.lexicon.browse?prefix=community.lexicon&limit=10"
```

### garden.lexicon.favorite.create

Add an NSID or service to your favorites. Requires authentication.

**Method**: `POST`

**Endpoint**: `https://lexicon.garden/xrpc/garden.lexicon.favorite.create`

**Authentication**: Required (Bearer token)

**Input** (JSON body):

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `value` | string | Yes | Value to favorite (`nsid:...` or `did:...`) |

**Response**:

```json
{
  "id": "favorite-uuid",
  "value": "nsid:app.bsky.feed.post",
  "createdAt": "2024-01-15T12:00:00.000Z"
}
```

### garden.lexicon.favorite.delete

Remove an item from your favorites. Requires authentication.

**Method**: `POST`

**Endpoint**: `https://lexicon.garden/xrpc/garden.lexicon.favorite.delete`

**Authentication**: Required (Bearer token)

**Input** (JSON body):

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `value` | string | Yes | Value to unfavorite |

### garden.lexicon.favorite.list

List your favorites with pagination. Requires authentication.

**Method**: `GET`

**Endpoint**: `https://lexicon.garden/xrpc/garden.lexicon.favorite.list`

**Authentication**: Required (Bearer token)

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Max results (default 50, max 100) |
| `cursor` | string | No | Pagination cursor |

**Response**:

```json
{
  "favorites": [
    {
      "id": "favorite-uuid",
      "value": "nsid:app.bsky.feed.post",
      "createdAt": "2024-01-15T12:00:00.000Z"
    }
  ],
  "cursor": "50"
}
```

## MCP (Model Context Protocol)

Lexicon Garden provides an MCP endpoint for AI agent integration, allowing AI assistants to query lexicon schemas programmatically.

**Endpoint**: `POST https://lexicon.garden/mcp`

**Protocol**: JSON-RPC 2.0

### Available Tools

#### `describe_lexicon`

Get detailed information about an ATProtocol lexicon schema, including its definition and usage examples.

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lexicon` | string | Yes | The lexicon NSID (e.g., `app.bsky.feed.post` or `app.bsky.actor.profile#viewBasic`) |
| `identity` | string | No | DID or handle of the authority. If not provided, resolved via DNS. |

**Example Request**:

```bash
curl -X POST "https://lexicon.garden/mcp" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "describe_lexicon",
      "arguments": {
        "lexicon": "app.bsky.feed.post"
      }
    }
  }'
```

#### `create_record_cid`

Generate a CID (Content Identifier) for an AT Protocol record using DAG-CBOR encoding and SHA-256 hashing.

**Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `record` | object | Yes | The JSON object to generate a CID for |

**Example Request**:

```bash
curl -X POST "https://lexicon.garden/mcp" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "create_record_cid",
      "arguments": {
        "record": {
          "$type": "app.bsky.feed.post",
          "text": "Hello, world!",
          "createdAt": "2024-01-15T12:00:00.000Z"
        }
      }
    }
  }'
```

**Response**:

```json
{
  "cid": "bafyreiblaotetvwobe7cu2uqvnddr6ew2q3cu75qsoweulzku2egca4dxq"
}
```

### MCP Initialization

Before calling tools, initialize the MCP session:

```bash
curl -X POST "https://lexicon.garden/mcp" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "initialize",
    "params": {}
  }'
```

## Web Interface

In addition to the XRPC API, Lexicon Garden provides a web interface:

- **Browse lexicons**: `https://lexicon.garden/lexicon/{did}/{nsid}`
- **View identity**: `https://lexicon.garden/identity/{did-or-handle}`
- **Resolve**: `https://lexicon.garden/resolve` - Interactive resolution tool
- **Validate**: `https://lexicon.garden/validate` - Interactive validation tool
- **Browse all lexicons (LLM-friendly)**: `https://lexicon.garden/browse/llms.txt` - Full catalog as markdown

## Authoritative Lexicons

The following lexicons are authoritatively hosted on this service. Each link provides detailed LLM-friendly documentation for that schema.

- [`App.Bsky.Actor.Profil`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/App.Bsky.Actor.Profil/llms.txt)
- [`App.Bsky.Actor.Profile`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/App.Bsky.Actor.Profile/llms.txt)
- [`At.smiled.reaction`](https://lexicon.garden/lexicon/did:plc:fiogs6gvvfopcsda2aeuwrxj/At.smiled.reaction/llms.txt)
- [`Org.passingreads.book.registration`](https://lexicon.garden/lexicon/did:plc:oeipalbxet5jghoqe6b6ctu6/Org.passingreads.book.registration/llms.txt)
- [`Studio.voyager.account.autonomy`](https://lexicon.garden/lexicon/did:plc:nfmcrngxjhffymqwynljivov/Studio.voyager.account.autonomy/llms.txt)
- [`actor.rpg.generator`](https://lexicon.garden/lexicon/did:plc:kwgllf365cwmxbnxitx4pjdj/actor.rpg.generator/llms.txt)
- [`actor.rpg.master`](https://lexicon.garden/lexicon/did:plc:kwgllf365cwmxbnxitx4pjdj/actor.rpg.master/llms.txt)
- [`actor.rpg.news`](https://lexicon.garden/lexicon/did:plc:kwgllf365cwmxbnxitx4pjdj/actor.rpg.news/llms.txt)
- [`actor.rpg.sprite`](https://lexicon.garden/lexicon/did:plc:kwgllf365cwmxbnxitx4pjdj/actor.rpg.sprite/llms.txt)
- [`actor.rpg.stats`](https://lexicon.garden/lexicon/did:plc:kwgllf365cwmxbnxitx4pjdj/actor.rpg.stats/llms.txt)
- [`africa.kandake.asha.authBookmarklet`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.authBookmarklet/llms.txt)
- [`africa.kandake.asha.authRecipeManager`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.authRecipeManager/llms.txt)
- [`africa.kandake.asha.feed.getTimeline`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.feed.getTimeline/llms.txt)
- [`africa.kandake.asha.graph.follow`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.follow/llms.txt)
- [`africa.kandake.asha.graph.getFollowers`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.getFollowers/llms.txt)
- [`africa.kandake.asha.graph.getFollows`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.getFollows/llms.txt)
- [`africa.kandake.asha.recipe.get`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.recipe.get/llms.txt)
- [`africa.kandake.asha.recipe.list`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.recipe.list/llms.txt)
- [`africa.kandake.asha.recipe.recipe`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.recipe.recipe/llms.txt)
- [`africa.kandake.asha.recipe.scrapeUrl`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.recipe.scrapeUrl/llms.txt)
- [`africa.kandake.asha.recipe.search`](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.recipe.search/llms.txt)
- [`agency.portable.attestation`](https://lexicon.garden/lexicon/did:plc:y564i3jkoqqb5of5bcnq4xee/agency.portable.attestation/llms.txt)
- [`agency.portable.membership`](https://lexicon.garden/lexicon/did:plc:y564i3jkoqqb5of5bcnq4xee/agency.portable.membership/llms.txt)
- [`ai.deadpost.actor.profile`](https://lexicon.garden/lexicon/did:plc:ct52nww2623ph5iqb57xro4j/ai.deadpost.actor.profile/llms.txt)
- [`ai.deadpost.reputation.attestation`](https://lexicon.garden/lexicon/did:plc:ct52nww2623ph5iqb57xro4j/ai.deadpost.reputation.attestation/llms.txt)
- [`ai.syui.agent`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.agent/llms.txt)
- [`ai.syui.at.link`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.at.link/llms.txt)
- [`ai.syui.card.admin`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.card.admin/llms.txt)
- [`ai.syui.card.old`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.card.old/llms.txt)
- [`ai.syui.card.user`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.card.user/llms.txt)
- [`ai.syui.egg`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.egg/llms.txt)
- [`ai.syui.gpt.core`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.gpt.core/llms.txt)
- [`ai.syui.gpt.memory`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.gpt.memory/llms.txt)
- [`ai.syui.log.chat`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.log.chat/llms.txt)
- [`ai.syui.log.post`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.log.post/llms.txt)
- [`ai.syui.rse.admin`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.rse.admin/llms.txt)
- [`ai.syui.rse.user`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.rse.user/llms.txt)
- [`ai.syui.vrm`](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.vrm/llms.txt)
- [`app.atbuddy.creature`](https://lexicon.garden/lexicon/did:plc:cjmftryiihdz5jafq77n6b2u/app.atbuddy.creature/llms.txt)
- [`app.atbuddy.interaction`](https://lexicon.garden/lexicon/did:plc:cjmftryiihdz5jafq77n6b2u/app.atbuddy.interaction/llms.txt)
- [`app.atbuddy.stats`](https://lexicon.garden/lexicon/did:plc:cjmftryiihdz5jafq77n6b2u/app.atbuddy.stats/llms.txt)
- [`app.beaconbits.authCore`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.authCore/llms.txt)
- [`app.beaconbits.authEvents`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.authEvents/llms.txt)
- [`app.beaconbits.authSavedPlaces`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.authSavedPlaces/llms.txt)
- [`app.beaconbits.beacon`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.beacon/llms.txt)
- [`app.beaconbits.beacon.like`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.beacon.like/llms.txt)
- [`app.beaconbits.bookmark.folder`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.bookmark.folder/llms.txt)
- [`app.beaconbits.bookmark.item`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.bookmark.item/llms.txt)
- [`app.beaconbits.favorite`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.favorite/llms.txt)
- [`app.beaconbits.favorites`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.favorites/llms.txt)
- [`app.beaconbits.fragment`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.fragment/llms.txt)
- [`app.beaconbits.pass`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.pass/llms.txt)
- [`app.beaconbits.profile`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.profile/llms.txt)
- [`app.beaconbits.report`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.report/llms.txt)
- [`app.beaconbits.venue`](https://lexicon.garden/lexicon/did:plc:j5ttxzdb5kwo4mcqkmzgvt33/app.beaconbits.venue/llms.txt)
- [`app.blebbit.authr.folder.authzed`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.authzed/llms.txt)
- [`app.blebbit.authr.folder.createFolder`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.createFolder/llms.txt)
- [`app.blebbit.authr.folder.createFolderRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.createFolderRelationship/llms.txt)
- [`app.blebbit.authr.folder.defs`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.defs/llms.txt)
- [`app.blebbit.authr.folder.deleteFolder`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.deleteFolder/llms.txt)
- [`app.blebbit.authr.folder.deleteFolderRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.deleteFolderRelationship/llms.txt)
- [`app.blebbit.authr.folder.getFolder`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.getFolder/llms.txt)
- [`app.blebbit.authr.folder.getFolders`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.getFolders/llms.txt)
- [`app.blebbit.authr.folder.listFolderRelationships`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.listFolderRelationships/llms.txt)
- [`app.blebbit.authr.folder.listFolders`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.listFolders/llms.txt)
- [`app.blebbit.authr.folder.record`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.record/llms.txt)
- [`app.blebbit.authr.folder.updateFolder`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.updateFolder/llms.txt)
- [`app.blebbit.authr.folder.updateFolderRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.folder.updateFolderRelationship/llms.txt)
- [`app.blebbit.authr.group.authzed`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.authzed/llms.txt)
- [`app.blebbit.authr.group.createGroup`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.createGroup/llms.txt)
- [`app.blebbit.authr.group.createGroupRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.createGroupRelationship/llms.txt)
- [`app.blebbit.authr.group.defs`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.defs/llms.txt)
- [`app.blebbit.authr.group.deleteGroup`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.deleteGroup/llms.txt)
- [`app.blebbit.authr.group.deleteGroupRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.deleteGroupRelationship/llms.txt)
- [`app.blebbit.authr.group.getGroup`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.getGroup/llms.txt)
- [`app.blebbit.authr.group.getGroups`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.getGroups/llms.txt)
- [`app.blebbit.authr.group.listGroupRelationships`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.listGroupRelationships/llms.txt)
- [`app.blebbit.authr.group.listGroups`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.listGroups/llms.txt)
- [`app.blebbit.authr.group.record`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.record/llms.txt)
- [`app.blebbit.authr.group.updateGroup`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.updateGroup/llms.txt)
- [`app.blebbit.authr.group.updateGroupRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.group.updateGroupRelationship/llms.txt)
- [`app.blebbit.authr.page.authzed`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.authzed/llms.txt)
- [`app.blebbit.authr.page.createPage`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.createPage/llms.txt)
- [`app.blebbit.authr.page.createPageRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.createPageRelationship/llms.txt)
- [`app.blebbit.authr.page.defs`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.defs/llms.txt)
- [`app.blebbit.authr.page.deletePage`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.deletePage/llms.txt)
- [`app.blebbit.authr.page.deletePageRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.deletePageRelationship/llms.txt)
- [`app.blebbit.authr.page.getPage`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.getPage/llms.txt)
- [`app.blebbit.authr.page.getPages`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.getPages/llms.txt)
- [`app.blebbit.authr.page.listPageRelationships`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.listPageRelationships/llms.txt)
- [`app.blebbit.authr.page.listPages`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.listPages/llms.txt)
- [`app.blebbit.authr.page.record`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.record/llms.txt)
- [`app.blebbit.authr.page.updatePage`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.updatePage/llms.txt)
- [`app.blebbit.authr.page.updatePageRelationship`](https://lexicon.garden/lexicon/did:plc:veavz5io7eocwh7dbrhr2thi/app.blebbit.authr.page.updatePageRelationship/llms.txt)
- [`app.bluefeed.feed.generator`](https://lexicon.garden/lexicon/did:plc:7m4jzfe6b5eg5uhf5bb6j2aq/app.bluefeed.feed.generator/llms.txt)
- [`app.bsky.*`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.*/llms.txt)
- [`app.bsky.actor`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor/llms.txt)
- [`app.bsky.actor.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.defs/llms.txt)
- [`app.bsky.actor.getPreferences`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.getPreferences/llms.txt)
- [`app.bsky.actor.getProfile`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.getProfile/llms.txt)
- [`app.bsky.actor.getProfiles`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.getProfiles/llms.txt)
- [`app.bsky.actor.getSuggestions`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.getSuggestions/llms.txt)
- [`app.bsky.actor.permissionSet`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.permissionSet/llms.txt)
- [`app.bsky.actor.profile`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.profile/llms.txt)
- [`app.bsky.actor.profileViewDetailed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.profileViewDetailed/llms.txt)
- [`app.bsky.actor.putPreferences`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.putPreferences/llms.txt)
- [`app.bsky.actor.searchActors`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.searchActors/llms.txt)
- [`app.bsky.actor.searchActorsTypeahead`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.searchActorsTypeahead/llms.txt)
- [`app.bsky.actor.status`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.status/llms.txt)
- [`app.bsky.ageassurance.begin`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.ageassurance.begin/llms.txt)
- [`app.bsky.ageassurance.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.ageassurance.defs/llms.txt)
- [`app.bsky.ageassurance.getConfig`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.ageassurance.getConfig/llms.txt)
- [`app.bsky.ageassurance.getState`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.ageassurance.getState/llms.txt)
- [`app.bsky.auth`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.auth/llms.txt)
- [`app.bsky.authCre`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authCre/llms.txt)
- [`app.bsky.authCreatePosts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authCreatePosts/llms.txt)
- [`app.bsky.authDeleteContent`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authDeleteContent/llms.txt)
- [`app.bsky.authFullApp`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authFullApp/llms.txt)
- [`app.bsky.authManageFeedDeclarations`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authManageFeedDeclarations/llms.txt)
- [`app.bsky.authManageLabelerService`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authManageLabelerService/llms.txt)
- [`app.bsky.authManageModeration`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authManageModeration/llms.txt)
- [`app.bsky.authManageNotifications`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authManageNotifications/llms.txt)
- [`app.bsky.authManageProfile`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authManageProfile/llms.txt)
- [`app.bsky.authViewAll`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.authViewAll/llms.txt)
- [`app.bsky.bookmark`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark/llms.txt)
- [`app.bsky.bookmark.*`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark.*/llms.txt)
- [`app.bsky.bookmark.createBookmark`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark.createBookmark/llms.txt)
- [`app.bsky.bookmark.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark.defs/llms.txt)
- [`app.bsky.bookmark.deleteBookmark`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark.deleteBookmark/llms.txt)
- [`app.bsky.bookmark.getBookmarks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.bookmark.getBookmarks/llms.txt)
- [`app.bsky.contact.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.defs/llms.txt)
- [`app.bsky.contact.dismissMatch`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.dismissMatch/llms.txt)
- [`app.bsky.contact.getMatches`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.getMatches/llms.txt)
- [`app.bsky.contact.getSyncStatus`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.getSyncStatus/llms.txt)
- [`app.bsky.contact.importContacts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.importContacts/llms.txt)
- [`app.bsky.contact.removeData`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.removeData/llms.txt)
- [`app.bsky.contact.sendNotification`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.sendNotification/llms.txt)
- [`app.bsky.contact.startPhoneVerification`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.startPhoneVerification/llms.txt)
- [`app.bsky.contact.verifyPhone`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.contact.verifyPhone/llms.txt)
- [`app.bsky.defs::selfLabels`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.defs::selfLabels/llms.txt)
- [`app.bsky.draft.createDraft`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.draft.createDraft/llms.txt)
- [`app.bsky.draft.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.draft.defs/llms.txt)
- [`app.bsky.draft.deleteDraft`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.draft.deleteDraft/llms.txt)
- [`app.bsky.draft.getDrafts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.draft.getDrafts/llms.txt)
- [`app.bsky.draft.updateDraft`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.draft.updateDraft/llms.txt)
- [`app.bsky.embed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed/llms.txt)
- [`app.bsky.embed&`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed&/llms.txt)
- [`app.bsky.embed.audio`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.audio/llms.txt)
- [`app.bsky.embed.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.defs/llms.txt)
- [`app.bsky.embed.documents`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.documents/llms.txt)
- [`app.bsky.embed.external`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.external/llms.txt)
- [`app.bsky.embed.gallery`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.gallery/llms.txt)
- [`app.bsky.embed.getEmbedExternalView`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.getEmbedExternalView/llms.txt)
- [`app.bsky.embed.image`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.image/llms.txt)
- [`app.bsky.embed.images`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.images/llms.txt)
- [`app.bsky.embed.media`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.media/llms.txt)
- [`app.bsky.embed.record`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.record/llms.txt)
- [`app.bsky.embed.recordWithMedia`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.recordWithMedia/llms.txt)
- [`app.bsky.embed.reply`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.reply/llms.txt)
- [`app.bsky.embed.video`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.video/llms.txt)
- [`app.bsky.embed.videos`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.embed.videos/llms.txt)
- [`app.bsky.feed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed/llms.txt)
- [`app.bsky.feed.bookmark`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.bookmark/llms.txt)
- [`app.bsky.feed.definition`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.definition/llms.txt)
- [`app.bsky.feed.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.defs/llms.txt)
- [`app.bsky.feed.defs_selfLabel`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.defs_selfLabel/llms.txt)
- [`app.bsky.feed.describeFeedGenerator`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.describeFeedGenerator/llms.txt)
- [`app.bsky.feed.dislike`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.dislike/llms.txt)
- [`app.bsky.feed.external`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.external/llms.txt)
- [`app.bsky.feed.facet`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.facet/llms.txt)
- [`app.bsky.feed.generator`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.generator/llms.txt)
- [`app.bsky.feed.getActorFeeds`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getActorFeeds/llms.txt)
- [`app.bsky.feed.getActorLikes`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getActorLikes/llms.txt)
- [`app.bsky.feed.getAuthorFeed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getAuthorFeed/llms.txt)
- [`app.bsky.feed.getFeed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getFeed/llms.txt)
- [`app.bsky.feed.getFeedGenerator`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getFeedGenerator/llms.txt)
- [`app.bsky.feed.getFeedGenerators`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getFeedGenerators/llms.txt)
- [`app.bsky.feed.getFeedSkeleton`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getFeedSkeleton/llms.txt)
- [`app.bsky.feed.getLikes`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getLikes/llms.txt)
- [`app.bsky.feed.getListFeed`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getListFeed/llms.txt)
- [`app.bsky.feed.getPostThread`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getPostThread/llms.txt)
- [`app.bsky.feed.getPosts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getPosts/llms.txt)
- [`app.bsky.feed.getQuotes`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getQuotes/llms.txt)
- [`app.bsky.feed.getRepostedBy`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getRepostedBy/llms.txt)
- [`app.bsky.feed.getSuggestedFeeds`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getSuggestedFeeds/llms.txt)
- [`app.bsky.feed.getTimeline`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.getTimeline/llms.txt)
- [`app.bsky.feed.images`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.images/llms.txt)
- [`app.bsky.feed.labels`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.labels/llms.txt)
- [`app.bsky.feed.like`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.like/llms.txt)
- [`app.bsky.feed.like\`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.like\/llms.txt)
- [`app.bsky.feed.poll`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.poll/llms.txt)
- [`app.bsky.feed.post`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.post/llms.txt)
- [`app.bsky.feed.post&`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.post&/llms.txt)
- [`app.bsky.feed.postView`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.postView/llms.txt)
- [`app.bsky.feed.post\`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.post\/llms.txt)
- [`app.bsky.feed.postgate`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.postgate/llms.txt)
- [`app.bsky.feed.postgate~`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.postgate~/llms.txt)
- [`app.bsky.feed.posts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.posts/llms.txt)
- [`app.bsky.feed.replyRestriction`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.replyRestriction/llms.txt)
- [`app.bsky.feed.repost`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.repost/llms.txt)
- [`app.bsky.feed.searchPosts`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.searchPosts/llms.txt)
- [`app.bsky.feed.searchPostsV2`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.searchPostsV2/llms.txt)
- [`app.bsky.feed.sendInteractions`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.sendInteractions/llms.txt)
- [`app.bsky.feed.threadgate`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.threadgate/llms.txt)
- [`app.bsky.feed.threadgate~`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.feed.threadgate~/llms.txt)
- [`app.bsky.graph.block`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.block/llms.txt)
- [`app.bsky.graph.cancellation`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.cancellation/llms.txt)
- [`app.bsky.graph.collectionitem`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.collectionitem/llms.txt)
- [`app.bsky.graph.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.defs/llms.txt)
- [`app.bsky.graph.defs(selfLabels)`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.defs(selfLabels)/llms.txt)
- [`app.bsky.graph.follow`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.follow/llms.txt)
- [`app.bsky.graph.follow~`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.follow~/llms.txt)
- [`app.bsky.graph.getActorStarterPacks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getActorStarterPacks/llms.txt)
- [`app.bsky.graph.getBlocks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getBlocks/llms.txt)
- [`app.bsky.graph.getFollowers`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getFollowers/llms.txt)
- [`app.bsky.graph.getFollows`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getFollows/llms.txt)
- [`app.bsky.graph.getKnownFollowers`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getKnownFollowers/llms.txt)
- [`app.bsky.graph.getList`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getList/llms.txt)
- [`app.bsky.graph.getListBlocks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getListBlocks/llms.txt)
- [`app.bsky.graph.getListMutes`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getListMutes/llms.txt)
- [`app.bsky.graph.getLists`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getLists/llms.txt)
- [`app.bsky.graph.getListsWithMembership`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getListsWithMembership/llms.txt)
- [`app.bsky.graph.getMutes`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getMutes/llms.txt)
- [`app.bsky.graph.getRelationships`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getRelationships/llms.txt)
- [`app.bsky.graph.getStarterPack`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getStarterPack/llms.txt)
- [`app.bsky.graph.getStarterPacks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getStarterPacks/llms.txt)
- [`app.bsky.graph.getStarterPacksWithMembership`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getStarterPacksWithMembership/llms.txt)
- [`app.bsky.graph.getSuggestedFollowsByActor`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.getSuggestedFollowsByActor/llms.txt)
- [`app.bsky.graph.list`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.list/llms.txt)
- [`app.bsky.graph.listblock`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.listblock/llms.txt)
- [`app.bsky.graph.listitem`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.listitem/llms.txt)
- [`app.bsky.graph.listmute`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.listmute/llms.txt)
- [`app.bsky.graph.muteActor`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.muteActor/llms.txt)
- [`app.bsky.graph.muteActorList`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.muteActorList/llms.txt)
- [`app.bsky.graph.muteThread`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.muteThread/llms.txt)
- [`app.bsky.graph.searchStarterPacks`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.searchStarterPacks/llms.txt)
- [`app.bsky.graph.sitemap`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.sitemap/llms.txt)
- [`app.bsky.graph.starterpack`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.starterpack/llms.txt)
- [`app.bsky.graph.unmuteActor`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.unmuteActor/llms.txt)
- [`app.bsky.graph.unmuteActorList`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.unmuteActorList/llms.txt)
- [`app.bsky.graph.unmuteThread`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.unmuteThread/llms.txt)
- [`app.bsky.graph.verification`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.graph.verification/llms.txt)
- [`app.bsky.labeler.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.labeler.defs/llms.txt)
- [`app.bsky.labeler.getServices`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.labeler.getServices/llms.txt)
- [`app.bsky.labeler.service`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.labeler.service/llms.txt)
- [`app.bsky.labels&`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.labels&/llms.txt)
- [`app.bsky.notification.declaration`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.declaration/llms.txt)
- [`app.bsky.notification.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.defs/llms.txt)
- [`app.bsky.notification.getPreferences`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.getPreferences/llms.txt)
- [`app.bsky.notification.getUnreadCount`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.getUnreadCount/llms.txt)
- [`app.bsky.notification.listActivitySubscriptions`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.listActivitySubscriptions/llms.txt)
- [`app.bsky.notification.listNotifications`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.listNotifications/llms.txt)
- [`app.bsky.notification.putActivitySubscription`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.putActivitySubscription/llms.txt)
- [`app.bsky.notification.putPreferences`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.putPreferences/llms.txt)
- [`app.bsky.notification.putPreferencesV2`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.putPreferencesV2/llms.txt)
- [`app.bsky.notification.registerPush`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.registerPush/llms.txt)
- [`app.bsky.notification.unregisterPush`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.unregisterPush/llms.txt)
- [`app.bsky.notification.updateSeen`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.notification.updateSeen/llms.txt)
- [`app.bsky.post`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.post/llms.txt)
- [`app.bsky.richtext`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.richtext/llms.txt)
- [`app.bsky.richtext facet`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.richtext facet/llms.txt)
- [`app.bsky.richtext.facet`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.richtext.facet/llms.txt)
- [`app.bsky.richtext.link`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.richtext.link/llms.txt)
- [`app.bsky.richtextfacet`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.richtextfacet/llms.txt)
- [`app.bsky.social`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.social/llms.txt)
- [`app.bsky.verification`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.verification/llms.txt)
- [`app.bsky.video`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.video/llms.txt)
- [`app.bsky.video.defs`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.video.defs/llms.txt)
- [`app.bsky.video.getJobStatus`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.video.getJobStatus/llms.txt)
- [`app.bsky.video.getUploadLimits`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.video.getUploadLimits/llms.txt)
- [`app.bsky.video.uploadVideo`](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.video.uploadVideo/llms.txt)
- [`app.certified.actor.organization`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.actor.organization/llms.txt)
- [`app.certified.actor.profile`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.actor.profile/llms.txt)
- [`app.certified.badge.award`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.badge.award/llms.txt)
- [`app.certified.badge.definition`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.badge.definition/llms.txt)
- [`app.certified.badge.response`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.badge.response/llms.txt)
- [`app.certified.defs`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.defs/llms.txt)
- [`app.certified.graph.follow`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.graph.follow/llms.txt)
- [`app.certified.location`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.location/llms.txt)
- [`app.certified.profile`](https://lexicon.garden/lexicon/did:plc:apun3uo5jqm34pxzqq6on754/app.certified.profile/llms.txt)
- [`app.chavatar.auth.deleteSession`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.deleteSession/llms.txt)
- [`app.chavatar.auth.disconnect`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.disconnect/llms.txt)
- [`app.chavatar.auth.getLoginUrl`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.getLoginUrl/llms.txt)
- [`app.chavatar.auth.getSession`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.getSession/llms.txt)
- [`app.chavatar.authManageAvatar`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.authManageAvatar/llms.txt)
- [`app.chavatar.avatar`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.avatar/llms.txt)
- [`app.chavatar.settings`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.settings/llms.txt)
- [`app.chavatar.state`](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.state/llms.txt)
- [`app.chronosky.authClient`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.authClient/llms.txt)
- [`app.chronosky.media.getBlob`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.media.getBlob/llms.txt)
- [`app.chronosky.media.uploadBlob`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.media.uploadBlob/llms.txt)
- [`app.chronosky.plan.getAssignment`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.plan.getAssignment/llms.txt)
- [`app.chronosky.plan.getUsage`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.plan.getUsage/llms.txt)
- [`app.chronosky.plan.listAssignments`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.plan.listAssignments/llms.txt)
- [`app.chronosky.plan.redeemTicket`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.plan.redeemTicket/llms.txt)
- [`app.chronosky.schedule.createPost`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.createPost/llms.txt)
- [`app.chronosky.schedule.deletePost`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.deletePost/llms.txt)
- [`app.chronosky.schedule.getPost`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.getPost/llms.txt)
- [`app.chronosky.schedule.listPosts`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.listPosts/llms.txt)
- [`app.chronosky.schedule.retryFailedPosts`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.retryFailedPosts/llms.txt)
- [`app.chronosky.schedule.updatePost`](https://lexicon.garden/lexicon/did:plc:bfjib7fy6dob3gyfssyfd4ry/app.chronosky.schedule.updatePost/llms.txt)
- [`app.didpic.actor.defs`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.defs/llms.txt)
- [`app.didpic.actor.exists`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.exists/llms.txt)
- [`app.didpic.actor.getPrefs`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.getPrefs/llms.txt)
- [`app.didpic.actor.getProfile`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.getProfile/llms.txt)
- [`app.didpic.actor.getProfilePublic`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.getProfilePublic/llms.txt)
- [`app.didpic.actor.getProfiles`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.getProfiles/llms.txt)
- [`app.didpic.actor.getSuggestions`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.getSuggestions/llms.txt)
- [`app.didpic.actor.profile`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.profile/llms.txt)
- [`app.didpic.actor.putPref`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.putPref/llms.txt)
- [`app.didpic.admin.applyAccountLabel`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.applyAccountLabel/llms.txt)
- [`app.didpic.admin.applyPostLabel`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.applyPostLabel/llms.txt)
- [`app.didpic.admin.clearClientError`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.clearClientError/llms.txt)
- [`app.didpic.admin.deleteActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.deleteActor/llms.txt)
- [`app.didpic.admin.deletePushToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.deletePushToken/llms.txt)
- [`app.didpic.admin.getActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getActor/llms.txt)
- [`app.didpic.admin.getAnalyticsOverview`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getAnalyticsOverview/llms.txt)
- [`app.didpic.admin.getAppeal`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getAppeal/llms.txt)
- [`app.didpic.admin.getClientError`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getClientError/llms.txt)
- [`app.didpic.admin.getPost`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getPost/llms.txt)
- [`app.didpic.admin.getPostEditHistory`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getPostEditHistory/llms.txt)
- [`app.didpic.admin.getPushToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getPushToken/llms.txt)
- [`app.didpic.admin.getReport`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getReport/llms.txt)
- [`app.didpic.admin.getScansForActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getScansForActor/llms.txt)
- [`app.didpic.admin.getScansForSubject`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getScansForSubject/llms.txt)
- [`app.didpic.admin.getSubjectContext`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.getSubjectContext/llms.txt)
- [`app.didpic.admin.grantRole`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.grantRole/llms.txt)
- [`app.didpic.admin.growthStats`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.growthStats/llms.txt)
- [`app.didpic.admin.listAppeals`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listAppeals/llms.txt)
- [`app.didpic.admin.listAuditLog`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listAuditLog/llms.txt)
- [`app.didpic.admin.listClientErrors`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listClientErrors/llms.txt)
- [`app.didpic.admin.listPushTokensByActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listPushTokensByActor/llms.txt)
- [`app.didpic.admin.listReports`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listReports/llms.txt)
- [`app.didpic.admin.listResyncFailures`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listResyncFailures/llms.txt)
- [`app.didpic.admin.listRoles`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listRoles/llms.txt)
- [`app.didpic.admin.listScans`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listScans/llms.txt)
- [`app.didpic.admin.listSuppressedTags`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listSuppressedTags/llms.txt)
- [`app.didpic.admin.listUsers`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.listUsers/llms.txt)
- [`app.didpic.admin.queueCounts`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.queueCounts/llms.txt)
- [`app.didpic.admin.removeAccountLabel`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.removeAccountLabel/llms.txt)
- [`app.didpic.admin.removePostLabel`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.removePostLabel/llms.txt)
- [`app.didpic.admin.reopenAppeal`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.reopenAppeal/llms.txt)
- [`app.didpic.admin.reopenReport`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.reopenReport/llms.txt)
- [`app.didpic.admin.rescanSubject`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.rescanSubject/llms.txt)
- [`app.didpic.admin.resolveAppeal`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.resolveAppeal/llms.txt)
- [`app.didpic.admin.resolveReport`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.resolveReport/llms.txt)
- [`app.didpic.admin.restoreActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.restoreActor/llms.txt)
- [`app.didpic.admin.resyncActor`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.resyncActor/llms.txt)
- [`app.didpic.admin.revokeRole`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.revokeRole/llms.txt)
- [`app.didpic.admin.stats`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.stats/llms.txt)
- [`app.didpic.admin.suppressActorDiscover`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.suppressActorDiscover/llms.txt)
- [`app.didpic.admin.suppressPostDiscover`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.suppressPostDiscover/llms.txt)
- [`app.didpic.admin.suppressTag`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.suppressTag/llms.txt)
- [`app.didpic.admin.suspend`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.suspend/llms.txt)
- [`app.didpic.admin.takedown`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.takedown/llms.txt)
- [`app.didpic.admin.testPushToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.testPushToken/llms.txt)
- [`app.didpic.admin.unsuppressActorDiscover`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.unsuppressActorDiscover/llms.txt)
- [`app.didpic.admin.unsuppressPostDiscover`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.unsuppressPostDiscover/llms.txt)
- [`app.didpic.admin.unsuppressTag`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.unsuppressTag/llms.txt)
- [`app.didpic.admin.unsuspend`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.unsuspend/llms.txt)
- [`app.didpic.admin.untakedown`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.admin.untakedown/llms.txt)
- [`app.didpic.adminAuth`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.adminAuth/llms.txt)
- [`app.didpic.authBasic`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.authBasic/llms.txt)
- [`app.didpic.feed.comment`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.comment/llms.txt)
- [`app.didpic.feed.defs`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.defs/llms.txt)
- [`app.didpic.feed.getActorLikes`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getActorLikes/llms.txt)
- [`app.didpic.feed.getAuthorFeed`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getAuthorFeed/llms.txt)
- [`app.didpic.feed.getCommentReplies`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getCommentReplies/llms.txt)
- [`app.didpic.feed.getDiscoverFeed`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getDiscoverFeed/llms.txt)
- [`app.didpic.feed.getFeatured`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getFeatured/llms.txt)
- [`app.didpic.feed.getLikes`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getLikes/llms.txt)
- [`app.didpic.feed.getPostPublic`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getPostPublic/llms.txt)
- [`app.didpic.feed.getPostThread`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getPostThread/llms.txt)
- [`app.didpic.feed.getTagFeed`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTagFeed/llms.txt)
- [`app.didpic.feed.getTagFeedPublic`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTagFeedPublic/llms.txt)
- [`app.didpic.feed.getTimeline`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTimeline/llms.txt)
- [`app.didpic.feed.getTrendingTags`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTrendingTags/llms.txt)
- [`app.didpic.feed.like`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.like/llms.txt)
- [`app.didpic.feed.post`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.post/llms.txt)
- [`app.didpic.feed.searchTags`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.searchTags/llms.txt)
- [`app.didpic.graph.block`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.block/llms.txt)
- [`app.didpic.graph.follow`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.follow/llms.txt)
- [`app.didpic.graph.getBlocks`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.getBlocks/llms.txt)
- [`app.didpic.graph.getFollowers`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.getFollowers/llms.txt)
- [`app.didpic.graph.getFollows`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.getFollows/llms.txt)
- [`app.didpic.graph.getSubscriptions`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.getSubscriptions/llms.txt)
- [`app.didpic.graph.subscribePosts`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.subscribePosts/llms.txt)
- [`app.didpic.graph.unsubscribePosts`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.graph.unsubscribePosts/llms.txt)
- [`app.didpic.identity.getFastPathToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.identity.getFastPathToken/llms.txt)
- [`app.didpic.identity.getSession`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.identity.getSession/llms.txt)
- [`app.didpic.identity.mintWidgetToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.identity.mintWidgetToken/llms.txt)
- [`app.didpic.identity.resolveHandle`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.identity.resolveHandle/llms.txt)
- [`app.didpic.moderation.createAppeal`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.moderation.createAppeal/llms.txt)
- [`app.didpic.moderation.createReport`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.moderation.createReport/llms.txt)
- [`app.didpic.notification.defs`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.defs/llms.txt)
- [`app.didpic.notification.deletePushToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.deletePushToken/llms.txt)
- [`app.didpic.notification.getUnreadCount`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.getUnreadCount/llms.txt)
- [`app.didpic.notification.listNotifications`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.listNotifications/llms.txt)
- [`app.didpic.notification.recordEvents`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.recordEvents/llms.txt)
- [`app.didpic.notification.registerPush`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.registerPush/llms.txt)
- [`app.didpic.notification.registerPushToken`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.registerPushToken/llms.txt)
- [`app.didpic.notification.reportClientError`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.reportClientError/llms.txt)
- [`app.didpic.notification.unregisterPush`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.unregisterPush/llms.txt)
- [`app.didpic.notification.updateSeen`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.notification.updateSeen/llms.txt)
- [`app.didpic.richtext.facet`](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.richtext.facet/llms.txt)
- [`app.dropanchor.checkin`](https://lexicon.garden/lexicon/did:plc:wxex3wx5k4ctciupsv5m5stb/app.dropanchor.checkin/llms.txt)
- [`app.dropanchor.comment`](https://lexicon.garden/lexicon/did:plc:wxex3wx5k4ctciupsv5m5stb/app.dropanchor.comment/llms.txt)
- [`app.dropanchor.like`](https://lexicon.garden/lexicon/did:plc:wxex3wx5k4ctciupsv5m5stb/app.dropanchor.like/llms.txt)
- [`app.fitsky.blueskyPost`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.blueskyPost/llms.txt)
- [`app.fitsky.goal`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.goal/llms.txt)
- [`app.fitsky.profile`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.profile/llms.txt)
- [`app.fitsky.trend`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.trend/llms.txt)
- [`app.fitsky.workout`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.workout/llms.txt)
- [`app.fitsky.workoutPlan`](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.workoutPlan/llms.txt)
- [`app.flapnote.authBasic`](https://lexicon.garden/lexicon/did:plc:mzlfgcwppu4zcbrx37mrbpcq/app.flapnote.authBasic/llms.txt)
- [`app.gainforest.ac.audio`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.ac.audio/llms.txt)
- [`app.gainforest.ac.deployment`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.ac.deployment/llms.txt)
- [`app.gainforest.ac.multimedia`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.ac.multimedia/llms.txt)
- [`app.gainforest.asset.file`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.asset.file/llms.txt)
- [`app.gainforest.common.defs`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.common.defs/llms.txt)
- [`app.gainforest.dwc.dataset`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.dataset/llms.txt)
- [`app.gainforest.dwc.defs`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.defs/llms.txt)
- [`app.gainforest.dwc.event`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.event/llms.txt)
- [`app.gainforest.dwc.measurement`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.measurement/llms.txt)
- [`app.gainforest.dwc.occurrence`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.occurrence/llms.txt)
- [`app.gainforest.dwc.occurrence~`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.dwc.occurrence~/llms.txt)
- [`app.gainforest.evaluator.defs`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.evaluator.defs/llms.txt)
- [`app.gainforest.evaluator.evaluation`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.evaluator.evaluation/llms.txt)
- [`app.gainforest.evaluator.service`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.evaluator.service/llms.txt)
- [`app.gainforest.evaluator.subscription`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.evaluator.subscription/llms.txt)
- [`app.gainforest.funding.config`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.funding.config/llms.txt)
- [`app.gainforest.gbif.dataset`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.gbif.dataset/llms.txt)
- [`app.gainforest.link.evm`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.link.evm/llms.txt)
- [`app.gainforest.organization.defaultSite`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.defaultSite/llms.txt)
- [`app.gainforest.organization.donation`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.donation/llms.txt)
- [`app.gainforest.organization.getIndexedOrganizations`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.getIndexedOrganizations/llms.txt)
- [`app.gainforest.organization.info`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.info/llms.txt)
- [`app.gainforest.organization.layer`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.layer/llms.txt)
- [`app.gainforest.organization.member`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.member/llms.txt)
- [`app.gainforest.organization.observations.dendogram`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.observations.dendogram/llms.txt)
- [`app.gainforest.organization.observations.fauna`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.observations.fauna/llms.txt)
- [`app.gainforest.organization.observations.flora`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.observations.flora/llms.txt)
- [`app.gainforest.organization.observations.measuredTreesCluster`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.observations.measuredTreesCluster/llms.txt)
- [`app.gainforest.organization.predictions.fauna`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.predictions.fauna/llms.txt)
- [`app.gainforest.organization.predictions.flora`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.organization.predictions.flora/llms.txt)
- [`app.gainforest.wallet.pendingSend`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.wallet.pendingSend/llms.txt)
- [`app.gainforest.wallet.primary`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.wallet.primary/llms.txt)
- [`app.gainforest.wallet.splitsVault`](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/app.gainforest.wallet.splitsVault/llms.txt)
- [`app.goblinquest.quest`](https://lexicon.garden/lexicon/did:plc:yik6wxcmeyinhp7znvblslru/app.goblinquest.quest/llms.txt)
- [`app.greengale.blog.defs`](https://lexicon.garden/lexicon/did:plc:purpkfw7haimc4zu5a57slza/app.greengale.blog.defs/llms.txt)
- [`app.greengale.blog.entry`](https://lexicon.garden/lexicon/did:plc:purpkfw7haimc4zu5a57slza/app.greengale.blog.entry/llms.txt)
- [`app.greengale.document`](https://lexicon.garden/lexicon/did:plc:purpkfw7haimc4zu5a57slza/app.greengale.document/llms.txt)
- [`app.greengale.publication`](https://lexicon.garden/lexicon/did:plc:purpkfw7haimc4zu5a57slza/app.greengale.publication/llms.txt)
- [`app.greengale.theme`](https://lexicon.garden/lexicon/did:plc:purpkfw7haimc4zu5a57slza/app.greengale.theme/llms.txt)
- [`app.honks.feed.honk`](https://lexicon.garden/lexicon/did:plc:oqeockam5nyekvgezckp3g3v/app.honks.feed.honk/llms.txt)
- [`app.hyper-limit.bookmark`](https://lexicon.garden/lexicon/did:plc:5j2yklrr4pozy7yhrdq5xfn7/app.hyper-limit.bookmark/llms.txt)
- [`app.hyper-limit.bookmark.list`](https://lexicon.garden/lexicon/did:plc:5j2yklrr4pozy7yhrdq5xfn7/app.hyper-limit.bookmark.list/llms.txt)
- [`app.juttu.articleLink`](https://lexicon.garden/lexicon/did:plc:wgh2vn7jb56unancaapfmrin/app.juttu.articleLink/llms.txt)
- [`app.kimbia.activity`](https://lexicon.garden/lexicon/did:plc:gktrthagvfvzkotyr3n2foox/app.kimbia.activity/llms.txt)
- [`app.kimbia.adventure`](https://lexicon.garden/lexicon/did:plc:gktrthagvfvzkotyr3n2foox/app.kimbia.adventure/llms.txt)
- [`app.kimbia.share`](https://lexicon.garden/lexicon/did:plc:gktrthagvfvzkotyr3n2foox/app.kimbia.share/llms.txt)
- [`app.luxray.authBasic`](https://lexicon.garden/lexicon/did:plc:wegjdnowkkws3uramhhgr6dg/app.luxray.authBasic/llms.txt)
- [`app.matakite.audit`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.audit/llms.txt)
- [`app.matakite.dispute`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.dispute/llms.txt)
- [`app.matakite.flag`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.flag/llms.txt)
- [`app.matakite.forecast`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.forecast/llms.txt)
- [`app.matakite.question`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.question/llms.txt)
- [`app.matakite.resolution`](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.resolution/llms.txt)
- [`app.mathr.leaderboard.entry`](https://lexicon.garden/lexicon/did:plc:bf6hxs2vtvu62fk5wzlvlq3h/app.mathr.leaderboard.entry/llms.txt)
- [`app.mathr.score`](https://lexicon.garden/lexicon/did:plc:bf6hxs2vtvu62fk5wzlvlq3h/app.mathr.score/llms.txt)
- [`app.navyfragen.message`](https://lexicon.garden/lexicon/did:plc:dvrcvhuezgh2xcqjbwnwz3hc/app.navyfragen.message/llms.txt)
- [`app.nblr.actor.profile`](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.actor.profile/llms.txt)
- [`app.nblr.authFull`](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.authFull/llms.txt)
- [`app.nblr.feed.collection`](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.collection/llms.txt)
- [`app.nblr.feed.link`](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.link/llms.txt)
- [`app.nblr.feed.post`](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.post/llms.txt)
- [`app.ocho.auth.atProtoCallback`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.atProtoCallback/llms.txt)
- [`app.ocho.auth.authorize`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.authorize/llms.txt)
- [`app.ocho.auth.defs`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.defs/llms.txt)
- [`app.ocho.auth.githubCallback`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.githubCallback/llms.txt)
- [`app.ocho.auth.googleCallback`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.googleCallback/llms.txt)
- [`app.ocho.auth.requestEmailUpdate`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.requestEmailUpdate/llms.txt)
- [`app.ocho.auth.updateEmail`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.updateEmail/llms.txt)
- [`app.ocho.auth.updateHandle`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.updateHandle/llms.txt)
- [`app.ocho.auth.whoami`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.auth.whoami/llms.txt)
- [`app.ocho.edu.getVerificationUrl`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.edu.getVerificationUrl/llms.txt)
- [`app.ocho.edu.googleCallback`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.edu.googleCallback/llms.txt)
- [`app.ocho.edu.isVerified`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.edu.isVerified/llms.txt)
- [`app.ocho.edu.verification`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.edu.verification/llms.txt)
- [`app.ocho.message.send`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.message.send/llms.txt)
- [`app.ocho.payment.getStripeIntent`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.payment.getStripeIntent/llms.txt)
- [`app.ocho.plugin.assets`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.assets/llms.txt)
- [`app.ocho.plugin.defs`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.defs/llms.txt)
- [`app.ocho.plugin.getLaunchAsset`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.getLaunchAsset/llms.txt)
- [`app.ocho.plugin.getManifest`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.getManifest/llms.txt)
- [`app.ocho.plugin.manifest`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.manifest/llms.txt)
- [`app.ocho.plugin.putHostingUrl`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.putHostingUrl/llms.txt)
- [`app.ocho.plugin.service`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.plugin.service/llms.txt)
- [`app.ocho.push.register`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.push.register/llms.txt)
- [`app.ocho.server.getLaunchToken`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.server.getLaunchToken/llms.txt)
- [`app.ocho.server.getToken`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.server.getToken/llms.txt)
- [`app.ocho.server.swapLaunchToken`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.server.swapLaunchToken/llms.txt)
- [`app.ocho.state.getConfig`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.state.getConfig/llms.txt)
- [`app.ocho.state.id`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.state.id/llms.txt)
- [`app.ocho.state.login`](https://lexicon.garden/lexicon/did:plc:jm4zwg4raokwfysioe7767zh/app.ocho.state.login/llms.txt)
- [`app.offprint.actor.profile`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.actor.profile/llms.txt)
- [`app.offprint.authFull`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.authFull/llms.txt)
- [`app.offprint.block.blockquote`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.blockquote/llms.txt)
- [`app.offprint.block.blueskyPost`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.blueskyPost/llms.txt)
- [`app.offprint.block.bulletList`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.bulletList/llms.txt)
- [`app.offprint.block.button`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.button/llms.txt)
- [`app.offprint.block.callout`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.callout/llms.txt)
- [`app.offprint.block.codeBlock`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.codeBlock/llms.txt)
- [`app.offprint.block.heading`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.heading/llms.txt)
- [`app.offprint.block.horizontalRule`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.horizontalRule/llms.txt)
- [`app.offprint.block.image`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.image/llms.txt)
- [`app.offprint.block.imageCarousel`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.imageCarousel/llms.txt)
- [`app.offprint.block.imageDiff`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.imageDiff/llms.txt)
- [`app.offprint.block.imageGrid`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.imageGrid/llms.txt)
- [`app.offprint.block.mathBlock`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.mathBlock/llms.txt)
- [`app.offprint.block.orderedList`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.orderedList/llms.txt)
- [`app.offprint.block.taskList`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.taskList/llms.txt)
- [`app.offprint.block.text`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.text/llms.txt)
- [`app.offprint.block.webBookmark`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.webBookmark/llms.txt)
- [`app.offprint.block.webEmbed`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.webEmbed/llms.txt)
- [`app.offprint.content`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.content/llms.txt)
- [`app.offprint.document`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.document/llms.txt)
- [`app.offprint.document.article`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.document.article/llms.txt)
- [`app.offprint.post`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.post/llms.txt)
- [`app.offprint.publication`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.publication/llms.txt)
- [`app.offprint.richtext`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.richtext/llms.txt)
- [`app.offprint.richtext.facet`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.richtext.facet/llms.txt)
- [`app.offprint.theme`](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.theme/llms.txt)
- [`app.openmkt.marketplace.listing`](https://lexicon.garden/lexicon/did:plc:ma37sd3y64o4j7pl57mwn7lb/app.openmkt.marketplace.listing/llms.txt)
- [`app.protoimsg.chat.allowlist`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.allowlist/llms.txt)
- [`app.protoimsg.chat.authFull`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.authFull/llms.txt)
- [`app.protoimsg.chat.authVerify`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.authVerify/llms.txt)
- [`app.protoimsg.chat.ban`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.ban/llms.txt)
- [`app.protoimsg.chat.channel`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.channel/llms.txt)
- [`app.protoimsg.chat.community`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.community/llms.txt)
- [`app.protoimsg.chat.message`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.message/llms.txt)
- [`app.protoimsg.chat.poll`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.poll/llms.txt)
- [`app.protoimsg.chat.role`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.role/llms.txt)
- [`app.protoimsg.chat.room`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.room/llms.txt)
- [`app.protoimsg.chat.vote`](https://lexicon.garden/lexicon/did:plc:xk3xpcauatfephlieonmluh4/app.protoimsg.chat.vote/llms.txt)
- [`app.rocksky.actor.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.defs/llms.txt)
- [`app.rocksky.actor.getActorAlbums`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorAlbums/llms.txt)
- [`app.rocksky.actor.getActorArtists`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorArtists/llms.txt)
- [`app.rocksky.actor.getActorCompatibility`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorCompatibility/llms.txt)
- [`app.rocksky.actor.getActorLovedSongs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorLovedSongs/llms.txt)
- [`app.rocksky.actor.getActorNeighbours`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorNeighbours/llms.txt)
- [`app.rocksky.actor.getActorScrobbles`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorScrobbles/llms.txt)
- [`app.rocksky.actor.getActorSongs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getActorSongs/llms.txt)
- [`app.rocksky.actor.getProfile`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.getProfile/llms.txt)
- [`app.rocksky.actor.status`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.status/llms.txt)
- [`app.rocksky.album`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.album/llms.txt)
- [`app.rocksky.album.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.album.defs/llms.txt)
- [`app.rocksky.album.getAlbum`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.album.getAlbum/llms.txt)
- [`app.rocksky.album.getAlbumTracks`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.album.getAlbumTracks/llms.txt)
- [`app.rocksky.album.getAlbums`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.album.getAlbums/llms.txt)
- [`app.rocksky.artist`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist/llms.txt)
- [`app.rocksky.artist.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.defs/llms.txt)
- [`app.rocksky.artist.getArtist`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.getArtist/llms.txt)
- [`app.rocksky.artist.getArtistAlbums`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.getArtistAlbums/llms.txt)
- [`app.rocksky.artist.getArtistRecentListeners`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.getArtistRecentListeners/llms.txt)
- [`app.rocksky.artist.getArtistTracks`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.getArtistTracks/llms.txt)
- [`app.rocksky.artist.getArtists`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist.getArtists/llms.txt)
- [`app.rocksky.charts.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.charts.defs/llms.txt)
- [`app.rocksky.charts.getScrobblesChart`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.charts.getScrobblesChart/llms.txt)
- [`app.rocksky.charts.getTopArtists`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.charts.getTopArtists/llms.txt)
- [`app.rocksky.charts.getTopTracks`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.charts.getTopTracks/llms.txt)
- [`app.rocksky.feed.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.defs/llms.txt)
- [`app.rocksky.feed.generator`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.generator/llms.txt)
- [`app.rocksky.feed.getFeed`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getFeed/llms.txt)
- [`app.rocksky.feed.getFeedGenerator`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getFeedGenerator/llms.txt)
- [`app.rocksky.feed.getFeedGenerators`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getFeedGenerators/llms.txt)
- [`app.rocksky.feed.getFeedSkeleton`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getFeedSkeleton/llms.txt)
- [`app.rocksky.feed.getStories`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getStories/llms.txt)
- [`app.rocksky.feed.search`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.search/llms.txt)
- [`app.rocksky.graph.follow`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.graph.follow/llms.txt)
- [`app.rocksky.like`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.like/llms.txt)
- [`app.rocksky.mirror.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.mirror.defs/llms.txt)
- [`app.rocksky.mirror.getMirrorSources`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.mirror.getMirrorSources/llms.txt)
- [`app.rocksky.mirror.putMirrorSource`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.mirror.putMirrorSource/llms.txt)
- [`app.rocksky.player.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.defs/llms.txt)
- [`app.rocksky.player.getCurrentlyPlaying`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.getCurrentlyPlaying/llms.txt)
- [`app.rocksky.player.next`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.next/llms.txt)
- [`app.rocksky.player.pause`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.pause/llms.txt)
- [`app.rocksky.player.play`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.play/llms.txt)
- [`app.rocksky.player.previous`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.previous/llms.txt)
- [`app.rocksky.player.seek`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.player.seek/llms.txt)
- [`app.rocksky.rockbox.audio.settings`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.rockbox.audio.settings/llms.txt)
- [`app.rocksky.rockbox.audioSettings`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.rockbox.audioSettings/llms.txt)
- [`app.rocksky.rockbox.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.rockbox.defs/llms.txt)
- [`app.rocksky.rockbox.getAudioSettings`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.rockbox.getAudioSettings/llms.txt)
- [`app.rocksky.rockbox.putAudioSettings`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.rockbox.putAudioSettings/llms.txt)
- [`app.rocksky.scrobble`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble/llms.txt)
- [`app.rocksky.scrobble.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble.defs/llms.txt)
- [`app.rocksky.scrobble.getScrobble`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble.getScrobble/llms.txt)
- [`app.rocksky.scrobble.getScrobbles`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble.getScrobbles/llms.txt)
- [`app.rocksky.shout`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.shout/llms.txt)
- [`app.rocksky.song`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song/llms.txt)
- [`app.rocksky.song.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song.defs/llms.txt)
- [`app.rocksky.song.getSong`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song.getSong/llms.txt)
- [`app.rocksky.song.getSongRecentListeners`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song.getSongRecentListeners/llms.txt)
- [`app.rocksky.song.getSongs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song.getSongs/llms.txt)
- [`app.rocksky.song.matchSong`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.song.matchSong/llms.txt)
- [`app.rocksky.spotify.defs`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.defs/llms.txt)
- [`app.rocksky.spotify.getCurrentlyPlaying`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.getCurrentlyPlaying/llms.txt)
- [`app.rocksky.spotify.next`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.next/llms.txt)
- [`app.rocksky.spotify.pause`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.pause/llms.txt)
- [`app.rocksky.spotify.play`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.play/llms.txt)
- [`app.rocksky.spotify.previous`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.previous/llms.txt)
- [`app.rocksky.spotify.seek`](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.spotify.seek/llms.txt)
- [`app.standard-reader.bookmark`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.bookmark/llms.txt)
- [`app.standard-reader.bookmarkDocument`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.bookmarkDocument/llms.txt)
- [`app.standard-reader.collection`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.collection/llms.txt)
- [`app.standard-reader.collectionsPublication`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.collectionsPublication/llms.txt)
- [`app.standard-reader.createList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.createList/llms.txt)
- [`app.standard-reader.defs`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.defs/llms.txt)
- [`app.standard-reader.deleteList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.deleteList/llms.txt)
- [`app.standard-reader.followPublication`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.followPublication/llms.txt)
- [`app.standard-reader.getAuthor`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getAuthor/llms.txt)
- [`app.standard-reader.getAuthorPublications`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getAuthorPublications/llms.txt)
- [`app.standard-reader.getBookmarkStatus`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getBookmarkStatus/llms.txt)
- [`app.standard-reader.getDocument`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getDocument/llms.txt)
- [`app.standard-reader.getDocumentContext`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getDocumentContext/llms.txt)
- [`app.standard-reader.getFollowStatus`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getFollowStatus/llms.txt)
- [`app.standard-reader.getFollowedByPeopleYouFollow`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getFollowedByPeopleYouFollow/llms.txt)
- [`app.standard-reader.getHomeFeed`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getHomeFeed/llms.txt)
- [`app.standard-reader.getLatestFeed`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getLatestFeed/llms.txt)
- [`app.standard-reader.getLikes`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getLikes/llms.txt)
- [`app.standard-reader.getList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getList/llms.txt)
- [`app.standard-reader.getListFeed`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getListFeed/llms.txt)
- [`app.standard-reader.getPublication`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getPublication/llms.txt)
- [`app.standard-reader.getPublications`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getPublications/llms.txt)
- [`app.standard-reader.getReadStatus`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getReadStatus/llms.txt)
- [`app.standard-reader.getReadingHistory`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getReadingHistory/llms.txt)
- [`app.standard-reader.getRecommendStatus`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getRecommendStatus/llms.txt)
- [`app.standard-reader.getRecommendedPublications`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getRecommendedPublications/llms.txt)
- [`app.standard-reader.getSaved`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getSaved/llms.txt)
- [`app.standard-reader.getTagFeed`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getTagFeed/llms.txt)
- [`app.standard-reader.getTrendingDocuments`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getTrendingDocuments/llms.txt)
- [`app.standard-reader.getTrendingPublications`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.getTrendingPublications/llms.txt)
- [`app.standard-reader.list`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.list/llms.txt)
- [`app.standard-reader.listSave`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.listSave/llms.txt)
- [`app.standard-reader.markAllRead`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.markAllRead/llms.txt)
- [`app.standard-reader.markPublicationAllRead`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.markPublicationAllRead/llms.txt)
- [`app.standard-reader.markRead`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.markRead/llms.txt)
- [`app.standard-reader.markUnread`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.markUnread/llms.txt)
- [`app.standard-reader.publicationTheme`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.publicationTheme/llms.txt)
- [`app.standard-reader.read`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.read/llms.txt)
- [`app.standard-reader.recommendDocument`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.recommendDocument/llms.txt)
- [`app.standard-reader.resolveHandle`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.resolveHandle/llms.txt)
- [`app.standard-reader.resolveUrl`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.resolveUrl/llms.txt)
- [`app.standard-reader.saveList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.saveList/llms.txt)
- [`app.standard-reader.searchDocuments`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.searchDocuments/llms.txt)
- [`app.standard-reader.searchPublications`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.searchPublications/llms.txt)
- [`app.standard-reader.unbookmarkDocument`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.unbookmarkDocument/llms.txt)
- [`app.standard-reader.unfollowPublication`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.unfollowPublication/llms.txt)
- [`app.standard-reader.unrecommendDocument`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.unrecommendDocument/llms.txt)
- [`app.standard-reader.unsaveList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.unsaveList/llms.txt)
- [`app.standard-reader.updateList`](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.updateList/llms.txt)
- [`app.starrysky.streak.checkin`](https://lexicon.garden/lexicon/did:plc:pdftantb2wpnczkhusrixbpy/app.starrysky.streak.checkin/llms.txt)
- [`app.starrysky.streak.freezegrant`](https://lexicon.garden/lexicon/did:plc:pdftantb2wpnczkhusrixbpy/app.starrysky.streak.freezegrant/llms.txt)
- [`app.starrysky.streak.inventory`](https://lexicon.garden/lexicon/did:plc:pdftantb2wpnczkhusrixbpy/app.starrysky.streak.inventory/llms.txt)
- [`app.starrysky.streak.policy`](https://lexicon.garden/lexicon/did:plc:pdftantb2wpnczkhusrixbpy/app.starrysky.streak.policy/llms.txt)
- [`app.streetseen.spot`](https://lexicon.garden/lexicon/did:plc:xdll6dvkuzjomvu72tzhccrt/app.streetseen.spot/llms.txt)
- [`app.thedistance.activity`](https://lexicon.garden/lexicon/did:plc:x52h4ttzfk5rxxdmzinoevgo/app.thedistance.activity/llms.txt)
- [`app.thedistance.follow`](https://lexicon.garden/lexicon/did:plc:x52h4ttzfk5rxxdmzinoevgo/app.thedistance.follow/llms.txt)
- [`app.thedistance.like`](https://lexicon.garden/lexicon/did:plc:x52h4ttzfk5rxxdmzinoevgo/app.thedistance.like/llms.txt)
- [`app.userinput.ban`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.ban/llms.txt)
- [`app.userinput.checkedNotifications`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.checkedNotifications/llms.txt)
- [`app.userinput.constellation`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.constellation/llms.txt)
- [`app.userinput.discussion`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.discussion/llms.txt)
- [`app.userinput.downvote`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.downvote/llms.txt)
- [`app.userinput.edit`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.edit/llms.txt)
- [`app.userinput.feedback`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.feedback/llms.txt)
- [`app.userinput.hide`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.hide/llms.txt)
- [`app.userinput.lock`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.lock/llms.txt)
- [`app.userinput.member`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.member/llms.txt)
- [`app.userinput.pin`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.pin/llms.txt)
- [`app.userinput.reply`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.reply/llms.txt)
- [`app.userinput.space`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.space/llms.txt)
- [`app.userinput.status`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.status/llms.txt)
- [`app.userinput.upvote`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.upvote/llms.txt)
- [`app.userinput.visited`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.visited/llms.txt)
- [`app.userinput.vote`](https://lexicon.garden/lexicon/did:plc:uyixj57k6nmxrdj7pjs2ss5s/app.userinput.vote/llms.txt)
- [`app.winesky.collection`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.collection/llms.txt)
- [`app.winesky.collectionItem`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.collectionItem/llms.txt)
- [`app.winesky.fullPermissions`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.fullPermissions/llms.txt)
- [`app.winesky.imageSet`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.imageSet/llms.txt)
- [`app.winesky.imageVariant`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.imageVariant/llms.txt)
- [`app.winesky.list`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.list/llms.txt)
- [`app.winesky.listItem`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.listItem/llms.txt)
- [`app.winesky.review`](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.review/llms.txt)
- [`app.xptracker.job.defs`](https://lexicon.garden/lexicon/did:plc:sjdzta3aangdjnmvktxvei22/app.xptracker.job.defs/llms.txt)
- [`app.xptracker.job.listing`](https://lexicon.garden/lexicon/did:plc:sjdzta3aangdjnmvktxvei22/app.xptracker.job.listing/llms.txt)
- [`app.yuunagi.authBasic`](https://lexicon.garden/lexicon/did:plc:mzlfgcwppu4zcbrx37mrbpcq/app.yuunagi.authBasic/llms.txt)
- [`art.cllctv.actor.profile`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.actor.profile/llms.txt)
- [`art.cllctv.article`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.article/llms.txt)
- [`art.cllctv.artwork`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.artwork/llms.txt)
- [`art.cllctv.authFullApp`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.authFullApp/llms.txt)
- [`art.cllctv.block.blockquote`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.blockquote/llms.txt)
- [`art.cllctv.block.bulletList`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.bulletList/llms.txt)
- [`art.cllctv.block.heading`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.heading/llms.txt)
- [`art.cllctv.block.horizontalRule`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.horizontalRule/llms.txt)
- [`art.cllctv.block.image`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.image/llms.txt)
- [`art.cllctv.block.layout`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.layout/llms.txt)
- [`art.cllctv.block.listItem`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.listItem/llms.txt)
- [`art.cllctv.block.orderedList`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.orderedList/llms.txt)
- [`art.cllctv.block.text`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.text/llms.txt)
- [`art.cllctv.block.timeline`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.timeline/llms.txt)
- [`art.cllctv.content.markdoc`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.content.markdoc/llms.txt)
- [`art.cllctv.content.plaintext`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.content.plaintext/llms.txt)
- [`art.cllctv.embed.defs`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.defs/llms.txt)
- [`art.cllctv.embed.external`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.external/llms.txt)
- [`art.cllctv.embed.externalVideo`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.externalVideo/llms.txt)
- [`art.cllctv.embed.images`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.images/llms.txt)
- [`art.cllctv.embed.record`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.record/llms.txt)
- [`art.cllctv.embed.recordWithMedia`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.embed.recordWithMedia/llms.txt)
- [`art.cllctv.feed.pin`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.feed.pin/llms.txt)
- [`art.cllctv.feed.post`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.feed.post/llms.txt)
- [`art.cllctv.graph.follow`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.graph.follow/llms.txt)
- [`art.cllctv.serie`](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.serie/llms.txt)
- [`art.xx-c.chat.message`](https://lexicon.garden/lexicon/did:plc:y3lae7hmqiwyq7w2v3bcb2c2/art.xx-c.chat.message/llms.txt)
- [`at.adsb.aircraft.identity`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.aircraft.identity/llms.txt)
- [`at.adsb.broadcast.message`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.broadcast.message/llms.txt)
- [`at.adsb.broadcast.subscribeEvents`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.broadcast.subscribeEvents/llms.txt)
- [`at.adsb.datalink.message`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.datalink.message/llms.txt)
- [`at.adsb.flight.defs`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.flight.defs/llms.txt)
- [`at.adsb.flight.record`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.flight.record/llms.txt)
- [`at.adsb.receiver.sighting`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.receiver.sighting/llms.txt)
- [`at.adsb.receiver.station`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.receiver.station/llms.txt)
- [`at.adsb.receiver.stats`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.receiver.stats/llms.txt)
- [`at.adsb.version.defs`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.version.defs/llms.txt)
- [`at.adsb.version.info`](https://lexicon.garden/lexicon/did:plc:32thk4eifx4ou6mxevswgjhg/at.adsb.version.info/llms.txt)
- [`at.atjam.invitation`](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.invitation/llms.txt)
- [`at.atjam.jam`](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.jam/llms.txt)
- [`at.atjam.round`](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.round/llms.txt)
- [`at.atjam.signup`](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.signup/llms.txt)
- [`at.atjam.submission`](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.submission/llms.txt)
- [`at.atpcraft.player.chat`](https://lexicon.garden/lexicon/did:plc:6y74tzb6iqeuzuqqxgkizrek/at.atpcraft.player.chat/llms.txt)
- [`at.atpcraft.player.defs`](https://lexicon.garden/lexicon/did:plc:6y74tzb6iqeuzuqqxgkizrek/at.atpcraft.player.defs/llms.txt)
- [`at.atpcraft.player.skin`](https://lexicon.garden/lexicon/did:plc:6y74tzb6iqeuzuqqxgkizrek/at.atpcraft.player.skin/llms.txt)
- [`at.atpcraft.player.snapshot`](https://lexicon.garden/lexicon/did:plc:6y74tzb6iqeuzuqqxgkizrek/at.atpcraft.player.snapshot/llms.txt)
- [`at.atpcraft.server.profile`](https://lexicon.garden/lexicon/did:plc:6y74tzb6iqeuzuqqxgkizrek/at.atpcraft.server.profile/llms.txt)
- [`at.dropb.authManageFiles`](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.dropb.authManageFiles/llms.txt)
- [`at.dropb.file`](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.dropb.file/llms.txt)
- [`at.ducs.actor.home`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.actor.home/llms.txt)
- [`at.ducs.actor.profile`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.actor.profile/llms.txt)
- [`at.ducs.channels.createChannel`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.channels.createChannel/llms.txt)
- [`at.ducs.channels.defs`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.channels.defs/llms.txt)
- [`at.ducs.channels.getChannels`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.channels.getChannels/llms.txt)
- [`at.ducs.oauth.callback`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.oauth.callback/llms.txt)
- [`at.ducs.oauth.login`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.oauth.login/llms.txt)
- [`at.ducs.oauth.refreshAccess`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.oauth.refreshAccess/llms.txt)
- [`at.ducs.relationships.defs`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.relationships.defs/llms.txt)
- [`at.ducs.relationships.getRelationships`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.relationships.getRelationships/llms.txt)
- [`at.ducs.relationships.setRelationship`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.relationships.setRelationship/llms.txt)
- [`at.ducs.users.defs`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.users.defs/llms.txt)
- [`at.ducs.users.getProfiles`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.users.getProfiles/llms.txt)
- [`at.ducs.users.getUser`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.users.getUser/llms.txt)
- [`at.ducs.users.updateProfile`](https://lexicon.garden/lexicon/did:plc:c5ljrscuf2xu4oovnafzoqlg/at.ducs.users.updateProfile/llms.txt)
- [`at.functions.metadata`](https://lexicon.garden/lexicon/did:plc:vsnj4aaxyatiht4spdht2q2t/at.functions.metadata/llms.txt)
- [`at.functions.run`](https://lexicon.garden/lexicon/did:plc:vsnj4aaxyatiht4spdht2q2t/at.functions.run/llms.txt)
- [`at.glean.annotation`](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.annotation/llms.txt)
- [`at.glean.like`](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.like/llms.txt)
- [`at.glean.subscription`](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.subscription/llms.txt)
- [`at.inlay.Binding`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Binding/llms.txt)
- [`at.inlay.Fragment`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Fragment/llms.txt)
- [`at.inlay.Loading`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Loading/llms.txt)
- [`at.inlay.Maybe`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Maybe/llms.txt)
- [`at.inlay.Missing`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Missing/llms.txt)
- [`at.inlay.Placeholder`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Placeholder/llms.txt)
- [`at.inlay.ProfileTest`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.ProfileTest/llms.txt)
- [`at.inlay.Record`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Record/llms.txt)
- [`at.inlay.Slot`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Slot/llms.txt)
- [`at.inlay.Throw`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Throw/llms.txt)
- [`at.inlay.authFullPermissions`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.authFullPermissions/llms.txt)
- [`at.inlay.canvas`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.canvas/llms.txt)
- [`at.inlay.component`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.component/llms.txt)
- [`at.inlay.defs`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.defs/llms.txt)
- [`at.inlay.endpoint`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.endpoint/llms.txt)
- [`at.inlay.pack`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.pack/llms.txt)
- [`at.inlay.profile`](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.profile/llms.txt)
- [`at.kotoba.fullPermissions`](https://lexicon.garden/lexicon/did:plc:o5f3cgna5sku4p6iitld6mxs/at.kotoba.fullPermissions/llms.txt)
- [`at.kotoba.lesson.pack`](https://lexicon.garden/lexicon/did:plc:o5f3cgna5sku4p6iitld6mxs/at.kotoba.lesson.pack/llms.txt)
- [`at.kotoba.prefs`](https://lexicon.garden/lexicon/did:plc:o5f3cgna5sku4p6iitld6mxs/at.kotoba.prefs/llms.txt)
- [`at.kotoba.session`](https://lexicon.garden/lexicon/did:plc:o5f3cgna5sku4p6iitld6mxs/at.kotoba.session/llms.txt)
- [`at.kotoba.state`](https://lexicon.garden/lexicon/did:plc:o5f3cgna5sku4p6iitld6mxs/at.kotoba.state/llms.txt)
- [`at.locale.comment`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.comment/llms.txt)
- [`at.locale.keyLocaleSubject`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.keyLocaleSubject/llms.txt)
- [`at.locale.memberRequest`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.memberRequest/llms.txt)
- [`at.locale.membership`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.membership/llms.txt)
- [`at.locale.project`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.project/llms.txt)
- [`at.locale.review`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.review/llms.txt)
- [`at.locale.stringSubject`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.stringSubject/llms.txt)
- [`at.locale.translation`](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.translation/llms.txt)
- [`at.mapped.activity`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.activity/llms.txt)
- [`at.mapped.activityType`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.activityType/llms.txt)
- [`at.mapped.location`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.location/llms.txt)
- [`at.mapped.member`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.member/llms.txt)
- [`at.mapped.post`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.post/llms.txt)
- [`at.mapped.profile`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.profile/llms.txt)
- [`at.mapped.trail`](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.trail/llms.txt)
- [`at.margin.annotation`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.annotation/llms.txt)
- [`at.margin.apikey`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.apikey/llms.txt)
- [`at.margin.authFull`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.authFull/llms.txt)
- [`at.margin.authFullv2`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.authFullv2/llms.txt)
- [`at.margin.bookmark`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.bookmark/llms.txt)
- [`at.margin.collection`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.collection/llms.txt)
- [`at.margin.collectionItem`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.collectionItem/llms.txt)
- [`at.margin.highlight`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.highlight/llms.txt)
- [`at.margin.like`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.like/llms.txt)
- [`at.margin.note`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.note/llms.txt)
- [`at.margin.preferences`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.preferences/llms.txt)
- [`at.margin.profile`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.profile/llms.txt)
- [`at.margin.reply`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.reply/llms.txt)
- [`at.margin.verification`](https://lexicon.garden/lexicon/did:plc:rjqn3agdb74cszhqcpii4sne/at.margin.verification/llms.txt)
- [`at.markpub.facets.baseBlocks`](https://lexicon.garden/lexicon/did:plc:kfxbexqtvw76572grhv2f3on/at.markpub.facets.baseBlocks/llms.txt)
- [`at.markpub.facets.baseFormatting`](https://lexicon.garden/lexicon/did:plc:kfxbexqtvw76572grhv2f3on/at.markpub.facets.baseFormatting/llms.txt)
- [`at.markpub.lens`](https://lexicon.garden/lexicon/did:plc:kfxbexqtvw76572grhv2f3on/at.markpub.lens/llms.txt)
- [`at.markpub.markdown`](https://lexicon.garden/lexicon/did:plc:kfxbexqtvw76572grhv2f3on/at.markpub.markdown/llms.txt)
- [`at.markpub.text`](https://lexicon.garden/lexicon/did:plc:kfxbexqtvw76572grhv2f3on/at.markpub.text/llms.txt)
- [`at.marque.authFull`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.authFull/llms.txt)
- [`at.marque.dns`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.dns/llms.txt)
- [`at.marque.dns.getDsRecords`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.dns.getDsRecords/llms.txt)
- [`at.marque.dns.getRecords`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.dns.getRecords/llms.txt)
- [`at.marque.domain`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.domain/llms.txt)
- [`at.marque.partner.checkAvailability`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.partner.checkAvailability/llms.txt)
- [`at.marque.partner.createCheckout`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.partner.createCheckout/llms.txt)
- [`at.marque.partner.getOrder`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.partner.getOrder/llms.txt)
- [`at.marque.partner.listPricing`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.partner.listPricing/llms.txt)
- [`at.marque.partnerApi`](https://lexicon.garden/lexicon/did:plc:nckosudltxrtrjkt4zz4jy5y/at.marque.partnerApi/llms.txt)
- [`at.noted.link`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.link/llms.txt)
- [`at.noted.place`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.place/llms.txt)
- [`at.noted.post`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.post/llms.txt)
- [`at.noted.radio.host`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.host/llms.txt)
- [`at.noted.radio.play`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.play/llms.txt)
- [`at.noted.radio.program`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.program/llms.txt)
- [`at.noted.radio.show`](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.show/llms.txt)
- [`at.nsid.cobalt.label.createLabel`](https://lexicon.garden/lexicon/did:plc:44ybard66vv44zksje25o7dz/at.nsid.cobalt.label.createLabel/llms.txt)
- [`at.nsid.cobalt.label.defs`](https://lexicon.garden/lexicon/did:plc:44ybard66vv44zksje25o7dz/at.nsid.cobalt.label.defs/llms.txt)
- [`at.nsid.cobalt.label.negateLabel`](https://lexicon.garden/lexicon/did:plc:44ybard66vv44zksje25o7dz/at.nsid.cobalt.label.negateLabel/llms.txt)
- [`at.pasteb.authManagePastes`](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.pasteb.authManagePastes/llms.txt)
- [`at.pasteb.paste`](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.pasteb.paste/llms.txt)
- [`at.pocketfeed.authFullPermissions`](https://lexicon.garden/lexicon/did:plc:auqkaomfip6d6fotzjbutlwe/at.pocketfeed.authFullPermissions/llms.txt)
- [`at.pocketfeed.subscription`](https://lexicon.garden/lexicon/did:plc:auqkaomfip6d6fotzjbutlwe/at.pocketfeed.subscription/llms.txt)
- [`at.podping.records.podping`](https://lexicon.garden/lexicon/did:plc:rxdsh66suionanhzkwtdnldq/at.podping.records.podping/llms.txt)
- [`at.podping.records.startup`](https://lexicon.garden/lexicon/did:plc:rxdsh66suionanhzkwtdnldq/at.podping.records.startup/llms.txt)
- [`at.smiled.reaction`](https://lexicon.garden/lexicon/did:plc:fiogs6gvvfopcsda2aeuwrxj/at.smiled.reaction/llms.txt)
- [`at.unthread.content`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.content/llms.txt)
- [`at.unthread.document`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.document/llms.txt)
- [`at.unthread.document.deleteDraft`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.document.deleteDraft/llms.txt)
- [`at.unthread.document.getDraft`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.document.getDraft/llms.txt)
- [`at.unthread.document.listDrafts`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.document.listDrafts/llms.txt)
- [`at.unthread.document.putDraft`](https://lexicon.garden/lexicon/did:plc:trxedfug5xlbw64ydrkv7cr2/at.unthread.document.putDraft/llms.txt)
- [`at.upvote.getSignals`](https://lexicon.garden/lexicon/did:plc:b2bmihikxhdt6s2luzguhexb/at.upvote.getSignals/llms.txt)
- [`at.upvote.signal`](https://lexicon.garden/lexicon/did:plc:b2bmihikxhdt6s2luzguhexb/at.upvote.signal/llms.txt)
- [`at.upvote.toggleSignal`](https://lexicon.garden/lexicon/did:plc:b2bmihikxhdt6s2luzguhexb/at.upvote.toggleSignal/llms.txt)
- [`at.youandme.connection`](https://lexicon.garden/lexicon/did:plc:zfgfhm7mpslcdc3mk3z6sebw/at.youandme.connection/llms.txt)
- [`beauty.cybernetic.trustcow.review`](https://lexicon.garden/lexicon/did:plc:ah3egzlbahv35s722qydv225/beauty.cybernetic.trustcow.review/llms.txt)
- [`beauty.cybernetic.trustcow.transaction`](https://lexicon.garden/lexicon/did:plc:ah3egzlbahv35s722qydv225/beauty.cybernetic.trustcow.transaction/llms.txt)
- [`beauty.cybernetic.trustcow.warrant`](https://lexicon.garden/lexicon/did:plc:ah3egzlbahv35s722qydv225/beauty.cybernetic.trustcow.warrant/llms.txt)
- [`blog.micro.content`](https://lexicon.garden/lexicon/did:plc:wshwyrtacrpz3ybxv4it5stl/blog.micro.content/llms.txt)
- [`blog.pckt.authFull`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.authFull/llms.txt)
- [`blog.pckt.block.blockquote`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.blockquote/llms.txt)
- [`blog.pckt.block.blueskyEmbed`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.blueskyEmbed/llms.txt)
- [`blog.pckt.block.bulletList`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.bulletList/llms.txt)
- [`blog.pckt.block.codeBlock`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.codeBlock/llms.txt)
- [`blog.pckt.block.gallery`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.gallery/llms.txt)
- [`blog.pckt.block.hardBreak`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.hardBreak/llms.txt)
- [`blog.pckt.block.heading`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.heading/llms.txt)
- [`blog.pckt.block.horizontalRule`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.horizontalRule/llms.txt)
- [`blog.pckt.block.iframe`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.iframe/llms.txt)
- [`blog.pckt.block.image`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.image/llms.txt)
- [`blog.pckt.block.listItem`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.listItem/llms.txt)
- [`blog.pckt.block.mention`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.mention/llms.txt)
- [`blog.pckt.block.noteEmbed`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.noteEmbed/llms.txt)
- [`blog.pckt.block.orderedList`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.orderedList/llms.txt)
- [`blog.pckt.block.table`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.table/llms.txt)
- [`blog.pckt.block.tableCell`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.tableCell/llms.txt)
- [`blog.pckt.block.tableHeader`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.tableHeader/llms.txt)
- [`blog.pckt.block.tableRow`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.tableRow/llms.txt)
- [`blog.pckt.block.taskItem`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.taskItem/llms.txt)
- [`blog.pckt.block.taskList`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.taskList/llms.txt)
- [`blog.pckt.block.text`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.text/llms.txt)
- [`blog.pckt.block.website`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.block.website/llms.txt)
- [`blog.pckt.content`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.content/llms.txt)
- [`blog.pckt.document`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.document/llms.txt)
- [`blog.pckt.domain.getStatus`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.getStatus/llms.txt)
- [`blog.pckt.domain.remove`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.remove/llms.txt)
- [`blog.pckt.domain.set`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.set/llms.txt)
- [`blog.pckt.domain.verify`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.verify/llms.txt)
- [`blog.pckt.gallery`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.gallery/llms.txt)
- [`blog.pckt.mini.post`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.mini.post/llms.txt)
- [`blog.pckt.post`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.post/llms.txt)
- [`blog.pckt.publication`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.publication/llms.txt)
- [`blog.pckt.richtext.facet`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.richtext.facet/llms.txt)
- [`blog.pckt.theme`](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.theme/llms.txt)
- [`blog.skypress.content.gutenberg`](https://lexicon.garden/lexicon/did:plc:sov5kv5byjmdksdjacjiysg3/blog.skypress.content.gutenberg/llms.txt)
- [`blue.2048.defs`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.defs/llms.txt)
- [`blue.2048.game`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.game/llms.txt)
- [`blue.2048.key.defs`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.key.defs/llms.txt)
- [`blue.2048.key.game`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.key.game/llms.txt)
- [`blue.2048.key.player.stats`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.key.player.stats/llms.txt)
- [`blue.2048.player.profile`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.player.profile/llms.txt)
- [`blue.2048.player.stats`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.player.stats/llms.txt)
- [`blue.2048.post`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.post/llms.txt)
- [`blue.2048.profile`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.profile/llms.txt)
- [`blue.2048.verification.defs`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.verification.defs/llms.txt)
- [`blue.2048.verification.game`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.verification.game/llms.txt)
- [`blue.2048.verification.stats`](https://lexicon.garden/lexicon/did:plc:zylhqsjug3f76uqxguhviqka/blue.2048.verification.stats/llms.txt)
- [`blue.atplane.favClient`](https://lexicon.garden/lexicon/did:plc:kmdojn5ujv7mlqu3obxcm5xl/blue.atplane.favClient/llms.txt)
- [`blue.atplay.cartridge`](https://lexicon.garden/lexicon/did:plc:lik422i3z6y2skcik5uo2vrl/blue.atplay.cartridge/llms.txt)
- [`blue.atplay.game.score`](https://lexicon.garden/lexicon/did:plc:lik422i3z6y2skcik5uo2vrl/blue.atplay.game.score/llms.txt)
- [`blue.atplay.score.attestation`](https://lexicon.garden/lexicon/did:plc:lik422i3z6y2skcik5uo2vrl/blue.atplay.score.attestation/llms.txt)
- [`blue.atplay.score.defs`](https://lexicon.garden/lexicon/did:plc:lik422i3z6y2skcik5uo2vrl/blue.atplay.score.defs/llms.txt)
- [`blue.atplay.slot`](https://lexicon.garden/lexicon/did:plc:lik422i3z6y2skcik5uo2vrl/blue.atplay.slot/llms.txt)
- [`blue.atroom.room.layout`](https://lexicon.garden/lexicon/did:plc:lb3nbcc4n3s3wzjtcong6nzu/blue.atroom.room.layout/llms.txt)
- [`blue.atroom.room.object`](https://lexicon.garden/lexicon/did:plc:lb3nbcc4n3s3wzjtcong6nzu/blue.atroom.room.object/llms.txt)
- [`blue.atroom.room.permissionSet`](https://lexicon.garden/lexicon/did:plc:lb3nbcc4n3s3wzjtcong6nzu/blue.atroom.room.permissionSet/llms.txt)
- [`blue.backyard.actor.profile`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.actor.profile/llms.txt)
- [`blue.backyard.feed.comment`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.feed.comment/llms.txt)
- [`blue.backyard.feed.like`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.feed.like/llms.txt)
- [`blue.backyard.feed.post`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.feed.post/llms.txt)
- [`blue.backyard.feed.reblog`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.feed.reblog/llms.txt)
- [`blue.backyard.graph.block`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.graph.block/llms.txt)
- [`blue.backyard.graph.follow`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.graph.follow/llms.txt)
- [`blue.backyard.richtext.facet`](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.richtext.facet/llms.txt)
- [`blue.checkmate.authFullAccess`](https://lexicon.garden/lexicon/did:plc:g2dztq6aggnn3tvimpebanu3/blue.checkmate.authFullAccess/llms.txt)
- [`blue.checkmate.challenge`](https://lexicon.garden/lexicon/did:plc:g2dztq6aggnn3tvimpebanu3/blue.checkmate.challenge/llms.txt)
- [`blue.checkmate.game`](https://lexicon.garden/lexicon/did:plc:g2dztq6aggnn3tvimpebanu3/blue.checkmate.game/llms.txt)
- [`blue.flashes.feed.post`](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.feed.post/llms.txt)
- [`blue.flashes.photo.exif`](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.photo.exif/llms.txt)
- [`blue.flashes.story.post`](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.story.post/llms.txt)
- [`blue.harvester.nomination`](https://lexicon.garden/lexicon/did:plc:i6wibbbkgzlstveksynvjgak/blue.harvester.nomination/llms.txt)
- [`blue.harvester.vote`](https://lexicon.garden/lexicon/did:plc:i6wibbbkgzlstveksynvjgak/blue.harvester.vote/llms.txt)
- [`blue.linkat.board`](https://lexicon.garden/lexicon/did:plc:thpg3rkgfslxsgeekhkxgdyu/blue.linkat.board/llms.txt)
- [`blue.linkat.permissionSet`](https://lexicon.garden/lexicon/did:plc:thpg3rkgfslxsgeekhkxgdyu/blue.linkat.permissionSet/llms.txt)
- [`blue.linkat.permissionSet2`](https://lexicon.garden/lexicon/did:plc:thpg3rkgfslxsgeekhkxgdyu/blue.linkat.permissionSet2/llms.txt)
- [`blue.morgen.access`](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.access/llms.txt)
- [`blue.morgen.feed.save`](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.save/llms.txt)
- [`blue.morgen.feed.share`](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.share/llms.txt)
- [`blue.morgen.feed.subscription`](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.subscription/llms.txt)
- [`blue.morgen.graph.follow`](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.graph.follow/llms.txt)
- [`blue.promoted.defs`](https://lexicon.garden/lexicon/did:plc:wnmw54dcinftinegubnet7lh/blue.promoted.defs/llms.txt)
- [`blue.recipes.actor.defs`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.actor.defs/llms.txt)
- [`blue.recipes.actor.profile`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.actor.profile/llms.txt)
- [`blue.recipes.feed.defs`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.feed.defs/llms.txt)
- [`blue.recipes.feed.getRecipe`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.feed.getRecipe/llms.txt)
- [`blue.recipes.feed.getRecipes`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.feed.getRecipes/llms.txt)
- [`blue.recipes.feed.recipe`](https://lexicon.garden/lexicon/did:plc:2c3tfa27yybwmnv57mbycepd/blue.recipes.feed.recipe/llms.txt)
- [`blue.registry.claim`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.claim/llms.txt)
- [`blue.registry.donation`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.donation/llms.txt)
- [`blue.registry.invite`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.invite/llms.txt)
- [`blue.registry.inviteResponse`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.inviteResponse/llms.txt)
- [`blue.registry.item`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.item/llms.txt)
- [`blue.registry.itemRemoval`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.itemRemoval/llms.txt)
- [`blue.registry.list`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.list/llms.txt)
- [`blue.registry.listItem`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.listItem/llms.txt)
- [`blue.registry.purchase`](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.purchase/llms.txt)
- [`blue.rito.feed.bookmark`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.feed.bookmark/llms.txt)
- [`blue.rito.feed.like`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.feed.like/llms.txt)
- [`blue.rito.label.auto.like`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.label.auto.like/llms.txt)
- [`blue.rito.label.auto.like.settings`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.label.auto.like.settings/llms.txt)
- [`blue.rito.label.auto.post`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.label.auto.post/llms.txt)
- [`blue.rito.label.permissionSet`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.label.permissionSet/llms.txt)
- [`blue.rito.permissionSet`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.permissionSet/llms.txt)
- [`blue.rito.service.getSchema`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.service.getSchema/llms.txt)
- [`blue.rito.service.schema`](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.service.schema/llms.txt)
- [`blue.skytalk.talk.comment`](https://lexicon.garden/lexicon/did:plc:tg7czpgjgkh3teov45ffzlgd/blue.skytalk.talk.comment/llms.txt)
- [`blue.skytalk.talk.permissionSet`](https://lexicon.garden/lexicon/did:plc:tg7czpgjgkh3teov45ffzlgd/blue.skytalk.talk.permissionSet/llms.txt)
- [`blue.skytalk.talk.reaction`](https://lexicon.garden/lexicon/did:plc:tg7czpgjgkh3teov45ffzlgd/blue.skytalk.talk.reaction/llms.txt)
- [`blue.skytalk.talk.thread`](https://lexicon.garden/lexicon/did:plc:tg7czpgjgkh3teov45ffzlgd/blue.skytalk.talk.thread/llms.txt)
- [`blue.topcoat.manicure`](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.manicure/llms.txt)
- [`blue.topcoat.nailPolish`](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.nailPolish/llms.txt)
- [`blue.vec.authBasic`](https://lexicon.garden/lexicon/did:plc:ohvis5rxiiyfg3sbnjkuxytw/blue.vec.authBasic/llms.txt)
- [`blue.vec.embedding`](https://lexicon.garden/lexicon/did:plc:ohvis5rxiiyfg3sbnjkuxytw/blue.vec.embedding/llms.txt)
- [`blue.vec.item`](https://lexicon.garden/lexicon/did:plc:ohvis5rxiiyfg3sbnjkuxytw/blue.vec.item/llms.txt)
- [`bond.biblio.book`](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.book/llms.txt)
- [`bond.biblio.defs`](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.defs/llms.txt)
- [`bond.biblio.list`](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.list/llms.txt)
- [`bond.biblio.stamp`](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.stamp/llms.txt)
- [`build.clovernight.creation.app`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.app/llms.txt)
- [`build.clovernight.creation.feedback`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.feedback/llms.txt)
- [`build.clovernight.creation.remix`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.remix/llms.txt)
- [`build.clovernight.creation.spec`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.spec/llms.txt)
- [`build.clovernight.identity.profile`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.profile/llms.txt)
- [`build.clovernight.identity.verification`](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.verification/llms.txt)
- [`buzz.bookhive.addToList`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.addToList/llms.txt)
- [`buzz.bookhive.auth`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.auth/llms.txt)
- [`buzz.bookhive.book`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.book/llms.txt)
- [`buzz.bookhive.buzz`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.buzz/llms.txt)
- [`buzz.bookhive.catalogBook`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.catalogBook/llms.txt)
- [`buzz.bookhive.createList`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.createList/llms.txt)
- [`buzz.bookhive.defs`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.defs/llms.txt)
- [`buzz.bookhive.deleteList`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.deleteList/llms.txt)
- [`buzz.bookhive.getAuthorBooks`](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.getAuthorBooks/llms.txt)

## Quick Reference

| Endpoint | Method | Description |
|----------|--------|-------------|
| `https://lexicon.garden/llms.txt` | GET | This document |
| `https://lexicon.garden/lexicon/{did}/{nsid}/llms.txt` | GET | Schema documentation |
| `https://lexicon.garden/xrpc/com.atproto.identity.resolveIdentity` | GET | Resolve identity |
| `https://lexicon.garden/xrpc/com.atproto.lexicon.resolveLexicon` | GET | Resolve lexicon |
| `https://lexicon.garden/xrpc/com.atproto.lexicon.validate` | POST | Validate schema/record |
| `https://lexicon.garden/xrpc/garden.lexicon.browse` | GET | Browse lexicons by NSID prefix |
| `https://lexicon.garden/xrpc/garden.lexicon.favorite.create` | POST | Add favorite (auth) |
| `https://lexicon.garden/xrpc/garden.lexicon.favorite.delete` | POST | Remove favorite (auth) |
| `https://lexicon.garden/xrpc/garden.lexicon.favorite.list` | GET | List favorites (auth) |
| `https://lexicon.garden/mcp` | POST | MCP endpoint (JSON-RPC 2.0) |
