[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-airbyte-airbyte-agent":3,"mdc--g3ajsa-key":36,"related-repo-airbyte-airbyte-agent":1444,"related-org-airbyte-airbyte-agent":1453},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":26,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"airbyte-agent","manage Airbyte connectors and workspaces","Drive the `airbyte-agent` CLI to manage Airbyte connectors, workspaces, and organizations. Run list\u002Fget\u002Fsearch\u002Fcreate\u002Fupdate actions against connector data (HubSpot, Salesforce, Slack, GitHub, etc.), install new connectors via the browser credential flow, list and switch workspaces, list organizations, inspect connector metadata, read skill docs, or print the merged CLI + OpenAPI schema for any operation. Use when the user mentions Airbyte, the `airbyte-agent` CLI, connectors, syncs, workspaces, organizations, or asks to read\u002Fwrite data from a connected SaaS product.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"airbyte","Airbyte","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fairbyte.png","airbytehq",[13,17,20,23],{"name":14,"slug":15,"type":16},"Data Engineering","data-engineering","tag",{"name":18,"slug":19,"type":16},"Automation","automation",{"name":21,"slug":22,"type":16},"ETL","etl",{"name":24,"slug":25,"type":16},"Data Pipeline","data-pipeline",0,"https:\u002F\u002Fgithub.com\u002Fairbytehq\u002Fairbyte-agent-cli","2026-07-12T08:27:00.084188",null,[],{"repoUrl":27,"stars":26,"forks":26,"topics":32,"description":33},[],"Airbyte Agent CLI ","https:\u002F\u002Fgithub.com\u002Fairbytehq\u002Fairbyte-agent-cli\u002Ftree\u002FHEAD\u002Fskills\u002Fairbyte-agent","---\nname: airbyte-agent\ndescription: Drive the `airbyte-agent` CLI to manage Airbyte connectors, workspaces, and organizations. Run list\u002Fget\u002Fsearch\u002Fcreate\u002Fupdate actions against connector data (HubSpot, Salesforce, Slack, GitHub, etc.), install new connectors via the browser credential flow, list and switch workspaces, list organizations, inspect connector metadata, read skill docs, or print the merged CLI + OpenAPI schema for any operation. Use when the user mentions Airbyte, the `airbyte-agent` CLI, connectors, syncs, workspaces, organizations, or asks to read\u002Fwrite data from a connected SaaS product.\nmetadata:\n  version: \"v0.1.2\"\n---\n\n# airbyte-agent\n\n> [!NOTE]\n> Requires the `airbyte-agent` CLI on `PATH`. Install via `brew install airbytehq\u002Ftap\u002Fairbyte-agent-cli` or `curl -fsSL https:\u002F\u002Fairbyte.ai\u002Finstall.sh | bash`. See the [project README](https:\u002F\u002Fgithub.com\u002Fairbytehq\u002Fairbyte-agent-cli#install) for other options.\n\nThe CLI is invoked as `airbyte-agent \u003Cresource> \u003Coperation>`. It exposes Airbyte's data plane through a uniform interface — every command takes a JSON payload and returns JSON.\n\n> [!IMPORTANT]\n> **Before running any `airbyte-agent` command, open the matching reference under [`references\u002F`](references\u002F) and read it first.** This top-level file only carries cross-command rules; the per-command syntax, required parameters, response shape, error recovery, and \"do NOT\" guidance live in each `references\u002F\u003Ccommand>.md`. Skipping the reference leads to guessed parameter names, missing required fields, and avoidable round-trips — read it even for commands you think you know.\n\n## Universal rules (apply to every command)\n\n> [!IMPORTANT]\n> **Always pass parameters as `--json '{...}'`.** The CLI also exposes per-parameter flags (`--workspace`, `--name`, etc.) for human use, but agents should always send a single JSON payload. The two modes are mutually exclusive and JSON keeps your input self-describing for review and replay.\n\n- **`workspace` defaults to `\"default\"`** when omitted. The CLI prints a JSON notice on stderr when the fallback engages, then proceeds with the API call. Override per-call with `\"workspace\": \"...\"` in the JSON payload, or set a session-wide default via `workspaces use`.\n- **`--fields` trims the response client-side.** When you know which fields you need, always pass it. List responses are wrapped in `{\"data\": [...]}` and the CLI auto-broadcasts row-level paths: `--fields id,name` is equivalent to `--fields data.id,data.name`. If you mix top-level and row-level paths (e.g. include the cursor), use the explicit dotted form for the row-level fields: `--fields data.id,next`.\n- **Auth errors (exit 2)** mean credentials are missing, invalid, or expired — run `airbyte-agent login` to refresh, then retry.\n- **`@filename` loads JSON from a file** — useful when the payload is large or you want to keep the shell command short: `--json @params.json`.\n- **Never accept credentials in chat.** Two browser flows handle every credential entry path: `airbyte-agent login` (CLI account credentials) and `connectors create` (per-connector secrets). If a user offers credentials in conversation, decline and start the appropriate flow.\n\n## Connector rules (apply to every connector workflow)\n\n> [!IMPORTANT]\n> **Always inspect and read skill docs before the first `execute`** on an unfamiliar connector. Run `connectors inspect`, then pass the returned `docs_skill_id` to `skills docs` for the outline and exact section you need. Entity names, actions, and params are connector-specific — guessing wastes API calls. Open [`references\u002Fconnectors-inspect.md`](references\u002Fconnectors-inspect.md) and [`references\u002Fskills-docs.md`](references\u002Fskills-docs.md) when starting work on a new connector.\n\n- **On `connectors execute`, field selection is MANDATORY.** Every call must include `select_fields` (allowlist) or `exclude_fields` (blocklist) inside the JSON payload, in addition to any `--fields` you pass.\n- **Prefer `context_store_search` over `list` for reads.** Search supports rich filters, sorting, and pagination; `list` is the live source — use it only when the search index might lag (today's data) or when search returns empty.\n- **Connector name resolution.** Most commands accept `name` (case-insensitive match against connector instance name, template display name, or template slug) OR `id` (UUID). Pass `id` when two connectors share a name.\n- **Legacy describe.** `connectors describe` remains for compatibility only. Use `connectors inspect` plus `skills docs` for new workflows.\n\n## Command index — read the matching reference before running\n\nEach row points to the per-command playbook with usage, workflows, error recovery, and \"do NOT\" guidance. **Open the reference first, then compose the command.** If the user's task spans multiple commands (e.g. discover workspace → inspect connector → read docs → execute), read each reference as you reach that step.\n\n| User wants to… | Reference |\n|---|---|\n| Run an action (list\u002Fget\u002Fsearch\u002Fcreate\u002Fupdate) against connector data — **the workhorse** | [`references\u002Fconnectors-execute.md`](references\u002Fconnectors-execute.md) |\n| Inspect connector metadata, readiness, warnings, and `docs_skill_id` | [`references\u002Fconnectors-inspect.md`](references\u002Fconnectors-inspect.md) |\n| List available connector and static skill docs | [`references\u002Fskills-list.md`](references\u002Fskills-list.md) |\n| Search skill docs by task or connector | [`references\u002Fskills-search.md`](references\u002Fskills-search.md) |\n| Read usage docs by `docs_skill_id` and exact section | [`references\u002Fskills-docs.md`](references\u002Fskills-docs.md) |\n| Use the legacy connector schema describe command | [`references\u002Fconnectors-describe.md`](references\u002Fconnectors-describe.md) |\n| Install a new connector via the browser credential flow | [`references\u002Fconnectors-create.md`](references\u002Fconnectors-create.md) |\n| Re-enter or fix credentials for an existing connector via the browser | [`references\u002Fconnectors-update.md`](references\u002Fconnectors-update.md) |\n| Delete a connector (destructive — confirm first) | [`references\u002Fconnectors-delete.md`](references\u002Fconnectors-delete.md) |\n| List connectors configured in a workspace | [`references\u002Fconnectors-list.md`](references\u002Fconnectors-list.md) |\n| List connector templates available to install | [`references\u002Fconnectors-list-available.md`](references\u002Fconnectors-list-available.md) |\n| List workspaces (usually the first command in a session) | [`references\u002Fworkspaces-list.md`](references\u002Fworkspaces-list.md) |\n| Set the default workspace in `~\u002F.airbyte-agent\u002Fsettings.json` | [`references\u002Fworkspaces-use.md`](references\u002Fworkspaces-use.md) |\n| List organizations the authenticated user belongs to | [`references\u002Forganizations-list.md`](references\u002Forganizations-list.md) |\n| Set the default organization in `~\u002F.airbyte-agent\u002Fsettings.json` | [`references\u002Forganizations-use.md`](references\u002Forganizations-use.md) |\n| Print the merged CLI + OpenAPI schema for any operation | [`references\u002Fschema.md`](references\u002Fschema.md) |\n\n## Typical session shape\n\n```bash\n# 1. Discover the environment\nairbyte-agent workspaces list\nairbyte-agent connectors list --json '{\"workspace\": \"\u003Cname>\"}'\n\n# 2. Learn the connector\nairbyte-agent connectors inspect --json '{\"workspace\": \"\u003Cname>\", \"name\": \"\u003Cconnector>\"}'\nairbyte-agent skills docs --json '{\"id\": \"\u003Cdocs_skill_id from inspect>\"}' --fields data.markdown\nairbyte-agent skills docs --json '{\"id\": \"\u003Cdocs_skill_id from inspect>\", \"section\": \"\u003Cexact-section-id>\"}' --fields data.markdown\n\n# 3. Read data\nairbyte-agent connectors execute --json '{\n  \"workspace\": \"\u003Cname>\",\n  \"name\": \"\u003Cconnector>\",\n  \"entity\": \"\u003Cfrom-skills-docs>\",\n  \"action\": \"context_store_search\",\n  \"select_fields\": [\"...\"],\n  \"params\": {\"limit\": 20, \"query\": {\"filter\": {...}}}\n}'\n```\n\n## Exit codes\n\n| Code | Meaning |\n|---|---|\n| `0` | Success |\n| `1` | General error |\n| `2` | Authentication error → run `airbyte-agent login` |\n| `3` | Not found (workspace, connector, template, entity…) |\n| `4` | Validation error (bad params, ambiguous name, missing confirmation) |\n",{"data":37,"body":40},{"name":4,"description":6,"metadata":38},{"version":39},"v0.1.2",{"type":41,"children":42},"root",[43,50,109,122,167,174,215,370,376,445,587,593,605,979,985,1320,1326,1438],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":4},"text",{"type":44,"tag":51,"props":52,"children":53},"blockquote",{},[54],{"type":44,"tag":55,"props":56,"children":57},"p",{},[58,64,66,72,74,80,82,88,90,96,98,107],{"type":44,"tag":59,"props":60,"children":61},"span",{},[62],{"type":49,"value":63},"!NOTE",{"type":49,"value":65},"\nRequires the ",{"type":44,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":49,"value":4},{"type":49,"value":73}," CLI on ",{"type":44,"tag":67,"props":75,"children":77},{"className":76},[],[78],{"type":49,"value":79},"PATH",{"type":49,"value":81},". Install via ",{"type":44,"tag":67,"props":83,"children":85},{"className":84},[],[86],{"type":49,"value":87},"brew install airbytehq\u002Ftap\u002Fairbyte-agent-cli",{"type":49,"value":89}," or ",{"type":44,"tag":67,"props":91,"children":93},{"className":92},[],[94],{"type":49,"value":95},"curl -fsSL https:\u002F\u002Fairbyte.ai\u002Finstall.sh | bash",{"type":49,"value":97},". See the ",{"type":44,"tag":99,"props":100,"children":104},"a",{"href":101,"rel":102},"https:\u002F\u002Fgithub.com\u002Fairbytehq\u002Fairbyte-agent-cli#install",[103],"nofollow",[105],{"type":49,"value":106},"project README",{"type":49,"value":108}," for other options.",{"type":44,"tag":55,"props":110,"children":111},{},[112,114,120],{"type":49,"value":113},"The CLI is invoked as ",{"type":44,"tag":67,"props":115,"children":117},{"className":116},[],[118],{"type":49,"value":119},"airbyte-agent \u003Cresource> \u003Coperation>",{"type":49,"value":121},". It exposes Airbyte's data plane through a uniform interface — every command takes a JSON payload and returns JSON.",{"type":44,"tag":51,"props":123,"children":124},{},[125],{"type":44,"tag":55,"props":126,"children":127},{},[128,133,157,159,165],{"type":44,"tag":59,"props":129,"children":130},{},[131],{"type":49,"value":132},"!IMPORTANT",{"type":44,"tag":134,"props":135,"children":136},"strong",{},[137,139,144,146,155],{"type":49,"value":138},"Before running any ",{"type":44,"tag":67,"props":140,"children":142},{"className":141},[],[143],{"type":49,"value":4},{"type":49,"value":145}," command, open the matching reference under ",{"type":44,"tag":99,"props":147,"children":149},{"href":148},"references\u002F",[150],{"type":44,"tag":67,"props":151,"children":153},{"className":152},[],[154],{"type":49,"value":148},{"type":49,"value":156}," and read it first.",{"type":49,"value":158}," This top-level file only carries cross-command rules; the per-command syntax, required parameters, response shape, error recovery, and \"do NOT\" guidance live in each ",{"type":44,"tag":67,"props":160,"children":162},{"className":161},[],[163],{"type":49,"value":164},"references\u002F\u003Ccommand>.md",{"type":49,"value":166},". Skipping the reference leads to guessed parameter names, missing required fields, and avoidable round-trips — read it even for commands you think you know.",{"type":44,"tag":168,"props":169,"children":171},"h2",{"id":170},"universal-rules-apply-to-every-command",[172],{"type":49,"value":173},"Universal rules (apply to every command)",{"type":44,"tag":51,"props":175,"children":176},{},[177],{"type":44,"tag":55,"props":178,"children":179},{},[180,184,197,199,205,207,213],{"type":44,"tag":59,"props":181,"children":182},{},[183],{"type":49,"value":132},{"type":44,"tag":134,"props":185,"children":186},{},[187,189,195],{"type":49,"value":188},"Always pass parameters as ",{"type":44,"tag":67,"props":190,"children":192},{"className":191},[],[193],{"type":49,"value":194},"--json '{...}'",{"type":49,"value":196},".",{"type":49,"value":198}," The CLI also exposes per-parameter flags (",{"type":44,"tag":67,"props":200,"children":202},{"className":201},[],[203],{"type":49,"value":204},"--workspace",{"type":49,"value":206},", ",{"type":44,"tag":67,"props":208,"children":210},{"className":209},[],[211],{"type":49,"value":212},"--name",{"type":49,"value":214},", etc.) for human use, but agents should always send a single JSON payload. The two modes are mutually exclusive and JSON keeps your input self-describing for review and replay.",{"type":44,"tag":216,"props":217,"children":218},"ul",{},[219,257,304,322,345],{"type":44,"tag":220,"props":221,"children":222},"li",{},[223,240,242,248,250,256],{"type":44,"tag":134,"props":224,"children":225},{},[226,232,234],{"type":44,"tag":67,"props":227,"children":229},{"className":228},[],[230],{"type":49,"value":231},"workspace",{"type":49,"value":233}," defaults to ",{"type":44,"tag":67,"props":235,"children":237},{"className":236},[],[238],{"type":49,"value":239},"\"default\"",{"type":49,"value":241}," when omitted. The CLI prints a JSON notice on stderr when the fallback engages, then proceeds with the API call. Override per-call with ",{"type":44,"tag":67,"props":243,"children":245},{"className":244},[],[246],{"type":49,"value":247},"\"workspace\": \"...\"",{"type":49,"value":249}," in the JSON payload, or set a session-wide default via ",{"type":44,"tag":67,"props":251,"children":253},{"className":252},[],[254],{"type":49,"value":255},"workspaces use",{"type":49,"value":196},{"type":44,"tag":220,"props":258,"children":259},{},[260,271,273,279,281,287,289,295,297,303],{"type":44,"tag":134,"props":261,"children":262},{},[263,269],{"type":44,"tag":67,"props":264,"children":266},{"className":265},[],[267],{"type":49,"value":268},"--fields",{"type":49,"value":270}," trims the response client-side.",{"type":49,"value":272}," When you know which fields you need, always pass it. List responses are wrapped in ",{"type":44,"tag":67,"props":274,"children":276},{"className":275},[],[277],{"type":49,"value":278},"{\"data\": [...]}",{"type":49,"value":280}," and the CLI auto-broadcasts row-level paths: ",{"type":44,"tag":67,"props":282,"children":284},{"className":283},[],[285],{"type":49,"value":286},"--fields id,name",{"type":49,"value":288}," is equivalent to ",{"type":44,"tag":67,"props":290,"children":292},{"className":291},[],[293],{"type":49,"value":294},"--fields data.id,data.name",{"type":49,"value":296},". If you mix top-level and row-level paths (e.g. include the cursor), use the explicit dotted form for the row-level fields: ",{"type":44,"tag":67,"props":298,"children":300},{"className":299},[],[301],{"type":49,"value":302},"--fields data.id,next",{"type":49,"value":196},{"type":44,"tag":220,"props":305,"children":306},{},[307,312,314,320],{"type":44,"tag":134,"props":308,"children":309},{},[310],{"type":49,"value":311},"Auth errors (exit 2)",{"type":49,"value":313}," mean credentials are missing, invalid, or expired — run ",{"type":44,"tag":67,"props":315,"children":317},{"className":316},[],[318],{"type":49,"value":319},"airbyte-agent login",{"type":49,"value":321}," to refresh, then retry.",{"type":44,"tag":220,"props":323,"children":324},{},[325,336,338,344],{"type":44,"tag":134,"props":326,"children":327},{},[328,334],{"type":44,"tag":67,"props":329,"children":331},{"className":330},[],[332],{"type":49,"value":333},"@filename",{"type":49,"value":335}," loads JSON from a file",{"type":49,"value":337}," — useful when the payload is large or you want to keep the shell command short: ",{"type":44,"tag":67,"props":339,"children":341},{"className":340},[],[342],{"type":49,"value":343},"--json @params.json",{"type":49,"value":196},{"type":44,"tag":220,"props":346,"children":347},{},[348,353,355,360,362,368],{"type":44,"tag":134,"props":349,"children":350},{},[351],{"type":49,"value":352},"Never accept credentials in chat.",{"type":49,"value":354}," Two browser flows handle every credential entry path: ",{"type":44,"tag":67,"props":356,"children":358},{"className":357},[],[359],{"type":49,"value":319},{"type":49,"value":361}," (CLI account credentials) and ",{"type":44,"tag":67,"props":363,"children":365},{"className":364},[],[366],{"type":49,"value":367},"connectors create",{"type":49,"value":369}," (per-connector secrets). If a user offers credentials in conversation, decline and start the appropriate flow.",{"type":44,"tag":168,"props":371,"children":373},{"id":372},"connector-rules-apply-to-every-connector-workflow",[374],{"type":49,"value":375},"Connector rules (apply to every connector workflow)",{"type":44,"tag":51,"props":377,"children":378},{},[379],{"type":44,"tag":55,"props":380,"children":381},{},[382,386,397,399,405,407,413,415,421,423,432,434,443],{"type":44,"tag":59,"props":383,"children":384},{},[385],{"type":49,"value":132},{"type":44,"tag":134,"props":387,"children":388},{},[389,391],{"type":49,"value":390},"Always inspect and read skill docs before the first ",{"type":44,"tag":67,"props":392,"children":394},{"className":393},[],[395],{"type":49,"value":396},"execute",{"type":49,"value":398}," on an unfamiliar connector. Run ",{"type":44,"tag":67,"props":400,"children":402},{"className":401},[],[403],{"type":49,"value":404},"connectors inspect",{"type":49,"value":406},", then pass the returned ",{"type":44,"tag":67,"props":408,"children":410},{"className":409},[],[411],{"type":49,"value":412},"docs_skill_id",{"type":49,"value":414}," to ",{"type":44,"tag":67,"props":416,"children":418},{"className":417},[],[419],{"type":49,"value":420},"skills docs",{"type":49,"value":422}," for the outline and exact section you need. Entity names, actions, and params are connector-specific — guessing wastes API calls. Open ",{"type":44,"tag":99,"props":424,"children":426},{"href":425},"references\u002Fconnectors-inspect.md",[427],{"type":44,"tag":67,"props":428,"children":430},{"className":429},[],[431],{"type":49,"value":425},{"type":49,"value":433}," and ",{"type":44,"tag":99,"props":435,"children":437},{"href":436},"references\u002Fskills-docs.md",[438],{"type":44,"tag":67,"props":439,"children":441},{"className":440},[],[442],{"type":49,"value":436},{"type":49,"value":444}," when starting work on a new connector.",{"type":44,"tag":216,"props":446,"children":447},{},[448,489,522,555],{"type":44,"tag":220,"props":449,"children":450},{},[451,464,466,472,474,480,482,487],{"type":44,"tag":134,"props":452,"children":453},{},[454,456,462],{"type":49,"value":455},"On ",{"type":44,"tag":67,"props":457,"children":459},{"className":458},[],[460],{"type":49,"value":461},"connectors execute",{"type":49,"value":463},", field selection is MANDATORY.",{"type":49,"value":465}," Every call must include ",{"type":44,"tag":67,"props":467,"children":469},{"className":468},[],[470],{"type":49,"value":471},"select_fields",{"type":49,"value":473}," (allowlist) or ",{"type":44,"tag":67,"props":475,"children":477},{"className":476},[],[478],{"type":49,"value":479},"exclude_fields",{"type":49,"value":481}," (blocklist) inside the JSON payload, in addition to any ",{"type":44,"tag":67,"props":483,"children":485},{"className":484},[],[486],{"type":49,"value":268},{"type":49,"value":488}," you pass.",{"type":44,"tag":220,"props":490,"children":491},{},[492,513,515,520],{"type":44,"tag":134,"props":493,"children":494},{},[495,497,503,505,511],{"type":49,"value":496},"Prefer ",{"type":44,"tag":67,"props":498,"children":500},{"className":499},[],[501],{"type":49,"value":502},"context_store_search",{"type":49,"value":504}," over ",{"type":44,"tag":67,"props":506,"children":508},{"className":507},[],[509],{"type":49,"value":510},"list",{"type":49,"value":512}," for reads.",{"type":49,"value":514}," Search supports rich filters, sorting, and pagination; ",{"type":44,"tag":67,"props":516,"children":518},{"className":517},[],[519],{"type":49,"value":510},{"type":49,"value":521}," is the live source — use it only when the search index might lag (today's data) or when search returns empty.",{"type":44,"tag":220,"props":523,"children":524},{},[525,530,532,538,540,546,548,553],{"type":44,"tag":134,"props":526,"children":527},{},[528],{"type":49,"value":529},"Connector name resolution.",{"type":49,"value":531}," Most commands accept ",{"type":44,"tag":67,"props":533,"children":535},{"className":534},[],[536],{"type":49,"value":537},"name",{"type":49,"value":539}," (case-insensitive match against connector instance name, template display name, or template slug) OR ",{"type":44,"tag":67,"props":541,"children":543},{"className":542},[],[544],{"type":49,"value":545},"id",{"type":49,"value":547}," (UUID). Pass ",{"type":44,"tag":67,"props":549,"children":551},{"className":550},[],[552],{"type":49,"value":545},{"type":49,"value":554}," when two connectors share a name.",{"type":44,"tag":220,"props":556,"children":557},{},[558,563,565,571,573,578,580,585],{"type":44,"tag":134,"props":559,"children":560},{},[561],{"type":49,"value":562},"Legacy describe.",{"type":49,"value":564}," ",{"type":44,"tag":67,"props":566,"children":568},{"className":567},[],[569],{"type":49,"value":570},"connectors describe",{"type":49,"value":572}," remains for compatibility only. Use ",{"type":44,"tag":67,"props":574,"children":576},{"className":575},[],[577],{"type":49,"value":404},{"type":49,"value":579}," plus ",{"type":44,"tag":67,"props":581,"children":583},{"className":582},[],[584],{"type":49,"value":420},{"type":49,"value":586}," for new workflows.",{"type":44,"tag":168,"props":588,"children":590},{"id":589},"command-index-read-the-matching-reference-before-running",[591],{"type":49,"value":592},"Command index — read the matching reference before running",{"type":44,"tag":55,"props":594,"children":595},{},[596,598,603],{"type":49,"value":597},"Each row points to the per-command playbook with usage, workflows, error recovery, and \"do NOT\" guidance. ",{"type":44,"tag":134,"props":599,"children":600},{},[601],{"type":49,"value":602},"Open the reference first, then compose the command.",{"type":49,"value":604}," If the user's task spans multiple commands (e.g. discover workspace → inspect connector → read docs → execute), read each reference as you reach that step.",{"type":44,"tag":606,"props":607,"children":608},"table",{},[609,628],{"type":44,"tag":610,"props":611,"children":612},"thead",{},[613],{"type":44,"tag":614,"props":615,"children":616},"tr",{},[617,623],{"type":44,"tag":618,"props":619,"children":620},"th",{},[621],{"type":49,"value":622},"User wants to…",{"type":44,"tag":618,"props":624,"children":625},{},[626],{"type":49,"value":627},"Reference",{"type":44,"tag":629,"props":630,"children":631},"tbody",{},[632,658,682,702,722,748,768,788,808,828,848,868,888,914,934,959],{"type":44,"tag":614,"props":633,"children":634},{},[635,646],{"type":44,"tag":636,"props":637,"children":638},"td",{},[639,641],{"type":49,"value":640},"Run an action (list\u002Fget\u002Fsearch\u002Fcreate\u002Fupdate) against connector data — ",{"type":44,"tag":134,"props":642,"children":643},{},[644],{"type":49,"value":645},"the workhorse",{"type":44,"tag":636,"props":647,"children":648},{},[649],{"type":44,"tag":99,"props":650,"children":652},{"href":651},"references\u002Fconnectors-execute.md",[653],{"type":44,"tag":67,"props":654,"children":656},{"className":655},[],[657],{"type":49,"value":651},{"type":44,"tag":614,"props":659,"children":660},{},[661,671],{"type":44,"tag":636,"props":662,"children":663},{},[664,666],{"type":49,"value":665},"Inspect connector metadata, readiness, warnings, and ",{"type":44,"tag":67,"props":667,"children":669},{"className":668},[],[670],{"type":49,"value":412},{"type":44,"tag":636,"props":672,"children":673},{},[674],{"type":44,"tag":99,"props":675,"children":676},{"href":425},[677],{"type":44,"tag":67,"props":678,"children":680},{"className":679},[],[681],{"type":49,"value":425},{"type":44,"tag":614,"props":683,"children":684},{},[685,690],{"type":44,"tag":636,"props":686,"children":687},{},[688],{"type":49,"value":689},"List available connector and static skill docs",{"type":44,"tag":636,"props":691,"children":692},{},[693],{"type":44,"tag":99,"props":694,"children":696},{"href":695},"references\u002Fskills-list.md",[697],{"type":44,"tag":67,"props":698,"children":700},{"className":699},[],[701],{"type":49,"value":695},{"type":44,"tag":614,"props":703,"children":704},{},[705,710],{"type":44,"tag":636,"props":706,"children":707},{},[708],{"type":49,"value":709},"Search skill docs by task or connector",{"type":44,"tag":636,"props":711,"children":712},{},[713],{"type":44,"tag":99,"props":714,"children":716},{"href":715},"references\u002Fskills-search.md",[717],{"type":44,"tag":67,"props":718,"children":720},{"className":719},[],[721],{"type":49,"value":715},{"type":44,"tag":614,"props":723,"children":724},{},[725,737],{"type":44,"tag":636,"props":726,"children":727},{},[728,730,735],{"type":49,"value":729},"Read usage docs by ",{"type":44,"tag":67,"props":731,"children":733},{"className":732},[],[734],{"type":49,"value":412},{"type":49,"value":736}," and exact section",{"type":44,"tag":636,"props":738,"children":739},{},[740],{"type":44,"tag":99,"props":741,"children":742},{"href":436},[743],{"type":44,"tag":67,"props":744,"children":746},{"className":745},[],[747],{"type":49,"value":436},{"type":44,"tag":614,"props":749,"children":750},{},[751,756],{"type":44,"tag":636,"props":752,"children":753},{},[754],{"type":49,"value":755},"Use the legacy connector schema describe command",{"type":44,"tag":636,"props":757,"children":758},{},[759],{"type":44,"tag":99,"props":760,"children":762},{"href":761},"references\u002Fconnectors-describe.md",[763],{"type":44,"tag":67,"props":764,"children":766},{"className":765},[],[767],{"type":49,"value":761},{"type":44,"tag":614,"props":769,"children":770},{},[771,776],{"type":44,"tag":636,"props":772,"children":773},{},[774],{"type":49,"value":775},"Install a new connector via the browser credential flow",{"type":44,"tag":636,"props":777,"children":778},{},[779],{"type":44,"tag":99,"props":780,"children":782},{"href":781},"references\u002Fconnectors-create.md",[783],{"type":44,"tag":67,"props":784,"children":786},{"className":785},[],[787],{"type":49,"value":781},{"type":44,"tag":614,"props":789,"children":790},{},[791,796],{"type":44,"tag":636,"props":792,"children":793},{},[794],{"type":49,"value":795},"Re-enter or fix credentials for an existing connector via the browser",{"type":44,"tag":636,"props":797,"children":798},{},[799],{"type":44,"tag":99,"props":800,"children":802},{"href":801},"references\u002Fconnectors-update.md",[803],{"type":44,"tag":67,"props":804,"children":806},{"className":805},[],[807],{"type":49,"value":801},{"type":44,"tag":614,"props":809,"children":810},{},[811,816],{"type":44,"tag":636,"props":812,"children":813},{},[814],{"type":49,"value":815},"Delete a connector (destructive — confirm first)",{"type":44,"tag":636,"props":817,"children":818},{},[819],{"type":44,"tag":99,"props":820,"children":822},{"href":821},"references\u002Fconnectors-delete.md",[823],{"type":44,"tag":67,"props":824,"children":826},{"className":825},[],[827],{"type":49,"value":821},{"type":44,"tag":614,"props":829,"children":830},{},[831,836],{"type":44,"tag":636,"props":832,"children":833},{},[834],{"type":49,"value":835},"List connectors configured in a workspace",{"type":44,"tag":636,"props":837,"children":838},{},[839],{"type":44,"tag":99,"props":840,"children":842},{"href":841},"references\u002Fconnectors-list.md",[843],{"type":44,"tag":67,"props":844,"children":846},{"className":845},[],[847],{"type":49,"value":841},{"type":44,"tag":614,"props":849,"children":850},{},[851,856],{"type":44,"tag":636,"props":852,"children":853},{},[854],{"type":49,"value":855},"List connector templates available to install",{"type":44,"tag":636,"props":857,"children":858},{},[859],{"type":44,"tag":99,"props":860,"children":862},{"href":861},"references\u002Fconnectors-list-available.md",[863],{"type":44,"tag":67,"props":864,"children":866},{"className":865},[],[867],{"type":49,"value":861},{"type":44,"tag":614,"props":869,"children":870},{},[871,876],{"type":44,"tag":636,"props":872,"children":873},{},[874],{"type":49,"value":875},"List workspaces (usually the first command in a session)",{"type":44,"tag":636,"props":877,"children":878},{},[879],{"type":44,"tag":99,"props":880,"children":882},{"href":881},"references\u002Fworkspaces-list.md",[883],{"type":44,"tag":67,"props":884,"children":886},{"className":885},[],[887],{"type":49,"value":881},{"type":44,"tag":614,"props":889,"children":890},{},[891,902],{"type":44,"tag":636,"props":892,"children":893},{},[894,896],{"type":49,"value":895},"Set the default workspace in ",{"type":44,"tag":67,"props":897,"children":899},{"className":898},[],[900],{"type":49,"value":901},"~\u002F.airbyte-agent\u002Fsettings.json",{"type":44,"tag":636,"props":903,"children":904},{},[905],{"type":44,"tag":99,"props":906,"children":908},{"href":907},"references\u002Fworkspaces-use.md",[909],{"type":44,"tag":67,"props":910,"children":912},{"className":911},[],[913],{"type":49,"value":907},{"type":44,"tag":614,"props":915,"children":916},{},[917,922],{"type":44,"tag":636,"props":918,"children":919},{},[920],{"type":49,"value":921},"List organizations the authenticated user belongs to",{"type":44,"tag":636,"props":923,"children":924},{},[925],{"type":44,"tag":99,"props":926,"children":928},{"href":927},"references\u002Forganizations-list.md",[929],{"type":44,"tag":67,"props":930,"children":932},{"className":931},[],[933],{"type":49,"value":927},{"type":44,"tag":614,"props":935,"children":936},{},[937,947],{"type":44,"tag":636,"props":938,"children":939},{},[940,942],{"type":49,"value":941},"Set the default organization in ",{"type":44,"tag":67,"props":943,"children":945},{"className":944},[],[946],{"type":49,"value":901},{"type":44,"tag":636,"props":948,"children":949},{},[950],{"type":44,"tag":99,"props":951,"children":953},{"href":952},"references\u002Forganizations-use.md",[954],{"type":44,"tag":67,"props":955,"children":957},{"className":956},[],[958],{"type":49,"value":952},{"type":44,"tag":614,"props":960,"children":961},{},[962,967],{"type":44,"tag":636,"props":963,"children":964},{},[965],{"type":49,"value":966},"Print the merged CLI + OpenAPI schema for any operation",{"type":44,"tag":636,"props":968,"children":969},{},[970],{"type":44,"tag":99,"props":971,"children":973},{"href":972},"references\u002Fschema.md",[974],{"type":44,"tag":67,"props":975,"children":977},{"className":976},[],[978],{"type":49,"value":972},{"type":44,"tag":168,"props":980,"children":982},{"id":981},"typical-session-shape",[983],{"type":49,"value":984},"Typical session shape",{"type":44,"tag":986,"props":987,"children":992},"pre",{"className":988,"code":989,"language":990,"meta":991,"style":991},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# 1. Discover the environment\nairbyte-agent workspaces list\nairbyte-agent connectors list --json '{\"workspace\": \"\u003Cname>\"}'\n\n# 2. Learn the connector\nairbyte-agent connectors inspect --json '{\"workspace\": \"\u003Cname>\", \"name\": \"\u003Cconnector>\"}'\nairbyte-agent skills docs --json '{\"id\": \"\u003Cdocs_skill_id from inspect>\"}' --fields data.markdown\nairbyte-agent skills docs --json '{\"id\": \"\u003Cdocs_skill_id from inspect>\", \"section\": \"\u003Cexact-section-id>\"}' --fields data.markdown\n\n# 3. Read data\nairbyte-agent connectors execute --json '{\n  \"workspace\": \"\u003Cname>\",\n  \"name\": \"\u003Cconnector>\",\n  \"entity\": \"\u003Cfrom-skills-docs>\",\n  \"action\": \"context_store_search\",\n  \"select_fields\": [\"...\"],\n  \"params\": {\"limit\": 20, \"query\": {\"filter\": {...}}}\n}'\n","bash","",[993],{"type":44,"tag":67,"props":994,"children":995},{"__ignoreMap":991},[996,1007,1027,1066,1076,1085,1119,1165,1206,1214,1223,1253,1262,1271,1280,1289,1298,1307],{"type":44,"tag":59,"props":997,"children":1000},{"class":998,"line":999},"line",1,[1001],{"type":44,"tag":59,"props":1002,"children":1004},{"style":1003},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1005],{"type":49,"value":1006},"# 1. Discover the environment\n",{"type":44,"tag":59,"props":1008,"children":1010},{"class":998,"line":1009},2,[1011,1016,1022],{"type":44,"tag":59,"props":1012,"children":1014},{"style":1013},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1015],{"type":49,"value":4},{"type":44,"tag":59,"props":1017,"children":1019},{"style":1018},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1020],{"type":49,"value":1021}," workspaces",{"type":44,"tag":59,"props":1023,"children":1024},{"style":1018},[1025],{"type":49,"value":1026}," list\n",{"type":44,"tag":59,"props":1028,"children":1030},{"class":998,"line":1029},3,[1031,1035,1040,1045,1050,1056,1061],{"type":44,"tag":59,"props":1032,"children":1033},{"style":1013},[1034],{"type":49,"value":4},{"type":44,"tag":59,"props":1036,"children":1037},{"style":1018},[1038],{"type":49,"value":1039}," connectors",{"type":44,"tag":59,"props":1041,"children":1042},{"style":1018},[1043],{"type":49,"value":1044}," list",{"type":44,"tag":59,"props":1046,"children":1047},{"style":1018},[1048],{"type":49,"value":1049}," --json",{"type":44,"tag":59,"props":1051,"children":1053},{"style":1052},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1054],{"type":49,"value":1055}," '",{"type":44,"tag":59,"props":1057,"children":1058},{"style":1018},[1059],{"type":49,"value":1060},"{\"workspace\": \"\u003Cname>\"}",{"type":44,"tag":59,"props":1062,"children":1063},{"style":1052},[1064],{"type":49,"value":1065},"'\n",{"type":44,"tag":59,"props":1067,"children":1069},{"class":998,"line":1068},4,[1070],{"type":44,"tag":59,"props":1071,"children":1073},{"emptyLinePlaceholder":1072},true,[1074],{"type":49,"value":1075},"\n",{"type":44,"tag":59,"props":1077,"children":1079},{"class":998,"line":1078},5,[1080],{"type":44,"tag":59,"props":1081,"children":1082},{"style":1003},[1083],{"type":49,"value":1084},"# 2. Learn the connector\n",{"type":44,"tag":59,"props":1086,"children":1088},{"class":998,"line":1087},6,[1089,1093,1097,1102,1106,1110,1115],{"type":44,"tag":59,"props":1090,"children":1091},{"style":1013},[1092],{"type":49,"value":4},{"type":44,"tag":59,"props":1094,"children":1095},{"style":1018},[1096],{"type":49,"value":1039},{"type":44,"tag":59,"props":1098,"children":1099},{"style":1018},[1100],{"type":49,"value":1101}," inspect",{"type":44,"tag":59,"props":1103,"children":1104},{"style":1018},[1105],{"type":49,"value":1049},{"type":44,"tag":59,"props":1107,"children":1108},{"style":1052},[1109],{"type":49,"value":1055},{"type":44,"tag":59,"props":1111,"children":1112},{"style":1018},[1113],{"type":49,"value":1114},"{\"workspace\": \"\u003Cname>\", \"name\": \"\u003Cconnector>\"}",{"type":44,"tag":59,"props":1116,"children":1117},{"style":1052},[1118],{"type":49,"value":1065},{"type":44,"tag":59,"props":1120,"children":1122},{"class":998,"line":1121},7,[1123,1127,1132,1137,1141,1145,1150,1155,1160],{"type":44,"tag":59,"props":1124,"children":1125},{"style":1013},[1126],{"type":49,"value":4},{"type":44,"tag":59,"props":1128,"children":1129},{"style":1018},[1130],{"type":49,"value":1131}," skills",{"type":44,"tag":59,"props":1133,"children":1134},{"style":1018},[1135],{"type":49,"value":1136}," docs",{"type":44,"tag":59,"props":1138,"children":1139},{"style":1018},[1140],{"type":49,"value":1049},{"type":44,"tag":59,"props":1142,"children":1143},{"style":1052},[1144],{"type":49,"value":1055},{"type":44,"tag":59,"props":1146,"children":1147},{"style":1018},[1148],{"type":49,"value":1149},"{\"id\": \"\u003Cdocs_skill_id from inspect>\"}",{"type":44,"tag":59,"props":1151,"children":1152},{"style":1052},[1153],{"type":49,"value":1154},"'",{"type":44,"tag":59,"props":1156,"children":1157},{"style":1018},[1158],{"type":49,"value":1159}," --fields",{"type":44,"tag":59,"props":1161,"children":1162},{"style":1018},[1163],{"type":49,"value":1164}," data.markdown\n",{"type":44,"tag":59,"props":1166,"children":1168},{"class":998,"line":1167},8,[1169,1173,1177,1181,1185,1189,1194,1198,1202],{"type":44,"tag":59,"props":1170,"children":1171},{"style":1013},[1172],{"type":49,"value":4},{"type":44,"tag":59,"props":1174,"children":1175},{"style":1018},[1176],{"type":49,"value":1131},{"type":44,"tag":59,"props":1178,"children":1179},{"style":1018},[1180],{"type":49,"value":1136},{"type":44,"tag":59,"props":1182,"children":1183},{"style":1018},[1184],{"type":49,"value":1049},{"type":44,"tag":59,"props":1186,"children":1187},{"style":1052},[1188],{"type":49,"value":1055},{"type":44,"tag":59,"props":1190,"children":1191},{"style":1018},[1192],{"type":49,"value":1193},"{\"id\": \"\u003Cdocs_skill_id from inspect>\", \"section\": \"\u003Cexact-section-id>\"}",{"type":44,"tag":59,"props":1195,"children":1196},{"style":1052},[1197],{"type":49,"value":1154},{"type":44,"tag":59,"props":1199,"children":1200},{"style":1018},[1201],{"type":49,"value":1159},{"type":44,"tag":59,"props":1203,"children":1204},{"style":1018},[1205],{"type":49,"value":1164},{"type":44,"tag":59,"props":1207,"children":1209},{"class":998,"line":1208},9,[1210],{"type":44,"tag":59,"props":1211,"children":1212},{"emptyLinePlaceholder":1072},[1213],{"type":49,"value":1075},{"type":44,"tag":59,"props":1215,"children":1217},{"class":998,"line":1216},10,[1218],{"type":44,"tag":59,"props":1219,"children":1220},{"style":1003},[1221],{"type":49,"value":1222},"# 3. Read data\n",{"type":44,"tag":59,"props":1224,"children":1226},{"class":998,"line":1225},11,[1227,1231,1235,1240,1244,1248],{"type":44,"tag":59,"props":1228,"children":1229},{"style":1013},[1230],{"type":49,"value":4},{"type":44,"tag":59,"props":1232,"children":1233},{"style":1018},[1234],{"type":49,"value":1039},{"type":44,"tag":59,"props":1236,"children":1237},{"style":1018},[1238],{"type":49,"value":1239}," execute",{"type":44,"tag":59,"props":1241,"children":1242},{"style":1018},[1243],{"type":49,"value":1049},{"type":44,"tag":59,"props":1245,"children":1246},{"style":1052},[1247],{"type":49,"value":1055},{"type":44,"tag":59,"props":1249,"children":1250},{"style":1018},[1251],{"type":49,"value":1252},"{\n",{"type":44,"tag":59,"props":1254,"children":1256},{"class":998,"line":1255},12,[1257],{"type":44,"tag":59,"props":1258,"children":1259},{"style":1018},[1260],{"type":49,"value":1261},"  \"workspace\": \"\u003Cname>\",\n",{"type":44,"tag":59,"props":1263,"children":1265},{"class":998,"line":1264},13,[1266],{"type":44,"tag":59,"props":1267,"children":1268},{"style":1018},[1269],{"type":49,"value":1270},"  \"name\": \"\u003Cconnector>\",\n",{"type":44,"tag":59,"props":1272,"children":1274},{"class":998,"line":1273},14,[1275],{"type":44,"tag":59,"props":1276,"children":1277},{"style":1018},[1278],{"type":49,"value":1279},"  \"entity\": \"\u003Cfrom-skills-docs>\",\n",{"type":44,"tag":59,"props":1281,"children":1283},{"class":998,"line":1282},15,[1284],{"type":44,"tag":59,"props":1285,"children":1286},{"style":1018},[1287],{"type":49,"value":1288},"  \"action\": \"context_store_search\",\n",{"type":44,"tag":59,"props":1290,"children":1292},{"class":998,"line":1291},16,[1293],{"type":44,"tag":59,"props":1294,"children":1295},{"style":1018},[1296],{"type":49,"value":1297},"  \"select_fields\": [\"...\"],\n",{"type":44,"tag":59,"props":1299,"children":1301},{"class":998,"line":1300},17,[1302],{"type":44,"tag":59,"props":1303,"children":1304},{"style":1018},[1305],{"type":49,"value":1306},"  \"params\": {\"limit\": 20, \"query\": {\"filter\": {...}}}\n",{"type":44,"tag":59,"props":1308,"children":1310},{"class":998,"line":1309},18,[1311,1316],{"type":44,"tag":59,"props":1312,"children":1313},{"style":1018},[1314],{"type":49,"value":1315},"}",{"type":44,"tag":59,"props":1317,"children":1318},{"style":1052},[1319],{"type":49,"value":1065},{"type":44,"tag":168,"props":1321,"children":1323},{"id":1322},"exit-codes",[1324],{"type":49,"value":1325},"Exit codes",{"type":44,"tag":606,"props":1327,"children":1328},{},[1329,1345],{"type":44,"tag":610,"props":1330,"children":1331},{},[1332],{"type":44,"tag":614,"props":1333,"children":1334},{},[1335,1340],{"type":44,"tag":618,"props":1336,"children":1337},{},[1338],{"type":49,"value":1339},"Code",{"type":44,"tag":618,"props":1341,"children":1342},{},[1343],{"type":49,"value":1344},"Meaning",{"type":44,"tag":629,"props":1346,"children":1347},{},[1348,1365,1382,1404,1421],{"type":44,"tag":614,"props":1349,"children":1350},{},[1351,1360],{"type":44,"tag":636,"props":1352,"children":1353},{},[1354],{"type":44,"tag":67,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":49,"value":1359},"0",{"type":44,"tag":636,"props":1361,"children":1362},{},[1363],{"type":49,"value":1364},"Success",{"type":44,"tag":614,"props":1366,"children":1367},{},[1368,1377],{"type":44,"tag":636,"props":1369,"children":1370},{},[1371],{"type":44,"tag":67,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":49,"value":1376},"1",{"type":44,"tag":636,"props":1378,"children":1379},{},[1380],{"type":49,"value":1381},"General error",{"type":44,"tag":614,"props":1383,"children":1384},{},[1385,1394],{"type":44,"tag":636,"props":1386,"children":1387},{},[1388],{"type":44,"tag":67,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":49,"value":1393},"2",{"type":44,"tag":636,"props":1395,"children":1396},{},[1397,1399],{"type":49,"value":1398},"Authentication error → run ",{"type":44,"tag":67,"props":1400,"children":1402},{"className":1401},[],[1403],{"type":49,"value":319},{"type":44,"tag":614,"props":1405,"children":1406},{},[1407,1416],{"type":44,"tag":636,"props":1408,"children":1409},{},[1410],{"type":44,"tag":67,"props":1411,"children":1413},{"className":1412},[],[1414],{"type":49,"value":1415},"3",{"type":44,"tag":636,"props":1417,"children":1418},{},[1419],{"type":49,"value":1420},"Not found (workspace, connector, template, entity…)",{"type":44,"tag":614,"props":1422,"children":1423},{},[1424,1433],{"type":44,"tag":636,"props":1425,"children":1426},{},[1427],{"type":44,"tag":67,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":49,"value":1432},"4",{"type":44,"tag":636,"props":1434,"children":1435},{},[1436],{"type":49,"value":1437},"Validation error (bad params, ambiguous name, missing confirmation)",{"type":44,"tag":1439,"props":1440,"children":1441},"style",{},[1442],{"type":49,"value":1443},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1445,"total":999},[1446],{"slug":4,"name":4,"fn":5,"description":6,"org":1447,"tags":1448,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1449,1450,1451,1452],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16},{"items":1454,"total":999},[1455],{"slug":4,"name":4,"fn":5,"description":6,"org":1456,"tags":1457,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1458,1459,1460,1461],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16}]