[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-elastic-cloud-manage-project":3,"mdc-y4lwql-key":33,"related-org-elastic-cloud-manage-project":4460,"related-repo-elastic-cloud-manage-project":4618},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"cloud-manage-project","manage Elastic Cloud Serverless projects","Manages existing Elastic Cloud Serverless projects: list, get, update, delete, reset credentials, resume, and load saved credentials. Connects to existing projects by resolving endpoints and acquiring scoped Elasticsearch API keys. Use when performing day-2 operations on serverless projects, connecting to an existing project, loading or resetting project credentials, or looking up project details.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"elastic","Elastic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Felastic.png",[12,16,19],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"Cloud","cloud",{"name":20,"slug":21,"type":15},"Elasticsearch","elasticsearch",531,"https:\u002F\u002Fgithub.com\u002Felastic\u002Fagent-skills","2026-07-12T07:46:41.097412",null,41,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Official Elastic Skills","https:\u002F\u002Fgithub.com\u002Felastic\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fcloud\u002Fmanage-project","---\nname: cloud-manage-project\ndescription: >\n  Manages existing Elastic Cloud Serverless projects: list, get, update, delete, reset\n  credentials, resume, and load saved credentials. Connects to existing projects by\n  resolving endpoints and acquiring scoped Elasticsearch API keys. Use when performing\n  day-2 operations on serverless projects, connecting to an existing project, loading\n  or resetting project credentials, or looking up project details.\ncompatibility: >\n  Requires Python 3.8+, network access to the Elastic Cloud API (api.elastic-cloud.com)\n  for API commands; load-credentials works locally without network access. Environment\n  variables: EC_API_KEY (required for API commands, set by cloud-setup).\nmetadata:\n  author: elastic\n  version: 0.1.0\n---\n\n# Manage Serverless Project\n\nPerform day-2 operations on Elastic Cloud Serverless projects using the Serverless REST API.\n\n## Prerequisites and permissions\n\n- Ensure `EC_API_KEY` is configured. If not, run `cloud-setup` skill first.\n- Updating project settings requires **Admin** or **Editor** role on the target project.\n- This skill does not perform a separate role pre-check. Attempt the requested operation and let the API enforce\n  authorization. If the API returns an authorization error (for example, `403 Forbidden`), stop and ask the user to\n  verify the provided API key permissions.\n\n### Manual setup fallback (when `cloud-setup` is unavailable)\n\nIf this skill is installed standalone and `cloud-setup` is not available, instruct the user to configure Cloud\nenvironment variables manually before running commands. Never ask the user to paste API keys in chat.\n\n| Variable      | Required | Description                                                    |\n| ------------- | -------- | -------------------------------------------------------------- |\n| `EC_API_KEY`  | Yes      | Elastic Cloud API key used for project management operations.  |\n| `EC_BASE_URL` | No       | Cloud API base URL (default: `https:\u002F\u002Fapi.elastic-cloud.com`). |\n\n> **Note:** If `EC_API_KEY` is missing, or the user does not have a Cloud API key yet, direct the user to generate one\n> at [Elastic Cloud API keys](https:\u002F\u002Fcloud.elastic.co\u002Faccount\u002Fkeys), then configure it locally using the steps below.\n\nPreferred method (agent-friendly): create a `.env` file in the project root:\n\n```bash\nEC_API_KEY=your-api-key\nEC_BASE_URL=https:\u002F\u002Fapi.elastic-cloud.com\n```\n\nAll `cloud\u002F*` scripts auto-load `.env` from the working directory.\n\nAlternative: export directly in the terminal:\n\n```bash\nexport EC_API_KEY=\"\u003Cyour-cloud-api-key>\"\nexport EC_BASE_URL=\"https:\u002F\u002Fapi.elastic-cloud.com\"\n```\n\nTerminal exports may not be visible to sandboxed agents running in separate shell sessions, so prefer `.env` when using\nan agent.\n\n## Critical principles\n\n- **Never display secrets in chat.** Do not echo, log, or repeat API keys, passwords, or credentials in conversation\n  messages or agent thinking. Direct the user to the `.elastic-credentials` file instead. The admin password must\n  **never** appear in chat history, thinking traces, or agent output — even when using it to create an API key, pass it\n  directly via shell variable substitution without echoing.\n- **Confirm before destructive actions.** Always ask the user to confirm before deleting a project or resetting\n  credentials.\n- **Credentials are saved to file.** After a credential reset, the script writes the new password to\n  `.elastic-credentials` automatically. The password is redacted from stdout. Never read or display the contents of\n  `.elastic-credentials` in chat.\n- **Admin credentials are for API key creation only.** The `admin` password saved by `create-project` and\n  `reset-credentials` exists solely to bootstrap a scoped API key — never use it for direct Elasticsearch operations.\n  `load-credentials` excludes admin credentials by default; pass `--include-admin` only for key creation.\n- **Always prefer API keys.** Do not proceed with Elasticsearch operations until an `ELASTICSEARCH_API_KEY` is set. If\n  only admin credentials are available, create a scoped API key via `elasticsearch-authn`. If that skill is not\n  installed, ask the user to install it or create the key manually in **Kibana > Stack Management > API keys**.\n- **Identify projects by type and ID.** Every command requires both `--type` and `--id` (except `list`, which only needs\n  `--type`).\n- **Two kinds of API keys.** This skill uses the **Cloud API key** (`EC_API_KEY`) for project management operations\n  (list, get, update, delete). Elasticsearch operations require a separate **Elasticsearch API key**\n  (`ELASTICSEARCH_API_KEY`) that authenticates against the project's Elasticsearch endpoint. Do not confuse the two.\n\n## Workflow: Connect to an existing project\n\nUse this workflow when the user asks to query or manage a project the agent did not create in the current session. It\nresolves the project, saves its endpoints, and ensures working Elasticsearch credentials before proceeding.\n\nThis workflow only applies to **Elastic Cloud Serverless projects**. If the user's Elasticsearch instance is\nself-managed or Elastic Cloud Hosted, this skill does not apply — skip it and proceed with the relevant skill directly.\nIf unsure, ask the user: **\"Is your Elasticsearch instance an Elastic Cloud Serverless project?\"**\n\n```text\nConnect to Existing Project:\n- [ ] Step 1: Resolve the project\n- [ ] Step 2: Get project details and load credentials\n- [ ] Step 3: Acquire Elasticsearch credentials\n```\n\n### Step 1: Resolve the project\n\nAsk the user for the **project name** if not already provided. Infer the project type from the user's request:\n\n| User says                                                   | `--type`        |\n| ----------------------------------------------------------- | --------------- |\n| \"search project\", \"elasticsearch project\", vector search    | `elasticsearch` |\n| \"observability project\", \"o11y\", logs, metrics, traces, APM | `observability` |\n| \"security project\", \"SIEM\", detections, endpoint protection | `security`      |\n\nIf the type is ambiguous, list all three types to find the project.\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py list \\\n  --type elasticsearch\n```\n\nMatch the user's reference (name, partial name, or alias) against the list results. If multiple projects match or none\nmatch, present the candidates and ask the user to pick.\n\n### Step 2: Get project details and load credentials\n\nOnce a single project is identified, check whether `.elastic-credentials` already has entries for this project (from a\nprevious session). If so, load them with `load-credentials`:\n\n```bash\neval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\")\n```\n\nThis sets all saved environment variables for the project — endpoints and any previously created Elasticsearch API keys\n— in a single command. Admin credentials (`ELASTICSEARCH_USERNAME`\u002F`ELASTICSEARCH_PASSWORD`) are intentionally excluded.\nLater sections for the same project automatically overwrite earlier values, so the most recent credentials always win.\n\nIf `load-credentials` reports no matching entries, fetch the project details from the API and export endpoints manually:\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py get \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n```\n\nThen export the endpoint URLs from the response. The available endpoints depend on the project type.\n\n**All project types:**\n\n```bash\nexport ELASTICSEARCH_URL=\"\u003Celasticsearch_endpoint>\"\nexport KIBANA_URL=\"\u003Ckibana_endpoint>\"\n```\n\n**Observability projects** (additional):\n\n```bash\nexport APM_URL=\"\u003Capm_endpoint>\"\nexport INGEST_URL=\"\u003Cingest_endpoint>\"\n```\n\n**Security projects** (additional):\n\n```bash\nexport INGEST_URL=\"\u003Cingest_endpoint>\"\n```\n\n### Step 3: Acquire Elasticsearch credentials\n\nIf `load-credentials` set `ELASTICSEARCH_API_KEY`, verify the credentials work:\n\n```bash\ncurl -H \"Authorization: ApiKey ${ELASTICSEARCH_API_KEY}\" \\\n  \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"\n```\n\nConfirm the response contains a valid `username` and `\"authentication_type\": \"api_key\"` before proceeding. If\nverification succeeds, skip the rest of this step.\n\nIf no credentials were loaded, or verification fails, ask the user: **\"Do you have an existing Elasticsearch API key for\nthis project?\"**\n\n**If yes** — have the user add it to `.elastic-credentials` (see \"Credential file format\"). Do not accept keys in chat.\nReload and verify:\n\n```bash\neval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\")\ncurl -H \"Authorization: ApiKey ${ELASTICSEARCH_API_KEY}\" \\\n  \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"\n```\n\n**If no** — follow this recovery path:\n\n1. Confirm with the user, then reset the admin bootstrap credentials:\n\n   ```bash\n   python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py reset-credentials \\\n     --type elasticsearch \\\n     --id \u003Cproject-id>\n   ```\n\n   The new password is saved to `.elastic-credentials` with the project name in the header. Direct the user to that file\n   — do not display its contents.\n\n2. Load credentials **with `--include-admin`** so the admin password is available for API key creation:\n\n   ```bash\n   eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n     --name \"\u003Cproject-name>\" --include-admin)\n   ```\n\n   Use the admin credentials to create a scoped Elasticsearch API key via `elasticsearch-authn` if available. If that\n   skill is not installed, ask the user to install it or create the key manually in **Kibana > Stack Management > API\n   keys**. Scope the key to only the privileges the user needs.\n\n3. After creating the API key, save it to `.elastic-credentials` using the project-specific header format (see\n   \"Credential file format\" below). Then reload **without `--include-admin`** to drop admin credentials from the\n   environment and verify:\n\n   ```bash\n   eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n     --name \"\u003Cproject-name>\")\n   curl -H \"Authorization: ApiKey ${ELASTICSEARCH_API_KEY}\" \\\n     \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"\n   ```\n\n   Confirm the response shows a valid `username` and `\"authentication_type\": \"api_key\"` before proceeding.\n\n## Credential file format\n\nSee [references\u002Fcredential-file-format.md](references\u002Fcredential-file-format.md) for the full format specification.\n\n## Workflow: Load project credentials\n\n```bash\neval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\")\n```\n\nOr by project ID:\n\n```bash\neval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --id \u003Cproject-id>)\n```\n\nParses `.elastic-credentials`, merges all sections for the matching project, and prints `export` statements. Admin\ncredentials (`ELASTICSEARCH_USERNAME`\u002F`ELASTICSEARCH_PASSWORD`) are excluded by default — only endpoints and API keys\nare exported. Add `--include-admin` when you need admin credentials to create an API key.\n\n## Workflow: List projects\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py list \\\n  --type elasticsearch\n```\n\nUse `--type observability` or `--type security` to list other project types.\n\n## Workflow: Get project details\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py get \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n```\n\n## Workflow: Update a project\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --name \"new-project-name\"\n```\n\nOnly the fields provided are updated (PATCH semantics). Supported fields: `--name`, `--alias`, `--tag`,\n`--search-power`, `--boost-window`, `--max-retention-days`, `--default-retention-days`.\n\n### Alias\n\nThe alias is an RFC-1035 domain label (lowercase alphanumeric and hyphens, max 50 chars) that becomes part of the\nproject's endpoint URLs. **Changing the alias changes all endpoint URLs**, which breaks existing clients pointing to the\nold URLs. Warn the user about this before applying.\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --alias \"prod-search\"\n```\n\n### Tags\n\nTags are key-value metadata pairs for team tracking, cost attribution, and organization. Pass `--tag KEY:VALUE` for each\ntag. Multiple tags can be set in a single update.\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --tag env:prod \\\n  --tag team:search\n```\n\nTags are sent as `metadata.tags` in the API request. Setting tags replaces all existing tags on the project — include\nany existing tags the user wants to keep.\n\n### Elasticsearch search_lake settings\n\nFor Elasticsearch projects, two fields control query performance and data caching in the Search AI Lake. Ingested data\nis stored in cost-efficient general storage. A cache layer on top provides faster search speed for recent and frequently\nqueried data — this cached data is considered **search-ready**.\n\n| Flag             | Range   | Description                                                                  |\n| ---------------- | ------- | ---------------------------------------------------------------------------- |\n| `--search-power` | 28–3000 | Query performance level. Higher values improve performance but increase cost |\n| `--boost-window` | 1–180   | Days of data eligible for boosted caching (default: 7)                       |\n\n#### Search Power\n\nSearch Power controls the speed of searches by provisioning more or fewer query resources. Common presets (matching the\nCloud UI):\n\n| Value | Preset            | Behavior                                                                       |\n| ----- | ----------------- | ------------------------------------------------------------------------------ |\n| 28    | On-demand         | Autoscales with lower baseline. More variable latency, reduced max throughput  |\n| 100   | Performant        | Consistently low latency, autoscales for moderately high throughput            |\n| 250   | High availability | Optimized for high-throughput scenarios, maintains low latency at high volumes |\n\nWhen the user asks for a preset by name, map it to the corresponding value. Custom values within 28–3000 are also valid.\n\n**Warn the user about cost implications before updating `search_power`.** Higher values increase VCU consumption and may\nresult in higher bills. Confirm the new value with the user before applying.\n\n#### Search Boost Window\n\nNon-time-series data is always search-ready. The boost window determines how much **time-series** data (documents with a\n`@timestamp` field) is also kept in the fast cache layer. Increasing the window means a larger portion of time-series\ndata becomes search-ready, which improves query speed for recent data but increases the search-ready data volume.\n\n### Security data retention settings\n\nFor security projects, two fields control how long data is retained in the Search AI Lake. Retention is configured per\ndata stream, but these project-level settings enforce global boundaries.\n\n| Flag                       | Unit | Description                                                    |\n| -------------------------- | ---- | -------------------------------------------------------------- |\n| `--max-retention-days`     | days | Maximum retention period for any data stream in the project    |\n| `--default-retention-days` | days | Default retention applied to data streams without a custom one |\n\n- **Maximum retention** — enforces an upper bound across all data streams. When lowered, it replaces the retention for\n  any stream that currently has a longer period. Data older than the new maximum is **permanently deleted**.\n- **Default retention** — automatically applied to data streams that do not have a custom retention period set. Does not\n  affect streams with an existing custom retention.\n\n**Warn the user before reducing `max-retention-days`.** Lowering the maximum permanently deletes data older than the new\nlimit. Confirm the new value with the user before applying.\n\n## Workflow: Reset project credentials\n\n**Always confirm with the user before resetting.**\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py reset-credentials \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n```\n\nThe new password is saved to `.elastic-credentials` automatically. Tell the user to open that file — do not display its\ncontents in chat.\n\n## Workflow: Delete a project\n\n**Always confirm with the user before deleting.**\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py delete \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n```\n\n## Workflow: Resume a suspended project\n\nProjects can be automatically suspended after their trial period expires. Resume with:\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py resume \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n```\n\nAfter resuming, poll the project status until the phase changes from `initializing` to `initialized`.\n\n## Examples\n\n### List all security projects\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py list --type security\n```\n\n### Update search power on an Elasticsearch project\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345 \\\n  --search-power 500\n```\n\n### Set data retention on a security project\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type security \\\n  --id abc123def456abc123def456abc12345 \\\n  --max-retention-days 396 \\\n  --default-retention-days 396\n```\n\n### Change project alias\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345 \\\n  --alias \"prod-search\"\n```\n\n### Tag a project for cost tracking\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type observability \\\n  --id abc123def456abc123def456abc12345 \\\n  --tag env:prod \\\n  --tag team:platform\n```\n\n### Rename an observability project\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type observability \\\n  --id abc123def456abc123def456abc12345 \\\n  --name \"production-logs\"\n```\n\n### Connect to an existing project (credentials on file)\n\n```text\nUser: I want to run a query against my search project \"prod-search\"\nAgent: Let me find that project.\n       [runs: list --type elasticsearch]\n       I found \"prod-search\" (ID: abc123...). Loading saved credentials...\n       [runs: eval $(load-credentials --name prod-search)]\n       Credentials loaded. Verifying...\n       [runs: curl -H \"Authorization: ApiKey ...\" \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"]\n       Verified — authenticated as user \"my-service\" via API key. You're all set.\n```\n\n### Connect to a project (no saved credentials)\n\n```text\nUser: let's ingest some logs into my o11y project \"siem-prod\"\nAgent: Let me find that project.\n       [runs: list --type observability]\n       Found \"siem-prod\" (ID: def456...). No saved credentials found for this project.\n       [runs: get --type observability --id def456...]\n       Endpoints set. Since there are no Elasticsearch credentials on file, I can reset the\n       admin bootstrap password to get initial access. Shall I proceed?\nUser: yes\nAgent: [runs: reset-credentials --type observability --id def456...]\n       Credentials saved to .elastic-credentials — open that file to retrieve the password.\n       [runs: eval $(load-credentials --name siem-prod --include-admin)]\n       Admin credentials loaded for API key creation. Creating a scoped Elasticsearch API key\n       now — what access does it need?\nUser: read-only on logs-*\nAgent: [creates scoped API key via elasticsearch-authn using admin credentials]\n       [appends API key to .elastic-credentials with project header]\n       [runs: eval $(load-credentials --name siem-prod)]\n       [verifies against ELASTICSEARCH_URL]\n       API key created and verified. Admin credentials removed from environment.\n```\n\n### Delete a project after confirmation\n\n```text\nUser: delete my elasticsearch project abc123...\nAgent: Are you sure you want to delete project abc123...? This cannot be undone.\nUser: yes\n```\n\n```bash\npython3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py delete \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345\n```\n\n## Guidelines\n\n- Run the `cloud-setup` skill first if `EC_API_KEY` is not set.\n- Use the `cloud-create-project` skill to create new projects — this skill handles existing projects only.\n- When the user refers to a project the agent did not create, follow the \"Connect to an existing project\" workflow.\n- Deletion is permanent. Always confirm with the user before proceeding.\n- After resetting credentials, remind the user to update any stored passwords or environment variables.\n- Warn about cost implications before increasing `search_power`. Confirm the new value with the user first.\n- Warn about data loss before reducing `max-retention-days`. Data older than the new maximum is permanently deleted.\n- Warn users that changing a project alias changes all endpoint URLs, which breaks existing clients.\n- Setting tags replaces all existing tags. Retrieve current tags with `get` first and include any the user wants to\n  keep.\n\n## Script reference\n\n| Command             | Description                                                    |\n| ------------------- | -------------------------------------------------------------- |\n| `list`              | List projects by type                                          |\n| `get`               | Get project details by ID                                      |\n| `update`            | Update project name, alias, tags, or search_lake settings      |\n| `reset-credentials` | Reset project credentials (new password)                       |\n| `delete`            | Delete a project                                               |\n| `resume`            | Resume a suspended project                                     |\n| `load-credentials`  | Load a project's saved credentials from `.elastic-credentials` |\n\n| Flag                       | Commands                                                         | Description                                                  |\n| -------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------------ |\n| `--type`                   | list, get, update, reset-credentials, delete, resume             | Project type: `elasticsearch`, `observability`, `security`   |\n| `--id`                     | get, update, reset-credentials, delete, resume, load-credentials | Project ID                                                   |\n| `--name`                   | update, load-credentials                                         | Project name (update: new name; load-credentials: lookup)    |\n| `--alias`                  | update                                                           | New project alias                                            |\n| `--tag`                    | update                                                           | Tag as KEY:VALUE (repeatable, replaces all tags)             |\n| `--search-power`           | update                                                           | Search power 28–3000 (elasticsearch only)                    |\n| `--boost-window`           | update                                                           | Boost window 1–180 days (elasticsearch only)                 |\n| `--max-retention-days`     | update                                                           | Max data retention in days (security only)                   |\n| `--default-retention-days` | update                                                           | Default data retention in days (security only)               |\n| `--include-admin`          | load-credentials                                                 | Include admin username\u002Fpassword (API key bootstrapping only) |\n| `--wait-seconds`           | reset-credentials                                                | Seconds to wait for credential propagation (0 to skip)       |\n\n## Environment variables\n\n| Variable                | Required | Description                                                             |\n| ----------------------- | -------- | ----------------------------------------------------------------------- |\n| `EC_API_KEY`            | Yes      | Elastic Cloud API key (project management operations)                   |\n| `EC_BASE_URL`           | No       | Cloud API base URL (default: `https:\u002F\u002Fapi.elastic-cloud.com`)           |\n| `ELASTICSEARCH_URL`     | Output   | Elasticsearch URL (set after resolving a project for downstream skills) |\n| `KIBANA_URL`            | Output   | Kibana URL (set after resolving a project for downstream skills)        |\n| `APM_URL`               | Output   | APM endpoint (observability projects only)                              |\n| `INGEST_URL`            | Output   | OTLP ingest endpoint (observability and security projects)              |\n| `ELASTICSEARCH_API_KEY` | Output   | Elasticsearch API key (for stack-level operations)                      |\n\n## Additional resources\n\n- For full API details, request\u002Fresponse schemas, and project-type options, see the\n  [Serverless Projects API](https:\u002F\u002Fwww.elastic.co\u002Fdocs\u002Fapi\u002Fdoc\u002Felastic-cloud-serverless)\n- For official documentation on Search AI Lake settings, data retention, and project features, see\n  [Project settings](https:\u002F\u002Fwww.elastic.co\u002Fdocs\u002Fdeploy-manage\u002Fdeploy\u002Felastic-cloud\u002Fproject-settings)\n",{"data":34,"body":38},{"name":4,"description":6,"compatibility":35,"metadata":36},"Requires Python 3.8+, network access to the Elastic Cloud API (api.elastic-cloud.com) for API commands; load-credentials works locally without network access. Environment variables: EC_API_KEY (required for API commands, set by cloud-setup).\n",{"author":8,"version":37},"0.1.0",{"type":39,"children":40},"root",[41,50,56,63,123,137,149,233,265,278,329,349,354,422,434,440,663,669,674,691,701,707,719,794,799,843,848,854,873,938,959,971,1043,1048,1056,1121,1131,1196,1205,1239,1245,1263,1337,1357,1367,1384,1500,1510,1851,1857,1869,1875,1931,1936,1994,2033,2039,2075,2095,2101,2164,2170,2260,2316,2322,2334,2423,2429,2442,2540,2553,2559,2570,2638,2645,2650,2731,2736,2753,2759,2779,2785,2790,2856,2885,2902,2908,2916,2979,2990,2996,3004,3069,3075,3080,3145,3165,3171,3177,3209,3215,3286,3292,3379,3385,3460,3466,3550,3556,3632,3638,3647,3653,3662,3668,3677,3730,3736,3828,3834,3975,4241,4247,4421,4427,4454],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"manage-serverless-project",[47],{"type":48,"value":49},"text","Manage Serverless Project",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Perform day-2 operations on Elastic Cloud Serverless projects using the Serverless REST API.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"prerequisites-and-permissions",[61],{"type":48,"value":62},"Prerequisites and permissions",{"type":42,"tag":64,"props":65,"children":66},"ul",{},[67,90,110],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71,73,80,82,88],{"type":48,"value":72},"Ensure ",{"type":42,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":48,"value":79},"EC_API_KEY",{"type":48,"value":81}," is configured. If not, run ",{"type":42,"tag":74,"props":83,"children":85},{"className":84},[],[86],{"type":48,"value":87},"cloud-setup",{"type":48,"value":89}," skill first.",{"type":42,"tag":68,"props":91,"children":92},{},[93,95,101,103,108],{"type":48,"value":94},"Updating project settings requires ",{"type":42,"tag":96,"props":97,"children":98},"strong",{},[99],{"type":48,"value":100},"Admin",{"type":48,"value":102}," or ",{"type":42,"tag":96,"props":104,"children":105},{},[106],{"type":48,"value":107},"Editor",{"type":48,"value":109}," role on the target project.",{"type":42,"tag":68,"props":111,"children":112},{},[113,115,121],{"type":48,"value":114},"This skill does not perform a separate role pre-check. Attempt the requested operation and let the API enforce\nauthorization. If the API returns an authorization error (for example, ",{"type":42,"tag":74,"props":116,"children":118},{"className":117},[],[119],{"type":48,"value":120},"403 Forbidden",{"type":48,"value":122},"), stop and ask the user to\nverify the provided API key permissions.",{"type":42,"tag":124,"props":125,"children":127},"h3",{"id":126},"manual-setup-fallback-when-cloud-setup-is-unavailable",[128,130,135],{"type":48,"value":129},"Manual setup fallback (when ",{"type":42,"tag":74,"props":131,"children":133},{"className":132},[],[134],{"type":48,"value":87},{"type":48,"value":136}," is unavailable)",{"type":42,"tag":51,"props":138,"children":139},{},[140,142,147],{"type":48,"value":141},"If this skill is installed standalone and ",{"type":42,"tag":74,"props":143,"children":145},{"className":144},[],[146],{"type":48,"value":87},{"type":48,"value":148}," is not available, instruct the user to configure Cloud\nenvironment variables manually before running commands. Never ask the user to paste API keys in chat.",{"type":42,"tag":150,"props":151,"children":152},"table",{},[153,177],{"type":42,"tag":154,"props":155,"children":156},"thead",{},[157],{"type":42,"tag":158,"props":159,"children":160},"tr",{},[161,167,172],{"type":42,"tag":162,"props":163,"children":164},"th",{},[165],{"type":48,"value":166},"Variable",{"type":42,"tag":162,"props":168,"children":169},{},[170],{"type":48,"value":171},"Required",{"type":42,"tag":162,"props":173,"children":174},{},[175],{"type":48,"value":176},"Description",{"type":42,"tag":178,"props":179,"children":180},"tbody",{},[181,203],{"type":42,"tag":158,"props":182,"children":183},{},[184,193,198],{"type":42,"tag":185,"props":186,"children":187},"td",{},[188],{"type":42,"tag":74,"props":189,"children":191},{"className":190},[],[192],{"type":48,"value":79},{"type":42,"tag":185,"props":194,"children":195},{},[196],{"type":48,"value":197},"Yes",{"type":42,"tag":185,"props":199,"children":200},{},[201],{"type":48,"value":202},"Elastic Cloud API key used for project management operations.",{"type":42,"tag":158,"props":204,"children":205},{},[206,215,220],{"type":42,"tag":185,"props":207,"children":208},{},[209],{"type":42,"tag":74,"props":210,"children":212},{"className":211},[],[213],{"type":48,"value":214},"EC_BASE_URL",{"type":42,"tag":185,"props":216,"children":217},{},[218],{"type":48,"value":219},"No",{"type":42,"tag":185,"props":221,"children":222},{},[223,225,231],{"type":48,"value":224},"Cloud API base URL (default: ",{"type":42,"tag":74,"props":226,"children":228},{"className":227},[],[229],{"type":48,"value":230},"https:\u002F\u002Fapi.elastic-cloud.com",{"type":48,"value":232},").",{"type":42,"tag":234,"props":235,"children":236},"blockquote",{},[237],{"type":42,"tag":51,"props":238,"children":239},{},[240,245,247,252,254,263],{"type":42,"tag":96,"props":241,"children":242},{},[243],{"type":48,"value":244},"Note:",{"type":48,"value":246}," If ",{"type":42,"tag":74,"props":248,"children":250},{"className":249},[],[251],{"type":48,"value":79},{"type":48,"value":253}," is missing, or the user does not have a Cloud API key yet, direct the user to generate one\nat ",{"type":42,"tag":255,"props":256,"children":260},"a",{"href":257,"rel":258},"https:\u002F\u002Fcloud.elastic.co\u002Faccount\u002Fkeys",[259],"nofollow",[261],{"type":48,"value":262},"Elastic Cloud API keys",{"type":48,"value":264},", then configure it locally using the steps below.",{"type":42,"tag":51,"props":266,"children":267},{},[268,270,276],{"type":48,"value":269},"Preferred method (agent-friendly): create a ",{"type":42,"tag":74,"props":271,"children":273},{"className":272},[],[274],{"type":48,"value":275},".env",{"type":48,"value":277}," file in the project root:",{"type":42,"tag":279,"props":280,"children":285},"pre",{"className":281,"code":282,"language":283,"meta":284,"style":284},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","EC_API_KEY=your-api-key\nEC_BASE_URL=https:\u002F\u002Fapi.elastic-cloud.com\n","bash","",[286],{"type":42,"tag":74,"props":287,"children":288},{"__ignoreMap":284},[289,312],{"type":42,"tag":290,"props":291,"children":294},"span",{"class":292,"line":293},"line",1,[295,300,306],{"type":42,"tag":290,"props":296,"children":298},{"style":297},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[299],{"type":48,"value":79},{"type":42,"tag":290,"props":301,"children":303},{"style":302},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[304],{"type":48,"value":305},"=",{"type":42,"tag":290,"props":307,"children":309},{"style":308},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[310],{"type":48,"value":311},"your-api-key\n",{"type":42,"tag":290,"props":313,"children":315},{"class":292,"line":314},2,[316,320,324],{"type":42,"tag":290,"props":317,"children":318},{"style":297},[319],{"type":48,"value":214},{"type":42,"tag":290,"props":321,"children":322},{"style":302},[323],{"type":48,"value":305},{"type":42,"tag":290,"props":325,"children":326},{"style":308},[327],{"type":48,"value":328},"https:\u002F\u002Fapi.elastic-cloud.com\n",{"type":42,"tag":51,"props":330,"children":331},{},[332,334,340,342,347],{"type":48,"value":333},"All ",{"type":42,"tag":74,"props":335,"children":337},{"className":336},[],[338],{"type":48,"value":339},"cloud\u002F*",{"type":48,"value":341}," scripts auto-load ",{"type":42,"tag":74,"props":343,"children":345},{"className":344},[],[346],{"type":48,"value":275},{"type":48,"value":348}," from the working directory.",{"type":42,"tag":51,"props":350,"children":351},{},[352],{"type":48,"value":353},"Alternative: export directly in the terminal:",{"type":42,"tag":279,"props":355,"children":357},{"className":281,"code":356,"language":283,"meta":284,"style":284},"export EC_API_KEY=\"\u003Cyour-cloud-api-key>\"\nexport EC_BASE_URL=\"https:\u002F\u002Fapi.elastic-cloud.com\"\n",[358],{"type":42,"tag":74,"props":359,"children":360},{"__ignoreMap":284},[361,394],{"type":42,"tag":290,"props":362,"children":363},{"class":292,"line":293},[364,370,375,379,384,389],{"type":42,"tag":290,"props":365,"children":367},{"style":366},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[368],{"type":48,"value":369},"export",{"type":42,"tag":290,"props":371,"children":372},{"style":297},[373],{"type":48,"value":374}," EC_API_KEY",{"type":42,"tag":290,"props":376,"children":377},{"style":302},[378],{"type":48,"value":305},{"type":42,"tag":290,"props":380,"children":381},{"style":302},[382],{"type":48,"value":383},"\"",{"type":42,"tag":290,"props":385,"children":386},{"style":308},[387],{"type":48,"value":388},"\u003Cyour-cloud-api-key>",{"type":42,"tag":290,"props":390,"children":391},{"style":302},[392],{"type":48,"value":393},"\"\n",{"type":42,"tag":290,"props":395,"children":396},{"class":292,"line":314},[397,401,406,410,414,418],{"type":42,"tag":290,"props":398,"children":399},{"style":366},[400],{"type":48,"value":369},{"type":42,"tag":290,"props":402,"children":403},{"style":297},[404],{"type":48,"value":405}," EC_BASE_URL",{"type":42,"tag":290,"props":407,"children":408},{"style":302},[409],{"type":48,"value":305},{"type":42,"tag":290,"props":411,"children":412},{"style":302},[413],{"type":48,"value":383},{"type":42,"tag":290,"props":415,"children":416},{"style":308},[417],{"type":48,"value":230},{"type":42,"tag":290,"props":419,"children":420},{"style":302},[421],{"type":48,"value":393},{"type":42,"tag":51,"props":423,"children":424},{},[425,427,432],{"type":48,"value":426},"Terminal exports may not be visible to sandboxed agents running in separate shell sessions, so prefer ",{"type":42,"tag":74,"props":428,"children":430},{"className":429},[],[431],{"type":48,"value":275},{"type":48,"value":433}," when using\nan agent.",{"type":42,"tag":57,"props":435,"children":437},{"id":436},"critical-principles",[438],{"type":48,"value":439},"Critical principles",{"type":42,"tag":64,"props":441,"children":442},{},[443,468,478,502,552,585,625],{"type":42,"tag":68,"props":444,"children":445},{},[446,451,453,459,461,466],{"type":42,"tag":96,"props":447,"children":448},{},[449],{"type":48,"value":450},"Never display secrets in chat.",{"type":48,"value":452}," Do not echo, log, or repeat API keys, passwords, or credentials in conversation\nmessages or agent thinking. Direct the user to the ",{"type":42,"tag":74,"props":454,"children":456},{"className":455},[],[457],{"type":48,"value":458},".elastic-credentials",{"type":48,"value":460}," file instead. The admin password must\n",{"type":42,"tag":96,"props":462,"children":463},{},[464],{"type":48,"value":465},"never",{"type":48,"value":467}," appear in chat history, thinking traces, or agent output — even when using it to create an API key, pass it\ndirectly via shell variable substitution without echoing.",{"type":42,"tag":68,"props":469,"children":470},{},[471,476],{"type":42,"tag":96,"props":472,"children":473},{},[474],{"type":48,"value":475},"Confirm before destructive actions.",{"type":48,"value":477}," Always ask the user to confirm before deleting a project or resetting\ncredentials.",{"type":42,"tag":68,"props":479,"children":480},{},[481,486,488,493,495,500],{"type":42,"tag":96,"props":482,"children":483},{},[484],{"type":48,"value":485},"Credentials are saved to file.",{"type":48,"value":487}," After a credential reset, the script writes the new password to\n",{"type":42,"tag":74,"props":489,"children":491},{"className":490},[],[492],{"type":48,"value":458},{"type":48,"value":494}," automatically. The password is redacted from stdout. Never read or display the contents of\n",{"type":42,"tag":74,"props":496,"children":498},{"className":497},[],[499],{"type":48,"value":458},{"type":48,"value":501}," in chat.",{"type":42,"tag":68,"props":503,"children":504},{},[505,510,512,518,520,526,528,534,536,542,544,550],{"type":42,"tag":96,"props":506,"children":507},{},[508],{"type":48,"value":509},"Admin credentials are for API key creation only.",{"type":48,"value":511}," The ",{"type":42,"tag":74,"props":513,"children":515},{"className":514},[],[516],{"type":48,"value":517},"admin",{"type":48,"value":519}," password saved by ",{"type":42,"tag":74,"props":521,"children":523},{"className":522},[],[524],{"type":48,"value":525},"create-project",{"type":48,"value":527}," and\n",{"type":42,"tag":74,"props":529,"children":531},{"className":530},[],[532],{"type":48,"value":533},"reset-credentials",{"type":48,"value":535}," exists solely to bootstrap a scoped API key — never use it for direct Elasticsearch operations.\n",{"type":42,"tag":74,"props":537,"children":539},{"className":538},[],[540],{"type":48,"value":541},"load-credentials",{"type":48,"value":543}," excludes admin credentials by default; pass ",{"type":42,"tag":74,"props":545,"children":547},{"className":546},[],[548],{"type":48,"value":549},"--include-admin",{"type":48,"value":551}," only for key creation.",{"type":42,"tag":68,"props":553,"children":554},{},[555,560,562,568,570,576,578,583],{"type":42,"tag":96,"props":556,"children":557},{},[558],{"type":48,"value":559},"Always prefer API keys.",{"type":48,"value":561}," Do not proceed with Elasticsearch operations until an ",{"type":42,"tag":74,"props":563,"children":565},{"className":564},[],[566],{"type":48,"value":567},"ELASTICSEARCH_API_KEY",{"type":48,"value":569}," is set. If\nonly admin credentials are available, create a scoped API key via ",{"type":42,"tag":74,"props":571,"children":573},{"className":572},[],[574],{"type":48,"value":575},"elasticsearch-authn",{"type":48,"value":577},". If that skill is not\ninstalled, ask the user to install it or create the key manually in ",{"type":42,"tag":96,"props":579,"children":580},{},[581],{"type":48,"value":582},"Kibana > Stack Management > API keys",{"type":48,"value":584},".",{"type":42,"tag":68,"props":586,"children":587},{},[588,593,595,601,603,609,611,617,619,624],{"type":42,"tag":96,"props":589,"children":590},{},[591],{"type":48,"value":592},"Identify projects by type and ID.",{"type":48,"value":594}," Every command requires both ",{"type":42,"tag":74,"props":596,"children":598},{"className":597},[],[599],{"type":48,"value":600},"--type",{"type":48,"value":602}," and ",{"type":42,"tag":74,"props":604,"children":606},{"className":605},[],[607],{"type":48,"value":608},"--id",{"type":48,"value":610}," (except ",{"type":42,"tag":74,"props":612,"children":614},{"className":613},[],[615],{"type":48,"value":616},"list",{"type":48,"value":618},", which only needs\n",{"type":42,"tag":74,"props":620,"children":622},{"className":621},[],[623],{"type":48,"value":600},{"type":48,"value":232},{"type":42,"tag":68,"props":626,"children":627},{},[628,633,635,640,642,647,649,654,656,661],{"type":42,"tag":96,"props":629,"children":630},{},[631],{"type":48,"value":632},"Two kinds of API keys.",{"type":48,"value":634}," This skill uses the ",{"type":42,"tag":96,"props":636,"children":637},{},[638],{"type":48,"value":639},"Cloud API key",{"type":48,"value":641}," (",{"type":42,"tag":74,"props":643,"children":645},{"className":644},[],[646],{"type":48,"value":79},{"type":48,"value":648},") for project management operations\n(list, get, update, delete). Elasticsearch operations require a separate ",{"type":42,"tag":96,"props":650,"children":651},{},[652],{"type":48,"value":653},"Elasticsearch API key",{"type":48,"value":655},"\n(",{"type":42,"tag":74,"props":657,"children":659},{"className":658},[],[660],{"type":48,"value":567},{"type":48,"value":662},") that authenticates against the project's Elasticsearch endpoint. Do not confuse the two.",{"type":42,"tag":57,"props":664,"children":666},{"id":665},"workflow-connect-to-an-existing-project",[667],{"type":48,"value":668},"Workflow: Connect to an existing project",{"type":42,"tag":51,"props":670,"children":671},{},[672],{"type":48,"value":673},"Use this workflow when the user asks to query or manage a project the agent did not create in the current session. It\nresolves the project, saves its endpoints, and ensures working Elasticsearch credentials before proceeding.",{"type":42,"tag":51,"props":675,"children":676},{},[677,679,684,686],{"type":48,"value":678},"This workflow only applies to ",{"type":42,"tag":96,"props":680,"children":681},{},[682],{"type":48,"value":683},"Elastic Cloud Serverless projects",{"type":48,"value":685},". If the user's Elasticsearch instance is\nself-managed or Elastic Cloud Hosted, this skill does not apply — skip it and proceed with the relevant skill directly.\nIf unsure, ask the user: ",{"type":42,"tag":96,"props":687,"children":688},{},[689],{"type":48,"value":690},"\"Is your Elasticsearch instance an Elastic Cloud Serverless project?\"",{"type":42,"tag":279,"props":692,"children":696},{"className":693,"code":695,"language":48,"meta":284},[694],"language-text","Connect to Existing Project:\n- [ ] Step 1: Resolve the project\n- [ ] Step 2: Get project details and load credentials\n- [ ] Step 3: Acquire Elasticsearch credentials\n",[697],{"type":42,"tag":74,"props":698,"children":699},{"__ignoreMap":284},[700],{"type":48,"value":695},{"type":42,"tag":124,"props":702,"children":704},{"id":703},"step-1-resolve-the-project",[705],{"type":48,"value":706},"Step 1: Resolve the project",{"type":42,"tag":51,"props":708,"children":709},{},[710,712,717],{"type":48,"value":711},"Ask the user for the ",{"type":42,"tag":96,"props":713,"children":714},{},[715],{"type":48,"value":716},"project name",{"type":48,"value":718}," if not already provided. Infer the project type from the user's request:",{"type":42,"tag":150,"props":720,"children":721},{},[722,741],{"type":42,"tag":154,"props":723,"children":724},{},[725],{"type":42,"tag":158,"props":726,"children":727},{},[728,733],{"type":42,"tag":162,"props":729,"children":730},{},[731],{"type":48,"value":732},"User says",{"type":42,"tag":162,"props":734,"children":735},{},[736],{"type":42,"tag":74,"props":737,"children":739},{"className":738},[],[740],{"type":48,"value":600},{"type":42,"tag":178,"props":742,"children":743},{},[744,760,777],{"type":42,"tag":158,"props":745,"children":746},{},[747,752],{"type":42,"tag":185,"props":748,"children":749},{},[750],{"type":48,"value":751},"\"search project\", \"elasticsearch project\", vector search",{"type":42,"tag":185,"props":753,"children":754},{},[755],{"type":42,"tag":74,"props":756,"children":758},{"className":757},[],[759],{"type":48,"value":21},{"type":42,"tag":158,"props":761,"children":762},{},[763,768],{"type":42,"tag":185,"props":764,"children":765},{},[766],{"type":48,"value":767},"\"observability project\", \"o11y\", logs, metrics, traces, APM",{"type":42,"tag":185,"props":769,"children":770},{},[771],{"type":42,"tag":74,"props":772,"children":774},{"className":773},[],[775],{"type":48,"value":776},"observability",{"type":42,"tag":158,"props":778,"children":779},{},[780,785],{"type":42,"tag":185,"props":781,"children":782},{},[783],{"type":48,"value":784},"\"security project\", \"SIEM\", detections, endpoint protection",{"type":42,"tag":185,"props":786,"children":787},{},[788],{"type":42,"tag":74,"props":789,"children":791},{"className":790},[],[792],{"type":48,"value":793},"security",{"type":42,"tag":51,"props":795,"children":796},{},[797],{"type":48,"value":798},"If the type is ambiguous, list all three types to find the project.",{"type":42,"tag":279,"props":800,"children":802},{"className":281,"code":801,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py list \\\n  --type elasticsearch\n",[803],{"type":42,"tag":74,"props":804,"children":805},{"__ignoreMap":284},[806,830],{"type":42,"tag":290,"props":807,"children":808},{"class":292,"line":293},[809,815,820,825],{"type":42,"tag":290,"props":810,"children":812},{"style":811},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[813],{"type":48,"value":814},"python3",{"type":42,"tag":290,"props":816,"children":817},{"style":308},[818],{"type":48,"value":819}," skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py",{"type":42,"tag":290,"props":821,"children":822},{"style":308},[823],{"type":48,"value":824}," list",{"type":42,"tag":290,"props":826,"children":827},{"style":297},[828],{"type":48,"value":829}," \\\n",{"type":42,"tag":290,"props":831,"children":832},{"class":292,"line":314},[833,838],{"type":42,"tag":290,"props":834,"children":835},{"style":308},[836],{"type":48,"value":837},"  --type",{"type":42,"tag":290,"props":839,"children":840},{"style":308},[841],{"type":48,"value":842}," elasticsearch\n",{"type":42,"tag":51,"props":844,"children":845},{},[846],{"type":48,"value":847},"Match the user's reference (name, partial name, or alias) against the list results. If multiple projects match or none\nmatch, present the candidates and ask the user to pick.",{"type":42,"tag":124,"props":849,"children":851},{"id":850},"step-2-get-project-details-and-load-credentials",[852],{"type":48,"value":853},"Step 2: Get project details and load credentials",{"type":42,"tag":51,"props":855,"children":856},{},[857,859,864,866,871],{"type":48,"value":858},"Once a single project is identified, check whether ",{"type":42,"tag":74,"props":860,"children":862},{"className":861},[],[863],{"type":48,"value":458},{"type":48,"value":865}," already has entries for this project (from a\nprevious session). If so, load them with ",{"type":42,"tag":74,"props":867,"children":869},{"className":868},[],[870],{"type":48,"value":541},{"type":48,"value":872},":",{"type":42,"tag":279,"props":874,"children":876},{"className":281,"code":875,"language":283,"meta":284,"style":284},"eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\")\n",[877],{"type":42,"tag":74,"props":878,"children":879},{"__ignoreMap":284},[880,911],{"type":42,"tag":290,"props":881,"children":882},{"class":292,"line":293},[883,889,894,898,902,907],{"type":42,"tag":290,"props":884,"children":886},{"style":885},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[887],{"type":48,"value":888},"eval",{"type":42,"tag":290,"props":890,"children":891},{"style":302},[892],{"type":48,"value":893}," $(",{"type":42,"tag":290,"props":895,"children":896},{"style":811},[897],{"type":48,"value":814},{"type":42,"tag":290,"props":899,"children":900},{"style":308},[901],{"type":48,"value":819},{"type":42,"tag":290,"props":903,"children":904},{"style":308},[905],{"type":48,"value":906}," load-credentials",{"type":42,"tag":290,"props":908,"children":909},{"style":297},[910],{"type":48,"value":829},{"type":42,"tag":290,"props":912,"children":913},{"class":292,"line":314},[914,919,924,929,933],{"type":42,"tag":290,"props":915,"children":916},{"style":308},[917],{"type":48,"value":918},"  --name",{"type":42,"tag":290,"props":920,"children":921},{"style":302},[922],{"type":48,"value":923}," \"",{"type":42,"tag":290,"props":925,"children":926},{"style":308},[927],{"type":48,"value":928},"\u003Cproject-name>",{"type":42,"tag":290,"props":930,"children":931},{"style":302},[932],{"type":48,"value":383},{"type":42,"tag":290,"props":934,"children":935},{"style":302},[936],{"type":48,"value":937},")\n",{"type":42,"tag":51,"props":939,"children":940},{},[941,943,949,951,957],{"type":48,"value":942},"This sets all saved environment variables for the project — endpoints and any previously created Elasticsearch API keys\n— in a single command. Admin credentials (",{"type":42,"tag":74,"props":944,"children":946},{"className":945},[],[947],{"type":48,"value":948},"ELASTICSEARCH_USERNAME",{"type":48,"value":950},"\u002F",{"type":42,"tag":74,"props":952,"children":954},{"className":953},[],[955],{"type":48,"value":956},"ELASTICSEARCH_PASSWORD",{"type":48,"value":958},") are intentionally excluded.\nLater sections for the same project automatically overwrite earlier values, so the most recent credentials always win.",{"type":42,"tag":51,"props":960,"children":961},{},[962,964,969],{"type":48,"value":963},"If ",{"type":42,"tag":74,"props":965,"children":967},{"className":966},[],[968],{"type":48,"value":541},{"type":48,"value":970}," reports no matching entries, fetch the project details from the API and export endpoints manually:",{"type":42,"tag":279,"props":972,"children":974},{"className":281,"code":973,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py get \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n",[975],{"type":42,"tag":74,"props":976,"children":977},{"__ignoreMap":284},[978,998,1014],{"type":42,"tag":290,"props":979,"children":980},{"class":292,"line":293},[981,985,989,994],{"type":42,"tag":290,"props":982,"children":983},{"style":811},[984],{"type":48,"value":814},{"type":42,"tag":290,"props":986,"children":987},{"style":308},[988],{"type":48,"value":819},{"type":42,"tag":290,"props":990,"children":991},{"style":308},[992],{"type":48,"value":993}," get",{"type":42,"tag":290,"props":995,"children":996},{"style":297},[997],{"type":48,"value":829},{"type":42,"tag":290,"props":999,"children":1000},{"class":292,"line":314},[1001,1005,1010],{"type":42,"tag":290,"props":1002,"children":1003},{"style":308},[1004],{"type":48,"value":837},{"type":42,"tag":290,"props":1006,"children":1007},{"style":308},[1008],{"type":48,"value":1009}," elasticsearch",{"type":42,"tag":290,"props":1011,"children":1012},{"style":297},[1013],{"type":48,"value":829},{"type":42,"tag":290,"props":1015,"children":1017},{"class":292,"line":1016},3,[1018,1023,1028,1033,1038],{"type":42,"tag":290,"props":1019,"children":1020},{"style":308},[1021],{"type":48,"value":1022},"  --id",{"type":42,"tag":290,"props":1024,"children":1025},{"style":302},[1026],{"type":48,"value":1027}," \u003C",{"type":42,"tag":290,"props":1029,"children":1030},{"style":308},[1031],{"type":48,"value":1032},"project-i",{"type":42,"tag":290,"props":1034,"children":1035},{"style":297},[1036],{"type":48,"value":1037},"d",{"type":42,"tag":290,"props":1039,"children":1040},{"style":302},[1041],{"type":48,"value":1042},">\n",{"type":42,"tag":51,"props":1044,"children":1045},{},[1046],{"type":48,"value":1047},"Then export the endpoint URLs from the response. The available endpoints depend on the project type.",{"type":42,"tag":51,"props":1049,"children":1050},{},[1051],{"type":42,"tag":96,"props":1052,"children":1053},{},[1054],{"type":48,"value":1055},"All project types:",{"type":42,"tag":279,"props":1057,"children":1059},{"className":281,"code":1058,"language":283,"meta":284,"style":284},"export ELASTICSEARCH_URL=\"\u003Celasticsearch_endpoint>\"\nexport KIBANA_URL=\"\u003Ckibana_endpoint>\"\n",[1060],{"type":42,"tag":74,"props":1061,"children":1062},{"__ignoreMap":284},[1063,1092],{"type":42,"tag":290,"props":1064,"children":1065},{"class":292,"line":293},[1066,1070,1075,1079,1083,1088],{"type":42,"tag":290,"props":1067,"children":1068},{"style":366},[1069],{"type":48,"value":369},{"type":42,"tag":290,"props":1071,"children":1072},{"style":297},[1073],{"type":48,"value":1074}," ELASTICSEARCH_URL",{"type":42,"tag":290,"props":1076,"children":1077},{"style":302},[1078],{"type":48,"value":305},{"type":42,"tag":290,"props":1080,"children":1081},{"style":302},[1082],{"type":48,"value":383},{"type":42,"tag":290,"props":1084,"children":1085},{"style":308},[1086],{"type":48,"value":1087},"\u003Celasticsearch_endpoint>",{"type":42,"tag":290,"props":1089,"children":1090},{"style":302},[1091],{"type":48,"value":393},{"type":42,"tag":290,"props":1093,"children":1094},{"class":292,"line":314},[1095,1099,1104,1108,1112,1117],{"type":42,"tag":290,"props":1096,"children":1097},{"style":366},[1098],{"type":48,"value":369},{"type":42,"tag":290,"props":1100,"children":1101},{"style":297},[1102],{"type":48,"value":1103}," KIBANA_URL",{"type":42,"tag":290,"props":1105,"children":1106},{"style":302},[1107],{"type":48,"value":305},{"type":42,"tag":290,"props":1109,"children":1110},{"style":302},[1111],{"type":48,"value":383},{"type":42,"tag":290,"props":1113,"children":1114},{"style":308},[1115],{"type":48,"value":1116},"\u003Ckibana_endpoint>",{"type":42,"tag":290,"props":1118,"children":1119},{"style":302},[1120],{"type":48,"value":393},{"type":42,"tag":51,"props":1122,"children":1123},{},[1124,1129],{"type":42,"tag":96,"props":1125,"children":1126},{},[1127],{"type":48,"value":1128},"Observability projects",{"type":48,"value":1130}," (additional):",{"type":42,"tag":279,"props":1132,"children":1134},{"className":281,"code":1133,"language":283,"meta":284,"style":284},"export APM_URL=\"\u003Capm_endpoint>\"\nexport INGEST_URL=\"\u003Cingest_endpoint>\"\n",[1135],{"type":42,"tag":74,"props":1136,"children":1137},{"__ignoreMap":284},[1138,1167],{"type":42,"tag":290,"props":1139,"children":1140},{"class":292,"line":293},[1141,1145,1150,1154,1158,1163],{"type":42,"tag":290,"props":1142,"children":1143},{"style":366},[1144],{"type":48,"value":369},{"type":42,"tag":290,"props":1146,"children":1147},{"style":297},[1148],{"type":48,"value":1149}," APM_URL",{"type":42,"tag":290,"props":1151,"children":1152},{"style":302},[1153],{"type":48,"value":305},{"type":42,"tag":290,"props":1155,"children":1156},{"style":302},[1157],{"type":48,"value":383},{"type":42,"tag":290,"props":1159,"children":1160},{"style":308},[1161],{"type":48,"value":1162},"\u003Capm_endpoint>",{"type":42,"tag":290,"props":1164,"children":1165},{"style":302},[1166],{"type":48,"value":393},{"type":42,"tag":290,"props":1168,"children":1169},{"class":292,"line":314},[1170,1174,1179,1183,1187,1192],{"type":42,"tag":290,"props":1171,"children":1172},{"style":366},[1173],{"type":48,"value":369},{"type":42,"tag":290,"props":1175,"children":1176},{"style":297},[1177],{"type":48,"value":1178}," INGEST_URL",{"type":42,"tag":290,"props":1180,"children":1181},{"style":302},[1182],{"type":48,"value":305},{"type":42,"tag":290,"props":1184,"children":1185},{"style":302},[1186],{"type":48,"value":383},{"type":42,"tag":290,"props":1188,"children":1189},{"style":308},[1190],{"type":48,"value":1191},"\u003Cingest_endpoint>",{"type":42,"tag":290,"props":1193,"children":1194},{"style":302},[1195],{"type":48,"value":393},{"type":42,"tag":51,"props":1197,"children":1198},{},[1199,1204],{"type":42,"tag":96,"props":1200,"children":1201},{},[1202],{"type":48,"value":1203},"Security projects",{"type":48,"value":1130},{"type":42,"tag":279,"props":1206,"children":1208},{"className":281,"code":1207,"language":283,"meta":284,"style":284},"export INGEST_URL=\"\u003Cingest_endpoint>\"\n",[1209],{"type":42,"tag":74,"props":1210,"children":1211},{"__ignoreMap":284},[1212],{"type":42,"tag":290,"props":1213,"children":1214},{"class":292,"line":293},[1215,1219,1223,1227,1231,1235],{"type":42,"tag":290,"props":1216,"children":1217},{"style":366},[1218],{"type":48,"value":369},{"type":42,"tag":290,"props":1220,"children":1221},{"style":297},[1222],{"type":48,"value":1178},{"type":42,"tag":290,"props":1224,"children":1225},{"style":302},[1226],{"type":48,"value":305},{"type":42,"tag":290,"props":1228,"children":1229},{"style":302},[1230],{"type":48,"value":383},{"type":42,"tag":290,"props":1232,"children":1233},{"style":308},[1234],{"type":48,"value":1191},{"type":42,"tag":290,"props":1236,"children":1237},{"style":302},[1238],{"type":48,"value":393},{"type":42,"tag":124,"props":1240,"children":1242},{"id":1241},"step-3-acquire-elasticsearch-credentials",[1243],{"type":48,"value":1244},"Step 3: Acquire Elasticsearch credentials",{"type":42,"tag":51,"props":1246,"children":1247},{},[1248,1249,1254,1256,1261],{"type":48,"value":963},{"type":42,"tag":74,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":48,"value":541},{"type":48,"value":1255}," set ",{"type":42,"tag":74,"props":1257,"children":1259},{"className":1258},[],[1260],{"type":48,"value":567},{"type":48,"value":1262},", verify the credentials work:",{"type":42,"tag":279,"props":1264,"children":1266},{"className":281,"code":1265,"language":283,"meta":284,"style":284},"curl -H \"Authorization: ApiKey ${ELASTICSEARCH_API_KEY}\" \\\n  \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"\n",[1267],{"type":42,"tag":74,"props":1268,"children":1269},{"__ignoreMap":284},[1270,1310],{"type":42,"tag":290,"props":1271,"children":1272},{"class":292,"line":293},[1273,1278,1283,1287,1292,1297,1301,1306],{"type":42,"tag":290,"props":1274,"children":1275},{"style":811},[1276],{"type":48,"value":1277},"curl",{"type":42,"tag":290,"props":1279,"children":1280},{"style":308},[1281],{"type":48,"value":1282}," -H",{"type":42,"tag":290,"props":1284,"children":1285},{"style":302},[1286],{"type":48,"value":923},{"type":42,"tag":290,"props":1288,"children":1289},{"style":308},[1290],{"type":48,"value":1291},"Authorization: ApiKey ",{"type":42,"tag":290,"props":1293,"children":1294},{"style":302},[1295],{"type":48,"value":1296},"${",{"type":42,"tag":290,"props":1298,"children":1299},{"style":297},[1300],{"type":48,"value":567},{"type":42,"tag":290,"props":1302,"children":1303},{"style":302},[1304],{"type":48,"value":1305},"}\"",{"type":42,"tag":290,"props":1307,"children":1308},{"style":297},[1309],{"type":48,"value":829},{"type":42,"tag":290,"props":1311,"children":1312},{"class":292,"line":314},[1313,1318,1323,1328,1333],{"type":42,"tag":290,"props":1314,"children":1315},{"style":302},[1316],{"type":48,"value":1317},"  \"${",{"type":42,"tag":290,"props":1319,"children":1320},{"style":297},[1321],{"type":48,"value":1322},"ELASTICSEARCH_URL",{"type":42,"tag":290,"props":1324,"children":1325},{"style":302},[1326],{"type":48,"value":1327},"}",{"type":42,"tag":290,"props":1329,"children":1330},{"style":308},[1331],{"type":48,"value":1332},"\u002F_security\u002F_authenticate",{"type":42,"tag":290,"props":1334,"children":1335},{"style":302},[1336],{"type":48,"value":393},{"type":42,"tag":51,"props":1338,"children":1339},{},[1340,1342,1348,1349,1355],{"type":48,"value":1341},"Confirm the response contains a valid ",{"type":42,"tag":74,"props":1343,"children":1345},{"className":1344},[],[1346],{"type":48,"value":1347},"username",{"type":48,"value":602},{"type":42,"tag":74,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":48,"value":1354},"\"authentication_type\": \"api_key\"",{"type":48,"value":1356}," before proceeding. If\nverification succeeds, skip the rest of this step.",{"type":42,"tag":51,"props":1358,"children":1359},{},[1360,1362],{"type":48,"value":1361},"If no credentials were loaded, or verification fails, ask the user: ",{"type":42,"tag":96,"props":1363,"children":1364},{},[1365],{"type":48,"value":1366},"\"Do you have an existing Elasticsearch API key for\nthis project?\"",{"type":42,"tag":51,"props":1368,"children":1369},{},[1370,1375,1377,1382],{"type":42,"tag":96,"props":1371,"children":1372},{},[1373],{"type":48,"value":1374},"If yes",{"type":48,"value":1376}," — have the user add it to ",{"type":42,"tag":74,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":48,"value":458},{"type":48,"value":1383}," (see \"Credential file format\"). Do not accept keys in chat.\nReload and verify:",{"type":42,"tag":279,"props":1385,"children":1387},{"className":281,"code":1386,"language":283,"meta":284,"style":284},"eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\")\ncurl -H \"Authorization: ApiKey ${ELASTICSEARCH_API_KEY}\" \\\n  \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"\n",[1388],{"type":42,"tag":74,"props":1389,"children":1390},{"__ignoreMap":284},[1391,1418,1441,1476],{"type":42,"tag":290,"props":1392,"children":1393},{"class":292,"line":293},[1394,1398,1402,1406,1410,1414],{"type":42,"tag":290,"props":1395,"children":1396},{"style":885},[1397],{"type":48,"value":888},{"type":42,"tag":290,"props":1399,"children":1400},{"style":302},[1401],{"type":48,"value":893},{"type":42,"tag":290,"props":1403,"children":1404},{"style":811},[1405],{"type":48,"value":814},{"type":42,"tag":290,"props":1407,"children":1408},{"style":308},[1409],{"type":48,"value":819},{"type":42,"tag":290,"props":1411,"children":1412},{"style":308},[1413],{"type":48,"value":906},{"type":42,"tag":290,"props":1415,"children":1416},{"style":297},[1417],{"type":48,"value":829},{"type":42,"tag":290,"props":1419,"children":1420},{"class":292,"line":314},[1421,1425,1429,1433,1437],{"type":42,"tag":290,"props":1422,"children":1423},{"style":308},[1424],{"type":48,"value":918},{"type":42,"tag":290,"props":1426,"children":1427},{"style":302},[1428],{"type":48,"value":923},{"type":42,"tag":290,"props":1430,"children":1431},{"style":308},[1432],{"type":48,"value":928},{"type":42,"tag":290,"props":1434,"children":1435},{"style":302},[1436],{"type":48,"value":383},{"type":42,"tag":290,"props":1438,"children":1439},{"style":302},[1440],{"type":48,"value":937},{"type":42,"tag":290,"props":1442,"children":1443},{"class":292,"line":1016},[1444,1448,1452,1456,1460,1464,1468,1472],{"type":42,"tag":290,"props":1445,"children":1446},{"style":811},[1447],{"type":48,"value":1277},{"type":42,"tag":290,"props":1449,"children":1450},{"style":308},[1451],{"type":48,"value":1282},{"type":42,"tag":290,"props":1453,"children":1454},{"style":302},[1455],{"type":48,"value":923},{"type":42,"tag":290,"props":1457,"children":1458},{"style":308},[1459],{"type":48,"value":1291},{"type":42,"tag":290,"props":1461,"children":1462},{"style":302},[1463],{"type":48,"value":1296},{"type":42,"tag":290,"props":1465,"children":1466},{"style":297},[1467],{"type":48,"value":567},{"type":42,"tag":290,"props":1469,"children":1470},{"style":302},[1471],{"type":48,"value":1305},{"type":42,"tag":290,"props":1473,"children":1474},{"style":297},[1475],{"type":48,"value":829},{"type":42,"tag":290,"props":1477,"children":1479},{"class":292,"line":1478},4,[1480,1484,1488,1492,1496],{"type":42,"tag":290,"props":1481,"children":1482},{"style":302},[1483],{"type":48,"value":1317},{"type":42,"tag":290,"props":1485,"children":1486},{"style":297},[1487],{"type":48,"value":1322},{"type":42,"tag":290,"props":1489,"children":1490},{"style":302},[1491],{"type":48,"value":1327},{"type":42,"tag":290,"props":1493,"children":1494},{"style":308},[1495],{"type":48,"value":1332},{"type":42,"tag":290,"props":1497,"children":1498},{"style":302},[1499],{"type":48,"value":393},{"type":42,"tag":51,"props":1501,"children":1502},{},[1503,1508],{"type":42,"tag":96,"props":1504,"children":1505},{},[1506],{"type":48,"value":1507},"If no",{"type":48,"value":1509}," — follow this recovery path:",{"type":42,"tag":1511,"props":1512,"children":1513},"ol",{},[1514,1597,1695],{"type":42,"tag":68,"props":1515,"children":1516},{},[1517,1519,1584,1588,1590,1595],{"type":48,"value":1518},"Confirm with the user, then reset the admin bootstrap credentials:",{"type":42,"tag":279,"props":1520,"children":1522},{"className":281,"code":1521,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py reset-credentials \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n",[1523],{"type":42,"tag":74,"props":1524,"children":1525},{"__ignoreMap":284},[1526,1546,1561],{"type":42,"tag":290,"props":1527,"children":1528},{"class":292,"line":293},[1529,1533,1537,1542],{"type":42,"tag":290,"props":1530,"children":1531},{"style":811},[1532],{"type":48,"value":814},{"type":42,"tag":290,"props":1534,"children":1535},{"style":308},[1536],{"type":48,"value":819},{"type":42,"tag":290,"props":1538,"children":1539},{"style":308},[1540],{"type":48,"value":1541}," reset-credentials",{"type":42,"tag":290,"props":1543,"children":1544},{"style":297},[1545],{"type":48,"value":829},{"type":42,"tag":290,"props":1547,"children":1548},{"class":292,"line":314},[1549,1553,1557],{"type":42,"tag":290,"props":1550,"children":1551},{"style":308},[1552],{"type":48,"value":837},{"type":42,"tag":290,"props":1554,"children":1555},{"style":308},[1556],{"type":48,"value":1009},{"type":42,"tag":290,"props":1558,"children":1559},{"style":297},[1560],{"type":48,"value":829},{"type":42,"tag":290,"props":1562,"children":1563},{"class":292,"line":1016},[1564,1568,1572,1576,1580],{"type":42,"tag":290,"props":1565,"children":1566},{"style":308},[1567],{"type":48,"value":1022},{"type":42,"tag":290,"props":1569,"children":1570},{"style":302},[1571],{"type":48,"value":1027},{"type":42,"tag":290,"props":1573,"children":1574},{"style":308},[1575],{"type":48,"value":1032},{"type":42,"tag":290,"props":1577,"children":1578},{"style":297},[1579],{"type":48,"value":1037},{"type":42,"tag":290,"props":1581,"children":1582},{"style":302},[1583],{"type":48,"value":1042},{"type":42,"tag":1585,"props":1586,"children":1587},"br",{},[],{"type":48,"value":1589},"The new password is saved to ",{"type":42,"tag":74,"props":1591,"children":1593},{"className":1592},[],[1594],{"type":48,"value":458},{"type":48,"value":1596}," with the project name in the header. Direct the user to that file\n— do not display its contents.",{"type":42,"tag":68,"props":1598,"children":1599},{},[1600,1602,1612,1614,1676,1679,1681,1686,1688,1693],{"type":48,"value":1601},"Load credentials ",{"type":42,"tag":96,"props":1603,"children":1604},{},[1605,1607],{"type":48,"value":1606},"with ",{"type":42,"tag":74,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":48,"value":549},{"type":48,"value":1613}," so the admin password is available for API key creation:",{"type":42,"tag":279,"props":1615,"children":1617},{"className":281,"code":1616,"language":283,"meta":284,"style":284},"eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --name \"\u003Cproject-name>\" --include-admin)\n",[1618],{"type":42,"tag":74,"props":1619,"children":1620},{"__ignoreMap":284},[1621,1648],{"type":42,"tag":290,"props":1622,"children":1623},{"class":292,"line":293},[1624,1628,1632,1636,1640,1644],{"type":42,"tag":290,"props":1625,"children":1626},{"style":885},[1627],{"type":48,"value":888},{"type":42,"tag":290,"props":1629,"children":1630},{"style":302},[1631],{"type":48,"value":893},{"type":42,"tag":290,"props":1633,"children":1634},{"style":811},[1635],{"type":48,"value":814},{"type":42,"tag":290,"props":1637,"children":1638},{"style":308},[1639],{"type":48,"value":819},{"type":42,"tag":290,"props":1641,"children":1642},{"style":308},[1643],{"type":48,"value":906},{"type":42,"tag":290,"props":1645,"children":1646},{"style":297},[1647],{"type":48,"value":829},{"type":42,"tag":290,"props":1649,"children":1650},{"class":292,"line":314},[1651,1655,1659,1663,1667,1672],{"type":42,"tag":290,"props":1652,"children":1653},{"style":308},[1654],{"type":48,"value":918},{"type":42,"tag":290,"props":1656,"children":1657},{"style":302},[1658],{"type":48,"value":923},{"type":42,"tag":290,"props":1660,"children":1661},{"style":308},[1662],{"type":48,"value":928},{"type":42,"tag":290,"props":1664,"children":1665},{"style":302},[1666],{"type":48,"value":383},{"type":42,"tag":290,"props":1668,"children":1669},{"style":308},[1670],{"type":48,"value":1671}," --include-admin",{"type":42,"tag":290,"props":1673,"children":1674},{"style":302},[1675],{"type":48,"value":937},{"type":42,"tag":1585,"props":1677,"children":1678},{},[],{"type":48,"value":1680},"Use the admin credentials to create a scoped Elasticsearch API key via ",{"type":42,"tag":74,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":48,"value":575},{"type":48,"value":1687}," if available. If that\nskill is not installed, ask the user to install it or create the key manually in ",{"type":42,"tag":96,"props":1689,"children":1690},{},[1691],{"type":48,"value":1692},"Kibana > Stack Management > API\nkeys",{"type":48,"value":1694},". Scope the key to only the privileges the user needs.",{"type":42,"tag":68,"props":1696,"children":1697},{},[1698,1700,1705,1707,1717,1719,1833,1836,1838,1843,1844,1849],{"type":48,"value":1699},"After creating the API key, save it to ",{"type":42,"tag":74,"props":1701,"children":1703},{"className":1702},[],[1704],{"type":48,"value":458},{"type":48,"value":1706}," using the project-specific header format (see\n\"Credential file format\" below). Then reload ",{"type":42,"tag":96,"props":1708,"children":1709},{},[1710,1712],{"type":48,"value":1711},"without ",{"type":42,"tag":74,"props":1713,"children":1715},{"className":1714},[],[1716],{"type":48,"value":549},{"type":48,"value":1718}," to drop admin credentials from the\nenvironment and verify:",{"type":42,"tag":279,"props":1720,"children":1721},{"className":281,"code":1386,"language":283,"meta":284,"style":284},[1722],{"type":42,"tag":74,"props":1723,"children":1724},{"__ignoreMap":284},[1725,1752,1775,1810],{"type":42,"tag":290,"props":1726,"children":1727},{"class":292,"line":293},[1728,1732,1736,1740,1744,1748],{"type":42,"tag":290,"props":1729,"children":1730},{"style":885},[1731],{"type":48,"value":888},{"type":42,"tag":290,"props":1733,"children":1734},{"style":302},[1735],{"type":48,"value":893},{"type":42,"tag":290,"props":1737,"children":1738},{"style":811},[1739],{"type":48,"value":814},{"type":42,"tag":290,"props":1741,"children":1742},{"style":308},[1743],{"type":48,"value":819},{"type":42,"tag":290,"props":1745,"children":1746},{"style":308},[1747],{"type":48,"value":906},{"type":42,"tag":290,"props":1749,"children":1750},{"style":297},[1751],{"type":48,"value":829},{"type":42,"tag":290,"props":1753,"children":1754},{"class":292,"line":314},[1755,1759,1763,1767,1771],{"type":42,"tag":290,"props":1756,"children":1757},{"style":308},[1758],{"type":48,"value":918},{"type":42,"tag":290,"props":1760,"children":1761},{"style":302},[1762],{"type":48,"value":923},{"type":42,"tag":290,"props":1764,"children":1765},{"style":308},[1766],{"type":48,"value":928},{"type":42,"tag":290,"props":1768,"children":1769},{"style":302},[1770],{"type":48,"value":383},{"type":42,"tag":290,"props":1772,"children":1773},{"style":302},[1774],{"type":48,"value":937},{"type":42,"tag":290,"props":1776,"children":1777},{"class":292,"line":1016},[1778,1782,1786,1790,1794,1798,1802,1806],{"type":42,"tag":290,"props":1779,"children":1780},{"style":811},[1781],{"type":48,"value":1277},{"type":42,"tag":290,"props":1783,"children":1784},{"style":308},[1785],{"type":48,"value":1282},{"type":42,"tag":290,"props":1787,"children":1788},{"style":302},[1789],{"type":48,"value":923},{"type":42,"tag":290,"props":1791,"children":1792},{"style":308},[1793],{"type":48,"value":1291},{"type":42,"tag":290,"props":1795,"children":1796},{"style":302},[1797],{"type":48,"value":1296},{"type":42,"tag":290,"props":1799,"children":1800},{"style":297},[1801],{"type":48,"value":567},{"type":42,"tag":290,"props":1803,"children":1804},{"style":302},[1805],{"type":48,"value":1305},{"type":42,"tag":290,"props":1807,"children":1808},{"style":297},[1809],{"type":48,"value":829},{"type":42,"tag":290,"props":1811,"children":1812},{"class":292,"line":1478},[1813,1817,1821,1825,1829],{"type":42,"tag":290,"props":1814,"children":1815},{"style":302},[1816],{"type":48,"value":1317},{"type":42,"tag":290,"props":1818,"children":1819},{"style":297},[1820],{"type":48,"value":1322},{"type":42,"tag":290,"props":1822,"children":1823},{"style":302},[1824],{"type":48,"value":1327},{"type":42,"tag":290,"props":1826,"children":1827},{"style":308},[1828],{"type":48,"value":1332},{"type":42,"tag":290,"props":1830,"children":1831},{"style":302},[1832],{"type":48,"value":393},{"type":42,"tag":1585,"props":1834,"children":1835},{},[],{"type":48,"value":1837},"Confirm the response shows a valid ",{"type":42,"tag":74,"props":1839,"children":1841},{"className":1840},[],[1842],{"type":48,"value":1347},{"type":48,"value":602},{"type":42,"tag":74,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":48,"value":1354},{"type":48,"value":1850}," before proceeding.",{"type":42,"tag":57,"props":1852,"children":1854},{"id":1853},"credential-file-format",[1855],{"type":48,"value":1856},"Credential file format",{"type":42,"tag":51,"props":1858,"children":1859},{},[1860,1862,1867],{"type":48,"value":1861},"See ",{"type":42,"tag":255,"props":1863,"children":1865},{"href":1864},"references\u002Fcredential-file-format.md",[1866],{"type":48,"value":1864},{"type":48,"value":1868}," for the full format specification.",{"type":42,"tag":57,"props":1870,"children":1872},{"id":1871},"workflow-load-project-credentials",[1873],{"type":48,"value":1874},"Workflow: Load project credentials",{"type":42,"tag":279,"props":1876,"children":1877},{"className":281,"code":875,"language":283,"meta":284,"style":284},[1878],{"type":42,"tag":74,"props":1879,"children":1880},{"__ignoreMap":284},[1881,1908],{"type":42,"tag":290,"props":1882,"children":1883},{"class":292,"line":293},[1884,1888,1892,1896,1900,1904],{"type":42,"tag":290,"props":1885,"children":1886},{"style":885},[1887],{"type":48,"value":888},{"type":42,"tag":290,"props":1889,"children":1890},{"style":302},[1891],{"type":48,"value":893},{"type":42,"tag":290,"props":1893,"children":1894},{"style":811},[1895],{"type":48,"value":814},{"type":42,"tag":290,"props":1897,"children":1898},{"style":308},[1899],{"type":48,"value":819},{"type":42,"tag":290,"props":1901,"children":1902},{"style":308},[1903],{"type":48,"value":906},{"type":42,"tag":290,"props":1905,"children":1906},{"style":297},[1907],{"type":48,"value":829},{"type":42,"tag":290,"props":1909,"children":1910},{"class":292,"line":314},[1911,1915,1919,1923,1927],{"type":42,"tag":290,"props":1912,"children":1913},{"style":308},[1914],{"type":48,"value":918},{"type":42,"tag":290,"props":1916,"children":1917},{"style":302},[1918],{"type":48,"value":923},{"type":42,"tag":290,"props":1920,"children":1921},{"style":308},[1922],{"type":48,"value":928},{"type":42,"tag":290,"props":1924,"children":1925},{"style":302},[1926],{"type":48,"value":383},{"type":42,"tag":290,"props":1928,"children":1929},{"style":302},[1930],{"type":48,"value":937},{"type":42,"tag":51,"props":1932,"children":1933},{},[1934],{"type":48,"value":1935},"Or by project ID:",{"type":42,"tag":279,"props":1937,"children":1939},{"className":281,"code":1938,"language":283,"meta":284,"style":284},"eval $(python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py load-credentials \\\n  --id \u003Cproject-id>)\n",[1940],{"type":42,"tag":74,"props":1941,"children":1942},{"__ignoreMap":284},[1943,1970],{"type":42,"tag":290,"props":1944,"children":1945},{"class":292,"line":293},[1946,1950,1954,1958,1962,1966],{"type":42,"tag":290,"props":1947,"children":1948},{"style":885},[1949],{"type":48,"value":888},{"type":42,"tag":290,"props":1951,"children":1952},{"style":302},[1953],{"type":48,"value":893},{"type":42,"tag":290,"props":1955,"children":1956},{"style":811},[1957],{"type":48,"value":814},{"type":42,"tag":290,"props":1959,"children":1960},{"style":308},[1961],{"type":48,"value":819},{"type":42,"tag":290,"props":1963,"children":1964},{"style":308},[1965],{"type":48,"value":906},{"type":42,"tag":290,"props":1967,"children":1968},{"style":297},[1969],{"type":48,"value":829},{"type":42,"tag":290,"props":1971,"children":1972},{"class":292,"line":314},[1973,1977,1981,1985,1989],{"type":42,"tag":290,"props":1974,"children":1975},{"style":308},[1976],{"type":48,"value":1022},{"type":42,"tag":290,"props":1978,"children":1979},{"style":302},[1980],{"type":48,"value":1027},{"type":42,"tag":290,"props":1982,"children":1983},{"style":308},[1984],{"type":48,"value":1032},{"type":42,"tag":290,"props":1986,"children":1987},{"style":297},[1988],{"type":48,"value":1037},{"type":42,"tag":290,"props":1990,"children":1991},{"style":302},[1992],{"type":48,"value":1993},">)\n",{"type":42,"tag":51,"props":1995,"children":1996},{},[1997,1999,2004,2006,2011,2013,2018,2019,2024,2026,2031],{"type":48,"value":1998},"Parses ",{"type":42,"tag":74,"props":2000,"children":2002},{"className":2001},[],[2003],{"type":48,"value":458},{"type":48,"value":2005},", merges all sections for the matching project, and prints ",{"type":42,"tag":74,"props":2007,"children":2009},{"className":2008},[],[2010],{"type":48,"value":369},{"type":48,"value":2012}," statements. Admin\ncredentials (",{"type":42,"tag":74,"props":2014,"children":2016},{"className":2015},[],[2017],{"type":48,"value":948},{"type":48,"value":950},{"type":42,"tag":74,"props":2020,"children":2022},{"className":2021},[],[2023],{"type":48,"value":956},{"type":48,"value":2025},") are excluded by default — only endpoints and API keys\nare exported. Add ",{"type":42,"tag":74,"props":2027,"children":2029},{"className":2028},[],[2030],{"type":48,"value":549},{"type":48,"value":2032}," when you need admin credentials to create an API key.",{"type":42,"tag":57,"props":2034,"children":2036},{"id":2035},"workflow-list-projects",[2037],{"type":48,"value":2038},"Workflow: List projects",{"type":42,"tag":279,"props":2040,"children":2041},{"className":281,"code":801,"language":283,"meta":284,"style":284},[2042],{"type":42,"tag":74,"props":2043,"children":2044},{"__ignoreMap":284},[2045,2064],{"type":42,"tag":290,"props":2046,"children":2047},{"class":292,"line":293},[2048,2052,2056,2060],{"type":42,"tag":290,"props":2049,"children":2050},{"style":811},[2051],{"type":48,"value":814},{"type":42,"tag":290,"props":2053,"children":2054},{"style":308},[2055],{"type":48,"value":819},{"type":42,"tag":290,"props":2057,"children":2058},{"style":308},[2059],{"type":48,"value":824},{"type":42,"tag":290,"props":2061,"children":2062},{"style":297},[2063],{"type":48,"value":829},{"type":42,"tag":290,"props":2065,"children":2066},{"class":292,"line":314},[2067,2071],{"type":42,"tag":290,"props":2068,"children":2069},{"style":308},[2070],{"type":48,"value":837},{"type":42,"tag":290,"props":2072,"children":2073},{"style":308},[2074],{"type":48,"value":842},{"type":42,"tag":51,"props":2076,"children":2077},{},[2078,2080,2086,2087,2093],{"type":48,"value":2079},"Use ",{"type":42,"tag":74,"props":2081,"children":2083},{"className":2082},[],[2084],{"type":48,"value":2085},"--type observability",{"type":48,"value":102},{"type":42,"tag":74,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":48,"value":2092},"--type security",{"type":48,"value":2094}," to list other project types.",{"type":42,"tag":57,"props":2096,"children":2098},{"id":2097},"workflow-get-project-details",[2099],{"type":48,"value":2100},"Workflow: Get project details",{"type":42,"tag":279,"props":2102,"children":2103},{"className":281,"code":973,"language":283,"meta":284,"style":284},[2104],{"type":42,"tag":74,"props":2105,"children":2106},{"__ignoreMap":284},[2107,2126,2141],{"type":42,"tag":290,"props":2108,"children":2109},{"class":292,"line":293},[2110,2114,2118,2122],{"type":42,"tag":290,"props":2111,"children":2112},{"style":811},[2113],{"type":48,"value":814},{"type":42,"tag":290,"props":2115,"children":2116},{"style":308},[2117],{"type":48,"value":819},{"type":42,"tag":290,"props":2119,"children":2120},{"style":308},[2121],{"type":48,"value":993},{"type":42,"tag":290,"props":2123,"children":2124},{"style":297},[2125],{"type":48,"value":829},{"type":42,"tag":290,"props":2127,"children":2128},{"class":292,"line":314},[2129,2133,2137],{"type":42,"tag":290,"props":2130,"children":2131},{"style":308},[2132],{"type":48,"value":837},{"type":42,"tag":290,"props":2134,"children":2135},{"style":308},[2136],{"type":48,"value":1009},{"type":42,"tag":290,"props":2138,"children":2139},{"style":297},[2140],{"type":48,"value":829},{"type":42,"tag":290,"props":2142,"children":2143},{"class":292,"line":1016},[2144,2148,2152,2156,2160],{"type":42,"tag":290,"props":2145,"children":2146},{"style":308},[2147],{"type":48,"value":1022},{"type":42,"tag":290,"props":2149,"children":2150},{"style":302},[2151],{"type":48,"value":1027},{"type":42,"tag":290,"props":2153,"children":2154},{"style":308},[2155],{"type":48,"value":1032},{"type":42,"tag":290,"props":2157,"children":2158},{"style":297},[2159],{"type":48,"value":1037},{"type":42,"tag":290,"props":2161,"children":2162},{"style":302},[2163],{"type":48,"value":1042},{"type":42,"tag":57,"props":2165,"children":2167},{"id":2166},"workflow-update-a-project",[2168],{"type":48,"value":2169},"Workflow: Update a project",{"type":42,"tag":279,"props":2171,"children":2173},{"className":281,"code":2172,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --name \"new-project-name\"\n",[2174],{"type":42,"tag":74,"props":2175,"children":2176},{"__ignoreMap":284},[2177,2197,2212,2240],{"type":42,"tag":290,"props":2178,"children":2179},{"class":292,"line":293},[2180,2184,2188,2193],{"type":42,"tag":290,"props":2181,"children":2182},{"style":811},[2183],{"type":48,"value":814},{"type":42,"tag":290,"props":2185,"children":2186},{"style":308},[2187],{"type":48,"value":819},{"type":42,"tag":290,"props":2189,"children":2190},{"style":308},[2191],{"type":48,"value":2192}," update",{"type":42,"tag":290,"props":2194,"children":2195},{"style":297},[2196],{"type":48,"value":829},{"type":42,"tag":290,"props":2198,"children":2199},{"class":292,"line":314},[2200,2204,2208],{"type":42,"tag":290,"props":2201,"children":2202},{"style":308},[2203],{"type":48,"value":837},{"type":42,"tag":290,"props":2205,"children":2206},{"style":308},[2207],{"type":48,"value":1009},{"type":42,"tag":290,"props":2209,"children":2210},{"style":297},[2211],{"type":48,"value":829},{"type":42,"tag":290,"props":2213,"children":2214},{"class":292,"line":1016},[2215,2219,2223,2227,2231,2236],{"type":42,"tag":290,"props":2216,"children":2217},{"style":308},[2218],{"type":48,"value":1022},{"type":42,"tag":290,"props":2220,"children":2221},{"style":302},[2222],{"type":48,"value":1027},{"type":42,"tag":290,"props":2224,"children":2225},{"style":308},[2226],{"type":48,"value":1032},{"type":42,"tag":290,"props":2228,"children":2229},{"style":297},[2230],{"type":48,"value":1037},{"type":42,"tag":290,"props":2232,"children":2233},{"style":302},[2234],{"type":48,"value":2235},">",{"type":42,"tag":290,"props":2237,"children":2238},{"style":297},[2239],{"type":48,"value":829},{"type":42,"tag":290,"props":2241,"children":2242},{"class":292,"line":1478},[2243,2247,2251,2256],{"type":42,"tag":290,"props":2244,"children":2245},{"style":308},[2246],{"type":48,"value":918},{"type":42,"tag":290,"props":2248,"children":2249},{"style":302},[2250],{"type":48,"value":923},{"type":42,"tag":290,"props":2252,"children":2253},{"style":308},[2254],{"type":48,"value":2255},"new-project-name",{"type":42,"tag":290,"props":2257,"children":2258},{"style":302},[2259],{"type":48,"value":393},{"type":42,"tag":51,"props":2261,"children":2262},{},[2263,2265,2271,2273,2279,2280,2286,2288,2294,2295,2301,2302,2308,2309,2315],{"type":48,"value":2264},"Only the fields provided are updated (PATCH semantics). Supported fields: ",{"type":42,"tag":74,"props":2266,"children":2268},{"className":2267},[],[2269],{"type":48,"value":2270},"--name",{"type":48,"value":2272},", ",{"type":42,"tag":74,"props":2274,"children":2276},{"className":2275},[],[2277],{"type":48,"value":2278},"--alias",{"type":48,"value":2272},{"type":42,"tag":74,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":48,"value":2285},"--tag",{"type":48,"value":2287},",\n",{"type":42,"tag":74,"props":2289,"children":2291},{"className":2290},[],[2292],{"type":48,"value":2293},"--search-power",{"type":48,"value":2272},{"type":42,"tag":74,"props":2296,"children":2298},{"className":2297},[],[2299],{"type":48,"value":2300},"--boost-window",{"type":48,"value":2272},{"type":42,"tag":74,"props":2303,"children":2305},{"className":2304},[],[2306],{"type":48,"value":2307},"--max-retention-days",{"type":48,"value":2272},{"type":42,"tag":74,"props":2310,"children":2312},{"className":2311},[],[2313],{"type":48,"value":2314},"--default-retention-days",{"type":48,"value":584},{"type":42,"tag":124,"props":2317,"children":2319},{"id":2318},"alias",[2320],{"type":48,"value":2321},"Alias",{"type":42,"tag":51,"props":2323,"children":2324},{},[2325,2327,2332],{"type":48,"value":2326},"The alias is an RFC-1035 domain label (lowercase alphanumeric and hyphens, max 50 chars) that becomes part of the\nproject's endpoint URLs. ",{"type":42,"tag":96,"props":2328,"children":2329},{},[2330],{"type":48,"value":2331},"Changing the alias changes all endpoint URLs",{"type":48,"value":2333},", which breaks existing clients pointing to the\nold URLs. Warn the user about this before applying.",{"type":42,"tag":279,"props":2335,"children":2337},{"className":281,"code":2336,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --alias \"prod-search\"\n",[2338],{"type":42,"tag":74,"props":2339,"children":2340},{"__ignoreMap":284},[2341,2360,2375,2402],{"type":42,"tag":290,"props":2342,"children":2343},{"class":292,"line":293},[2344,2348,2352,2356],{"type":42,"tag":290,"props":2345,"children":2346},{"style":811},[2347],{"type":48,"value":814},{"type":42,"tag":290,"props":2349,"children":2350},{"style":308},[2351],{"type":48,"value":819},{"type":42,"tag":290,"props":2353,"children":2354},{"style":308},[2355],{"type":48,"value":2192},{"type":42,"tag":290,"props":2357,"children":2358},{"style":297},[2359],{"type":48,"value":829},{"type":42,"tag":290,"props":2361,"children":2362},{"class":292,"line":314},[2363,2367,2371],{"type":42,"tag":290,"props":2364,"children":2365},{"style":308},[2366],{"type":48,"value":837},{"type":42,"tag":290,"props":2368,"children":2369},{"style":308},[2370],{"type":48,"value":1009},{"type":42,"tag":290,"props":2372,"children":2373},{"style":297},[2374],{"type":48,"value":829},{"type":42,"tag":290,"props":2376,"children":2377},{"class":292,"line":1016},[2378,2382,2386,2390,2394,2398],{"type":42,"tag":290,"props":2379,"children":2380},{"style":308},[2381],{"type":48,"value":1022},{"type":42,"tag":290,"props":2383,"children":2384},{"style":302},[2385],{"type":48,"value":1027},{"type":42,"tag":290,"props":2387,"children":2388},{"style":308},[2389],{"type":48,"value":1032},{"type":42,"tag":290,"props":2391,"children":2392},{"style":297},[2393],{"type":48,"value":1037},{"type":42,"tag":290,"props":2395,"children":2396},{"style":302},[2397],{"type":48,"value":2235},{"type":42,"tag":290,"props":2399,"children":2400},{"style":297},[2401],{"type":48,"value":829},{"type":42,"tag":290,"props":2403,"children":2404},{"class":292,"line":1478},[2405,2410,2414,2419],{"type":42,"tag":290,"props":2406,"children":2407},{"style":308},[2408],{"type":48,"value":2409},"  --alias",{"type":42,"tag":290,"props":2411,"children":2412},{"style":302},[2413],{"type":48,"value":923},{"type":42,"tag":290,"props":2415,"children":2416},{"style":308},[2417],{"type":48,"value":2418},"prod-search",{"type":42,"tag":290,"props":2420,"children":2421},{"style":302},[2422],{"type":48,"value":393},{"type":42,"tag":124,"props":2424,"children":2426},{"id":2425},"tags",[2427],{"type":48,"value":2428},"Tags",{"type":42,"tag":51,"props":2430,"children":2431},{},[2432,2434,2440],{"type":48,"value":2433},"Tags are key-value metadata pairs for team tracking, cost attribution, and organization. Pass ",{"type":42,"tag":74,"props":2435,"children":2437},{"className":2436},[],[2438],{"type":48,"value":2439},"--tag KEY:VALUE",{"type":48,"value":2441}," for each\ntag. Multiple tags can be set in a single update.",{"type":42,"tag":279,"props":2443,"children":2445},{"className":281,"code":2444,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id \u003Cproject-id> \\\n  --tag env:prod \\\n  --tag team:search\n",[2446],{"type":42,"tag":74,"props":2447,"children":2448},{"__ignoreMap":284},[2449,2468,2483,2510,2527],{"type":42,"tag":290,"props":2450,"children":2451},{"class":292,"line":293},[2452,2456,2460,2464],{"type":42,"tag":290,"props":2453,"children":2454},{"style":811},[2455],{"type":48,"value":814},{"type":42,"tag":290,"props":2457,"children":2458},{"style":308},[2459],{"type":48,"value":819},{"type":42,"tag":290,"props":2461,"children":2462},{"style":308},[2463],{"type":48,"value":2192},{"type":42,"tag":290,"props":2465,"children":2466},{"style":297},[2467],{"type":48,"value":829},{"type":42,"tag":290,"props":2469,"children":2470},{"class":292,"line":314},[2471,2475,2479],{"type":42,"tag":290,"props":2472,"children":2473},{"style":308},[2474],{"type":48,"value":837},{"type":42,"tag":290,"props":2476,"children":2477},{"style":308},[2478],{"type":48,"value":1009},{"type":42,"tag":290,"props":2480,"children":2481},{"style":297},[2482],{"type":48,"value":829},{"type":42,"tag":290,"props":2484,"children":2485},{"class":292,"line":1016},[2486,2490,2494,2498,2502,2506],{"type":42,"tag":290,"props":2487,"children":2488},{"style":308},[2489],{"type":48,"value":1022},{"type":42,"tag":290,"props":2491,"children":2492},{"style":302},[2493],{"type":48,"value":1027},{"type":42,"tag":290,"props":2495,"children":2496},{"style":308},[2497],{"type":48,"value":1032},{"type":42,"tag":290,"props":2499,"children":2500},{"style":297},[2501],{"type":48,"value":1037},{"type":42,"tag":290,"props":2503,"children":2504},{"style":302},[2505],{"type":48,"value":2235},{"type":42,"tag":290,"props":2507,"children":2508},{"style":297},[2509],{"type":48,"value":829},{"type":42,"tag":290,"props":2511,"children":2512},{"class":292,"line":1478},[2513,2518,2523],{"type":42,"tag":290,"props":2514,"children":2515},{"style":308},[2516],{"type":48,"value":2517},"  --tag",{"type":42,"tag":290,"props":2519,"children":2520},{"style":308},[2521],{"type":48,"value":2522}," env:prod",{"type":42,"tag":290,"props":2524,"children":2525},{"style":297},[2526],{"type":48,"value":829},{"type":42,"tag":290,"props":2528,"children":2530},{"class":292,"line":2529},5,[2531,2535],{"type":42,"tag":290,"props":2532,"children":2533},{"style":308},[2534],{"type":48,"value":2517},{"type":42,"tag":290,"props":2536,"children":2537},{"style":308},[2538],{"type":48,"value":2539}," team:search\n",{"type":42,"tag":51,"props":2541,"children":2542},{},[2543,2545,2551],{"type":48,"value":2544},"Tags are sent as ",{"type":42,"tag":74,"props":2546,"children":2548},{"className":2547},[],[2549],{"type":48,"value":2550},"metadata.tags",{"type":48,"value":2552}," in the API request. Setting tags replaces all existing tags on the project — include\nany existing tags the user wants to keep.",{"type":42,"tag":124,"props":2554,"children":2556},{"id":2555},"elasticsearch-search_lake-settings",[2557],{"type":48,"value":2558},"Elasticsearch search_lake settings",{"type":42,"tag":51,"props":2560,"children":2561},{},[2562,2564,2569],{"type":48,"value":2563},"For Elasticsearch projects, two fields control query performance and data caching in the Search AI Lake. Ingested data\nis stored in cost-efficient general storage. A cache layer on top provides faster search speed for recent and frequently\nqueried data — this cached data is considered ",{"type":42,"tag":96,"props":2565,"children":2566},{},[2567],{"type":48,"value":2568},"search-ready",{"type":48,"value":584},{"type":42,"tag":150,"props":2571,"children":2572},{},[2573,2593],{"type":42,"tag":154,"props":2574,"children":2575},{},[2576],{"type":42,"tag":158,"props":2577,"children":2578},{},[2579,2584,2589],{"type":42,"tag":162,"props":2580,"children":2581},{},[2582],{"type":48,"value":2583},"Flag",{"type":42,"tag":162,"props":2585,"children":2586},{},[2587],{"type":48,"value":2588},"Range",{"type":42,"tag":162,"props":2590,"children":2591},{},[2592],{"type":48,"value":176},{"type":42,"tag":178,"props":2594,"children":2595},{},[2596,2617],{"type":42,"tag":158,"props":2597,"children":2598},{},[2599,2607,2612],{"type":42,"tag":185,"props":2600,"children":2601},{},[2602],{"type":42,"tag":74,"props":2603,"children":2605},{"className":2604},[],[2606],{"type":48,"value":2293},{"type":42,"tag":185,"props":2608,"children":2609},{},[2610],{"type":48,"value":2611},"28–3000",{"type":42,"tag":185,"props":2613,"children":2614},{},[2615],{"type":48,"value":2616},"Query performance level. Higher values improve performance but increase cost",{"type":42,"tag":158,"props":2618,"children":2619},{},[2620,2628,2633],{"type":42,"tag":185,"props":2621,"children":2622},{},[2623],{"type":42,"tag":74,"props":2624,"children":2626},{"className":2625},[],[2627],{"type":48,"value":2300},{"type":42,"tag":185,"props":2629,"children":2630},{},[2631],{"type":48,"value":2632},"1–180",{"type":42,"tag":185,"props":2634,"children":2635},{},[2636],{"type":48,"value":2637},"Days of data eligible for boosted caching (default: 7)",{"type":42,"tag":2639,"props":2640,"children":2642},"h4",{"id":2641},"search-power",[2643],{"type":48,"value":2644},"Search Power",{"type":42,"tag":51,"props":2646,"children":2647},{},[2648],{"type":48,"value":2649},"Search Power controls the speed of searches by provisioning more or fewer query resources. Common presets (matching the\nCloud UI):",{"type":42,"tag":150,"props":2651,"children":2652},{},[2653,2674],{"type":42,"tag":154,"props":2654,"children":2655},{},[2656],{"type":42,"tag":158,"props":2657,"children":2658},{},[2659,2664,2669],{"type":42,"tag":162,"props":2660,"children":2661},{},[2662],{"type":48,"value":2663},"Value",{"type":42,"tag":162,"props":2665,"children":2666},{},[2667],{"type":48,"value":2668},"Preset",{"type":42,"tag":162,"props":2670,"children":2671},{},[2672],{"type":48,"value":2673},"Behavior",{"type":42,"tag":178,"props":2675,"children":2676},{},[2677,2695,2713],{"type":42,"tag":158,"props":2678,"children":2679},{},[2680,2685,2690],{"type":42,"tag":185,"props":2681,"children":2682},{},[2683],{"type":48,"value":2684},"28",{"type":42,"tag":185,"props":2686,"children":2687},{},[2688],{"type":48,"value":2689},"On-demand",{"type":42,"tag":185,"props":2691,"children":2692},{},[2693],{"type":48,"value":2694},"Autoscales with lower baseline. More variable latency, reduced max throughput",{"type":42,"tag":158,"props":2696,"children":2697},{},[2698,2703,2708],{"type":42,"tag":185,"props":2699,"children":2700},{},[2701],{"type":48,"value":2702},"100",{"type":42,"tag":185,"props":2704,"children":2705},{},[2706],{"type":48,"value":2707},"Performant",{"type":42,"tag":185,"props":2709,"children":2710},{},[2711],{"type":48,"value":2712},"Consistently low latency, autoscales for moderately high throughput",{"type":42,"tag":158,"props":2714,"children":2715},{},[2716,2721,2726],{"type":42,"tag":185,"props":2717,"children":2718},{},[2719],{"type":48,"value":2720},"250",{"type":42,"tag":185,"props":2722,"children":2723},{},[2724],{"type":48,"value":2725},"High availability",{"type":42,"tag":185,"props":2727,"children":2728},{},[2729],{"type":48,"value":2730},"Optimized for high-throughput scenarios, maintains low latency at high volumes",{"type":42,"tag":51,"props":2732,"children":2733},{},[2734],{"type":48,"value":2735},"When the user asks for a preset by name, map it to the corresponding value. Custom values within 28–3000 are also valid.",{"type":42,"tag":51,"props":2737,"children":2738},{},[2739,2751],{"type":42,"tag":96,"props":2740,"children":2741},{},[2742,2744,2750],{"type":48,"value":2743},"Warn the user about cost implications before updating ",{"type":42,"tag":74,"props":2745,"children":2747},{"className":2746},[],[2748],{"type":48,"value":2749},"search_power",{"type":48,"value":584},{"type":48,"value":2752}," Higher values increase VCU consumption and may\nresult in higher bills. Confirm the new value with the user before applying.",{"type":42,"tag":2639,"props":2754,"children":2756},{"id":2755},"search-boost-window",[2757],{"type":48,"value":2758},"Search Boost Window",{"type":42,"tag":51,"props":2760,"children":2761},{},[2762,2764,2769,2771,2777],{"type":48,"value":2763},"Non-time-series data is always search-ready. The boost window determines how much ",{"type":42,"tag":96,"props":2765,"children":2766},{},[2767],{"type":48,"value":2768},"time-series",{"type":48,"value":2770}," data (documents with a\n",{"type":42,"tag":74,"props":2772,"children":2774},{"className":2773},[],[2775],{"type":48,"value":2776},"@timestamp",{"type":48,"value":2778}," field) is also kept in the fast cache layer. Increasing the window means a larger portion of time-series\ndata becomes search-ready, which improves query speed for recent data but increases the search-ready data volume.",{"type":42,"tag":124,"props":2780,"children":2782},{"id":2781},"security-data-retention-settings",[2783],{"type":48,"value":2784},"Security data retention settings",{"type":42,"tag":51,"props":2786,"children":2787},{},[2788],{"type":48,"value":2789},"For security projects, two fields control how long data is retained in the Search AI Lake. Retention is configured per\ndata stream, but these project-level settings enforce global boundaries.",{"type":42,"tag":150,"props":2791,"children":2792},{},[2793,2812],{"type":42,"tag":154,"props":2794,"children":2795},{},[2796],{"type":42,"tag":158,"props":2797,"children":2798},{},[2799,2803,2808],{"type":42,"tag":162,"props":2800,"children":2801},{},[2802],{"type":48,"value":2583},{"type":42,"tag":162,"props":2804,"children":2805},{},[2806],{"type":48,"value":2807},"Unit",{"type":42,"tag":162,"props":2809,"children":2810},{},[2811],{"type":48,"value":176},{"type":42,"tag":178,"props":2813,"children":2814},{},[2815,2836],{"type":42,"tag":158,"props":2816,"children":2817},{},[2818,2826,2831],{"type":42,"tag":185,"props":2819,"children":2820},{},[2821],{"type":42,"tag":74,"props":2822,"children":2824},{"className":2823},[],[2825],{"type":48,"value":2307},{"type":42,"tag":185,"props":2827,"children":2828},{},[2829],{"type":48,"value":2830},"days",{"type":42,"tag":185,"props":2832,"children":2833},{},[2834],{"type":48,"value":2835},"Maximum retention period for any data stream in the project",{"type":42,"tag":158,"props":2837,"children":2838},{},[2839,2847,2851],{"type":42,"tag":185,"props":2840,"children":2841},{},[2842],{"type":42,"tag":74,"props":2843,"children":2845},{"className":2844},[],[2846],{"type":48,"value":2314},{"type":42,"tag":185,"props":2848,"children":2849},{},[2850],{"type":48,"value":2830},{"type":42,"tag":185,"props":2852,"children":2853},{},[2854],{"type":48,"value":2855},"Default retention applied to data streams without a custom one",{"type":42,"tag":64,"props":2857,"children":2858},{},[2859,2875],{"type":42,"tag":68,"props":2860,"children":2861},{},[2862,2867,2869,2874],{"type":42,"tag":96,"props":2863,"children":2864},{},[2865],{"type":48,"value":2866},"Maximum retention",{"type":48,"value":2868}," — enforces an upper bound across all data streams. When lowered, it replaces the retention for\nany stream that currently has a longer period. Data older than the new maximum is ",{"type":42,"tag":96,"props":2870,"children":2871},{},[2872],{"type":48,"value":2873},"permanently deleted",{"type":48,"value":584},{"type":42,"tag":68,"props":2876,"children":2877},{},[2878,2883],{"type":42,"tag":96,"props":2879,"children":2880},{},[2881],{"type":48,"value":2882},"Default retention",{"type":48,"value":2884}," — automatically applied to data streams that do not have a custom retention period set. Does not\naffect streams with an existing custom retention.",{"type":42,"tag":51,"props":2886,"children":2887},{},[2888,2900],{"type":42,"tag":96,"props":2889,"children":2890},{},[2891,2893,2899],{"type":48,"value":2892},"Warn the user before reducing ",{"type":42,"tag":74,"props":2894,"children":2896},{"className":2895},[],[2897],{"type":48,"value":2898},"max-retention-days",{"type":48,"value":584},{"type":48,"value":2901}," Lowering the maximum permanently deletes data older than the new\nlimit. Confirm the new value with the user before applying.",{"type":42,"tag":57,"props":2903,"children":2905},{"id":2904},"workflow-reset-project-credentials",[2906],{"type":48,"value":2907},"Workflow: Reset project credentials",{"type":42,"tag":51,"props":2909,"children":2910},{},[2911],{"type":42,"tag":96,"props":2912,"children":2913},{},[2914],{"type":48,"value":2915},"Always confirm with the user before resetting.",{"type":42,"tag":279,"props":2917,"children":2918},{"className":281,"code":1521,"language":283,"meta":284,"style":284},[2919],{"type":42,"tag":74,"props":2920,"children":2921},{"__ignoreMap":284},[2922,2941,2956],{"type":42,"tag":290,"props":2923,"children":2924},{"class":292,"line":293},[2925,2929,2933,2937],{"type":42,"tag":290,"props":2926,"children":2927},{"style":811},[2928],{"type":48,"value":814},{"type":42,"tag":290,"props":2930,"children":2931},{"style":308},[2932],{"type":48,"value":819},{"type":42,"tag":290,"props":2934,"children":2935},{"style":308},[2936],{"type":48,"value":1541},{"type":42,"tag":290,"props":2938,"children":2939},{"style":297},[2940],{"type":48,"value":829},{"type":42,"tag":290,"props":2942,"children":2943},{"class":292,"line":314},[2944,2948,2952],{"type":42,"tag":290,"props":2945,"children":2946},{"style":308},[2947],{"type":48,"value":837},{"type":42,"tag":290,"props":2949,"children":2950},{"style":308},[2951],{"type":48,"value":1009},{"type":42,"tag":290,"props":2953,"children":2954},{"style":297},[2955],{"type":48,"value":829},{"type":42,"tag":290,"props":2957,"children":2958},{"class":292,"line":1016},[2959,2963,2967,2971,2975],{"type":42,"tag":290,"props":2960,"children":2961},{"style":308},[2962],{"type":48,"value":1022},{"type":42,"tag":290,"props":2964,"children":2965},{"style":302},[2966],{"type":48,"value":1027},{"type":42,"tag":290,"props":2968,"children":2969},{"style":308},[2970],{"type":48,"value":1032},{"type":42,"tag":290,"props":2972,"children":2973},{"style":297},[2974],{"type":48,"value":1037},{"type":42,"tag":290,"props":2976,"children":2977},{"style":302},[2978],{"type":48,"value":1042},{"type":42,"tag":51,"props":2980,"children":2981},{},[2982,2983,2988],{"type":48,"value":1589},{"type":42,"tag":74,"props":2984,"children":2986},{"className":2985},[],[2987],{"type":48,"value":458},{"type":48,"value":2989}," automatically. Tell the user to open that file — do not display its\ncontents in chat.",{"type":42,"tag":57,"props":2991,"children":2993},{"id":2992},"workflow-delete-a-project",[2994],{"type":48,"value":2995},"Workflow: Delete a project",{"type":42,"tag":51,"props":2997,"children":2998},{},[2999],{"type":42,"tag":96,"props":3000,"children":3001},{},[3002],{"type":48,"value":3003},"Always confirm with the user before deleting.",{"type":42,"tag":279,"props":3005,"children":3007},{"className":281,"code":3006,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py delete \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n",[3008],{"type":42,"tag":74,"props":3009,"children":3010},{"__ignoreMap":284},[3011,3031,3046],{"type":42,"tag":290,"props":3012,"children":3013},{"class":292,"line":293},[3014,3018,3022,3027],{"type":42,"tag":290,"props":3015,"children":3016},{"style":811},[3017],{"type":48,"value":814},{"type":42,"tag":290,"props":3019,"children":3020},{"style":308},[3021],{"type":48,"value":819},{"type":42,"tag":290,"props":3023,"children":3024},{"style":308},[3025],{"type":48,"value":3026}," delete",{"type":42,"tag":290,"props":3028,"children":3029},{"style":297},[3030],{"type":48,"value":829},{"type":42,"tag":290,"props":3032,"children":3033},{"class":292,"line":314},[3034,3038,3042],{"type":42,"tag":290,"props":3035,"children":3036},{"style":308},[3037],{"type":48,"value":837},{"type":42,"tag":290,"props":3039,"children":3040},{"style":308},[3041],{"type":48,"value":1009},{"type":42,"tag":290,"props":3043,"children":3044},{"style":297},[3045],{"type":48,"value":829},{"type":42,"tag":290,"props":3047,"children":3048},{"class":292,"line":1016},[3049,3053,3057,3061,3065],{"type":42,"tag":290,"props":3050,"children":3051},{"style":308},[3052],{"type":48,"value":1022},{"type":42,"tag":290,"props":3054,"children":3055},{"style":302},[3056],{"type":48,"value":1027},{"type":42,"tag":290,"props":3058,"children":3059},{"style":308},[3060],{"type":48,"value":1032},{"type":42,"tag":290,"props":3062,"children":3063},{"style":297},[3064],{"type":48,"value":1037},{"type":42,"tag":290,"props":3066,"children":3067},{"style":302},[3068],{"type":48,"value":1042},{"type":42,"tag":57,"props":3070,"children":3072},{"id":3071},"workflow-resume-a-suspended-project",[3073],{"type":48,"value":3074},"Workflow: Resume a suspended project",{"type":42,"tag":51,"props":3076,"children":3077},{},[3078],{"type":48,"value":3079},"Projects can be automatically suspended after their trial period expires. Resume with:",{"type":42,"tag":279,"props":3081,"children":3083},{"className":281,"code":3082,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py resume \\\n  --type elasticsearch \\\n  --id \u003Cproject-id>\n",[3084],{"type":42,"tag":74,"props":3085,"children":3086},{"__ignoreMap":284},[3087,3107,3122],{"type":42,"tag":290,"props":3088,"children":3089},{"class":292,"line":293},[3090,3094,3098,3103],{"type":42,"tag":290,"props":3091,"children":3092},{"style":811},[3093],{"type":48,"value":814},{"type":42,"tag":290,"props":3095,"children":3096},{"style":308},[3097],{"type":48,"value":819},{"type":42,"tag":290,"props":3099,"children":3100},{"style":308},[3101],{"type":48,"value":3102}," resume",{"type":42,"tag":290,"props":3104,"children":3105},{"style":297},[3106],{"type":48,"value":829},{"type":42,"tag":290,"props":3108,"children":3109},{"class":292,"line":314},[3110,3114,3118],{"type":42,"tag":290,"props":3111,"children":3112},{"style":308},[3113],{"type":48,"value":837},{"type":42,"tag":290,"props":3115,"children":3116},{"style":308},[3117],{"type":48,"value":1009},{"type":42,"tag":290,"props":3119,"children":3120},{"style":297},[3121],{"type":48,"value":829},{"type":42,"tag":290,"props":3123,"children":3124},{"class":292,"line":1016},[3125,3129,3133,3137,3141],{"type":42,"tag":290,"props":3126,"children":3127},{"style":308},[3128],{"type":48,"value":1022},{"type":42,"tag":290,"props":3130,"children":3131},{"style":302},[3132],{"type":48,"value":1027},{"type":42,"tag":290,"props":3134,"children":3135},{"style":308},[3136],{"type":48,"value":1032},{"type":42,"tag":290,"props":3138,"children":3139},{"style":297},[3140],{"type":48,"value":1037},{"type":42,"tag":290,"props":3142,"children":3143},{"style":302},[3144],{"type":48,"value":1042},{"type":42,"tag":51,"props":3146,"children":3147},{},[3148,3150,3156,3158,3164],{"type":48,"value":3149},"After resuming, poll the project status until the phase changes from ",{"type":42,"tag":74,"props":3151,"children":3153},{"className":3152},[],[3154],{"type":48,"value":3155},"initializing",{"type":48,"value":3157}," to ",{"type":42,"tag":74,"props":3159,"children":3161},{"className":3160},[],[3162],{"type":48,"value":3163},"initialized",{"type":48,"value":584},{"type":42,"tag":57,"props":3166,"children":3168},{"id":3167},"examples",[3169],{"type":48,"value":3170},"Examples",{"type":42,"tag":124,"props":3172,"children":3174},{"id":3173},"list-all-security-projects",[3175],{"type":48,"value":3176},"List all security projects",{"type":42,"tag":279,"props":3178,"children":3180},{"className":281,"code":3179,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py list --type security\n",[3181],{"type":42,"tag":74,"props":3182,"children":3183},{"__ignoreMap":284},[3184],{"type":42,"tag":290,"props":3185,"children":3186},{"class":292,"line":293},[3187,3191,3195,3199,3204],{"type":42,"tag":290,"props":3188,"children":3189},{"style":811},[3190],{"type":48,"value":814},{"type":42,"tag":290,"props":3192,"children":3193},{"style":308},[3194],{"type":48,"value":819},{"type":42,"tag":290,"props":3196,"children":3197},{"style":308},[3198],{"type":48,"value":824},{"type":42,"tag":290,"props":3200,"children":3201},{"style":308},[3202],{"type":48,"value":3203}," --type",{"type":42,"tag":290,"props":3205,"children":3206},{"style":308},[3207],{"type":48,"value":3208}," security\n",{"type":42,"tag":124,"props":3210,"children":3212},{"id":3211},"update-search-power-on-an-elasticsearch-project",[3213],{"type":48,"value":3214},"Update search power on an Elasticsearch project",{"type":42,"tag":279,"props":3216,"children":3218},{"className":281,"code":3217,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345 \\\n  --search-power 500\n",[3219],{"type":42,"tag":74,"props":3220,"children":3221},{"__ignoreMap":284},[3222,3241,3256,3272],{"type":42,"tag":290,"props":3223,"children":3224},{"class":292,"line":293},[3225,3229,3233,3237],{"type":42,"tag":290,"props":3226,"children":3227},{"style":811},[3228],{"type":48,"value":814},{"type":42,"tag":290,"props":3230,"children":3231},{"style":308},[3232],{"type":48,"value":819},{"type":42,"tag":290,"props":3234,"children":3235},{"style":308},[3236],{"type":48,"value":2192},{"type":42,"tag":290,"props":3238,"children":3239},{"style":297},[3240],{"type":48,"value":829},{"type":42,"tag":290,"props":3242,"children":3243},{"class":292,"line":314},[3244,3248,3252],{"type":42,"tag":290,"props":3245,"children":3246},{"style":308},[3247],{"type":48,"value":837},{"type":42,"tag":290,"props":3249,"children":3250},{"style":308},[3251],{"type":48,"value":1009},{"type":42,"tag":290,"props":3253,"children":3254},{"style":297},[3255],{"type":48,"value":829},{"type":42,"tag":290,"props":3257,"children":3258},{"class":292,"line":1016},[3259,3263,3268],{"type":42,"tag":290,"props":3260,"children":3261},{"style":308},[3262],{"type":48,"value":1022},{"type":42,"tag":290,"props":3264,"children":3265},{"style":308},[3266],{"type":48,"value":3267}," abc123def456abc123def456abc12345",{"type":42,"tag":290,"props":3269,"children":3270},{"style":297},[3271],{"type":48,"value":829},{"type":42,"tag":290,"props":3273,"children":3274},{"class":292,"line":1478},[3275,3280],{"type":42,"tag":290,"props":3276,"children":3277},{"style":308},[3278],{"type":48,"value":3279},"  --search-power",{"type":42,"tag":290,"props":3281,"children":3283},{"style":3282},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[3284],{"type":48,"value":3285}," 500\n",{"type":42,"tag":124,"props":3287,"children":3289},{"id":3288},"set-data-retention-on-a-security-project",[3290],{"type":48,"value":3291},"Set data retention on a security project",{"type":42,"tag":279,"props":3293,"children":3295},{"className":281,"code":3294,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type security \\\n  --id abc123def456abc123def456abc12345 \\\n  --max-retention-days 396 \\\n  --default-retention-days 396\n",[3296],{"type":42,"tag":74,"props":3297,"children":3298},{"__ignoreMap":284},[3299,3318,3334,3349,3366],{"type":42,"tag":290,"props":3300,"children":3301},{"class":292,"line":293},[3302,3306,3310,3314],{"type":42,"tag":290,"props":3303,"children":3304},{"style":811},[3305],{"type":48,"value":814},{"type":42,"tag":290,"props":3307,"children":3308},{"style":308},[3309],{"type":48,"value":819},{"type":42,"tag":290,"props":3311,"children":3312},{"style":308},[3313],{"type":48,"value":2192},{"type":42,"tag":290,"props":3315,"children":3316},{"style":297},[3317],{"type":48,"value":829},{"type":42,"tag":290,"props":3319,"children":3320},{"class":292,"line":314},[3321,3325,3330],{"type":42,"tag":290,"props":3322,"children":3323},{"style":308},[3324],{"type":48,"value":837},{"type":42,"tag":290,"props":3326,"children":3327},{"style":308},[3328],{"type":48,"value":3329}," security",{"type":42,"tag":290,"props":3331,"children":3332},{"style":297},[3333],{"type":48,"value":829},{"type":42,"tag":290,"props":3335,"children":3336},{"class":292,"line":1016},[3337,3341,3345],{"type":42,"tag":290,"props":3338,"children":3339},{"style":308},[3340],{"type":48,"value":1022},{"type":42,"tag":290,"props":3342,"children":3343},{"style":308},[3344],{"type":48,"value":3267},{"type":42,"tag":290,"props":3346,"children":3347},{"style":297},[3348],{"type":48,"value":829},{"type":42,"tag":290,"props":3350,"children":3351},{"class":292,"line":1478},[3352,3357,3362],{"type":42,"tag":290,"props":3353,"children":3354},{"style":308},[3355],{"type":48,"value":3356},"  --max-retention-days",{"type":42,"tag":290,"props":3358,"children":3359},{"style":3282},[3360],{"type":48,"value":3361}," 396",{"type":42,"tag":290,"props":3363,"children":3364},{"style":297},[3365],{"type":48,"value":829},{"type":42,"tag":290,"props":3367,"children":3368},{"class":292,"line":2529},[3369,3374],{"type":42,"tag":290,"props":3370,"children":3371},{"style":308},[3372],{"type":48,"value":3373},"  --default-retention-days",{"type":42,"tag":290,"props":3375,"children":3376},{"style":3282},[3377],{"type":48,"value":3378}," 396\n",{"type":42,"tag":124,"props":3380,"children":3382},{"id":3381},"change-project-alias",[3383],{"type":48,"value":3384},"Change project alias",{"type":42,"tag":279,"props":3386,"children":3388},{"className":281,"code":3387,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345 \\\n  --alias \"prod-search\"\n",[3389],{"type":42,"tag":74,"props":3390,"children":3391},{"__ignoreMap":284},[3392,3411,3426,3441],{"type":42,"tag":290,"props":3393,"children":3394},{"class":292,"line":293},[3395,3399,3403,3407],{"type":42,"tag":290,"props":3396,"children":3397},{"style":811},[3398],{"type":48,"value":814},{"type":42,"tag":290,"props":3400,"children":3401},{"style":308},[3402],{"type":48,"value":819},{"type":42,"tag":290,"props":3404,"children":3405},{"style":308},[3406],{"type":48,"value":2192},{"type":42,"tag":290,"props":3408,"children":3409},{"style":297},[3410],{"type":48,"value":829},{"type":42,"tag":290,"props":3412,"children":3413},{"class":292,"line":314},[3414,3418,3422],{"type":42,"tag":290,"props":3415,"children":3416},{"style":308},[3417],{"type":48,"value":837},{"type":42,"tag":290,"props":3419,"children":3420},{"style":308},[3421],{"type":48,"value":1009},{"type":42,"tag":290,"props":3423,"children":3424},{"style":297},[3425],{"type":48,"value":829},{"type":42,"tag":290,"props":3427,"children":3428},{"class":292,"line":1016},[3429,3433,3437],{"type":42,"tag":290,"props":3430,"children":3431},{"style":308},[3432],{"type":48,"value":1022},{"type":42,"tag":290,"props":3434,"children":3435},{"style":308},[3436],{"type":48,"value":3267},{"type":42,"tag":290,"props":3438,"children":3439},{"style":297},[3440],{"type":48,"value":829},{"type":42,"tag":290,"props":3442,"children":3443},{"class":292,"line":1478},[3444,3448,3452,3456],{"type":42,"tag":290,"props":3445,"children":3446},{"style":308},[3447],{"type":48,"value":2409},{"type":42,"tag":290,"props":3449,"children":3450},{"style":302},[3451],{"type":48,"value":923},{"type":42,"tag":290,"props":3453,"children":3454},{"style":308},[3455],{"type":48,"value":2418},{"type":42,"tag":290,"props":3457,"children":3458},{"style":302},[3459],{"type":48,"value":393},{"type":42,"tag":124,"props":3461,"children":3463},{"id":3462},"tag-a-project-for-cost-tracking",[3464],{"type":48,"value":3465},"Tag a project for cost tracking",{"type":42,"tag":279,"props":3467,"children":3469},{"className":281,"code":3468,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type observability \\\n  --id abc123def456abc123def456abc12345 \\\n  --tag env:prod \\\n  --tag team:platform\n",[3470],{"type":42,"tag":74,"props":3471,"children":3472},{"__ignoreMap":284},[3473,3492,3508,3523,3538],{"type":42,"tag":290,"props":3474,"children":3475},{"class":292,"line":293},[3476,3480,3484,3488],{"type":42,"tag":290,"props":3477,"children":3478},{"style":811},[3479],{"type":48,"value":814},{"type":42,"tag":290,"props":3481,"children":3482},{"style":308},[3483],{"type":48,"value":819},{"type":42,"tag":290,"props":3485,"children":3486},{"style":308},[3487],{"type":48,"value":2192},{"type":42,"tag":290,"props":3489,"children":3490},{"style":297},[3491],{"type":48,"value":829},{"type":42,"tag":290,"props":3493,"children":3494},{"class":292,"line":314},[3495,3499,3504],{"type":42,"tag":290,"props":3496,"children":3497},{"style":308},[3498],{"type":48,"value":837},{"type":42,"tag":290,"props":3500,"children":3501},{"style":308},[3502],{"type":48,"value":3503}," observability",{"type":42,"tag":290,"props":3505,"children":3506},{"style":297},[3507],{"type":48,"value":829},{"type":42,"tag":290,"props":3509,"children":3510},{"class":292,"line":1016},[3511,3515,3519],{"type":42,"tag":290,"props":3512,"children":3513},{"style":308},[3514],{"type":48,"value":1022},{"type":42,"tag":290,"props":3516,"children":3517},{"style":308},[3518],{"type":48,"value":3267},{"type":42,"tag":290,"props":3520,"children":3521},{"style":297},[3522],{"type":48,"value":829},{"type":42,"tag":290,"props":3524,"children":3525},{"class":292,"line":1478},[3526,3530,3534],{"type":42,"tag":290,"props":3527,"children":3528},{"style":308},[3529],{"type":48,"value":2517},{"type":42,"tag":290,"props":3531,"children":3532},{"style":308},[3533],{"type":48,"value":2522},{"type":42,"tag":290,"props":3535,"children":3536},{"style":297},[3537],{"type":48,"value":829},{"type":42,"tag":290,"props":3539,"children":3540},{"class":292,"line":2529},[3541,3545],{"type":42,"tag":290,"props":3542,"children":3543},{"style":308},[3544],{"type":48,"value":2517},{"type":42,"tag":290,"props":3546,"children":3547},{"style":308},[3548],{"type":48,"value":3549}," team:platform\n",{"type":42,"tag":124,"props":3551,"children":3553},{"id":3552},"rename-an-observability-project",[3554],{"type":48,"value":3555},"Rename an observability project",{"type":42,"tag":279,"props":3557,"children":3559},{"className":281,"code":3558,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py update \\\n  --type observability \\\n  --id abc123def456abc123def456abc12345 \\\n  --name \"production-logs\"\n",[3560],{"type":42,"tag":74,"props":3561,"children":3562},{"__ignoreMap":284},[3563,3582,3597,3612],{"type":42,"tag":290,"props":3564,"children":3565},{"class":292,"line":293},[3566,3570,3574,3578],{"type":42,"tag":290,"props":3567,"children":3568},{"style":811},[3569],{"type":48,"value":814},{"type":42,"tag":290,"props":3571,"children":3572},{"style":308},[3573],{"type":48,"value":819},{"type":42,"tag":290,"props":3575,"children":3576},{"style":308},[3577],{"type":48,"value":2192},{"type":42,"tag":290,"props":3579,"children":3580},{"style":297},[3581],{"type":48,"value":829},{"type":42,"tag":290,"props":3583,"children":3584},{"class":292,"line":314},[3585,3589,3593],{"type":42,"tag":290,"props":3586,"children":3587},{"style":308},[3588],{"type":48,"value":837},{"type":42,"tag":290,"props":3590,"children":3591},{"style":308},[3592],{"type":48,"value":3503},{"type":42,"tag":290,"props":3594,"children":3595},{"style":297},[3596],{"type":48,"value":829},{"type":42,"tag":290,"props":3598,"children":3599},{"class":292,"line":1016},[3600,3604,3608],{"type":42,"tag":290,"props":3601,"children":3602},{"style":308},[3603],{"type":48,"value":1022},{"type":42,"tag":290,"props":3605,"children":3606},{"style":308},[3607],{"type":48,"value":3267},{"type":42,"tag":290,"props":3609,"children":3610},{"style":297},[3611],{"type":48,"value":829},{"type":42,"tag":290,"props":3613,"children":3614},{"class":292,"line":1478},[3615,3619,3623,3628],{"type":42,"tag":290,"props":3616,"children":3617},{"style":308},[3618],{"type":48,"value":918},{"type":42,"tag":290,"props":3620,"children":3621},{"style":302},[3622],{"type":48,"value":923},{"type":42,"tag":290,"props":3624,"children":3625},{"style":308},[3626],{"type":48,"value":3627},"production-logs",{"type":42,"tag":290,"props":3629,"children":3630},{"style":302},[3631],{"type":48,"value":393},{"type":42,"tag":124,"props":3633,"children":3635},{"id":3634},"connect-to-an-existing-project-credentials-on-file",[3636],{"type":48,"value":3637},"Connect to an existing project (credentials on file)",{"type":42,"tag":279,"props":3639,"children":3642},{"className":3640,"code":3641,"language":48,"meta":284},[694],"User: I want to run a query against my search project \"prod-search\"\nAgent: Let me find that project.\n       [runs: list --type elasticsearch]\n       I found \"prod-search\" (ID: abc123...). Loading saved credentials...\n       [runs: eval $(load-credentials --name prod-search)]\n       Credentials loaded. Verifying...\n       [runs: curl -H \"Authorization: ApiKey ...\" \"${ELASTICSEARCH_URL}\u002F_security\u002F_authenticate\"]\n       Verified — authenticated as user \"my-service\" via API key. You're all set.\n",[3643],{"type":42,"tag":74,"props":3644,"children":3645},{"__ignoreMap":284},[3646],{"type":48,"value":3641},{"type":42,"tag":124,"props":3648,"children":3650},{"id":3649},"connect-to-a-project-no-saved-credentials",[3651],{"type":48,"value":3652},"Connect to a project (no saved credentials)",{"type":42,"tag":279,"props":3654,"children":3657},{"className":3655,"code":3656,"language":48,"meta":284},[694],"User: let's ingest some logs into my o11y project \"siem-prod\"\nAgent: Let me find that project.\n       [runs: list --type observability]\n       Found \"siem-prod\" (ID: def456...). No saved credentials found for this project.\n       [runs: get --type observability --id def456...]\n       Endpoints set. Since there are no Elasticsearch credentials on file, I can reset the\n       admin bootstrap password to get initial access. Shall I proceed?\nUser: yes\nAgent: [runs: reset-credentials --type observability --id def456...]\n       Credentials saved to .elastic-credentials — open that file to retrieve the password.\n       [runs: eval $(load-credentials --name siem-prod --include-admin)]\n       Admin credentials loaded for API key creation. Creating a scoped Elasticsearch API key\n       now — what access does it need?\nUser: read-only on logs-*\nAgent: [creates scoped API key via elasticsearch-authn using admin credentials]\n       [appends API key to .elastic-credentials with project header]\n       [runs: eval $(load-credentials --name siem-prod)]\n       [verifies against ELASTICSEARCH_URL]\n       API key created and verified. Admin credentials removed from environment.\n",[3658],{"type":42,"tag":74,"props":3659,"children":3660},{"__ignoreMap":284},[3661],{"type":48,"value":3656},{"type":42,"tag":124,"props":3663,"children":3665},{"id":3664},"delete-a-project-after-confirmation",[3666],{"type":48,"value":3667},"Delete a project after confirmation",{"type":42,"tag":279,"props":3669,"children":3672},{"className":3670,"code":3671,"language":48,"meta":284},[694],"User: delete my elasticsearch project abc123...\nAgent: Are you sure you want to delete project abc123...? This cannot be undone.\nUser: yes\n",[3673],{"type":42,"tag":74,"props":3674,"children":3675},{"__ignoreMap":284},[3676],{"type":48,"value":3671},{"type":42,"tag":279,"props":3678,"children":3680},{"className":281,"code":3679,"language":283,"meta":284,"style":284},"python3 skills\u002Fcloud\u002Fmanage-project\u002Fscripts\u002Fmanage-project.py delete \\\n  --type elasticsearch \\\n  --id abc123def456abc123def456abc12345\n",[3681],{"type":42,"tag":74,"props":3682,"children":3683},{"__ignoreMap":284},[3684,3703,3718],{"type":42,"tag":290,"props":3685,"children":3686},{"class":292,"line":293},[3687,3691,3695,3699],{"type":42,"tag":290,"props":3688,"children":3689},{"style":811},[3690],{"type":48,"value":814},{"type":42,"tag":290,"props":3692,"children":3693},{"style":308},[3694],{"type":48,"value":819},{"type":42,"tag":290,"props":3696,"children":3697},{"style":308},[3698],{"type":48,"value":3026},{"type":42,"tag":290,"props":3700,"children":3701},{"style":297},[3702],{"type":48,"value":829},{"type":42,"tag":290,"props":3704,"children":3705},{"class":292,"line":314},[3706,3710,3714],{"type":42,"tag":290,"props":3707,"children":3708},{"style":308},[3709],{"type":48,"value":837},{"type":42,"tag":290,"props":3711,"children":3712},{"style":308},[3713],{"type":48,"value":1009},{"type":42,"tag":290,"props":3715,"children":3716},{"style":297},[3717],{"type":48,"value":829},{"type":42,"tag":290,"props":3719,"children":3720},{"class":292,"line":1016},[3721,3725],{"type":42,"tag":290,"props":3722,"children":3723},{"style":308},[3724],{"type":48,"value":1022},{"type":42,"tag":290,"props":3726,"children":3727},{"style":308},[3728],{"type":48,"value":3729}," abc123def456abc123def456abc12345\n",{"type":42,"tag":57,"props":3731,"children":3733},{"id":3732},"guidelines",[3734],{"type":48,"value":3735},"Guidelines",{"type":42,"tag":64,"props":3737,"children":3738},{},[3739,3758,3771,3776,3781,3786,3798,3810,3815],{"type":42,"tag":68,"props":3740,"children":3741},{},[3742,3744,3749,3751,3756],{"type":48,"value":3743},"Run the ",{"type":42,"tag":74,"props":3745,"children":3747},{"className":3746},[],[3748],{"type":48,"value":87},{"type":48,"value":3750}," skill first if ",{"type":42,"tag":74,"props":3752,"children":3754},{"className":3753},[],[3755],{"type":48,"value":79},{"type":48,"value":3757}," is not set.",{"type":42,"tag":68,"props":3759,"children":3760},{},[3761,3763,3769],{"type":48,"value":3762},"Use the ",{"type":42,"tag":74,"props":3764,"children":3766},{"className":3765},[],[3767],{"type":48,"value":3768},"cloud-create-project",{"type":48,"value":3770}," skill to create new projects — this skill handles existing projects only.",{"type":42,"tag":68,"props":3772,"children":3773},{},[3774],{"type":48,"value":3775},"When the user refers to a project the agent did not create, follow the \"Connect to an existing project\" workflow.",{"type":42,"tag":68,"props":3777,"children":3778},{},[3779],{"type":48,"value":3780},"Deletion is permanent. Always confirm with the user before proceeding.",{"type":42,"tag":68,"props":3782,"children":3783},{},[3784],{"type":48,"value":3785},"After resetting credentials, remind the user to update any stored passwords or environment variables.",{"type":42,"tag":68,"props":3787,"children":3788},{},[3789,3791,3796],{"type":48,"value":3790},"Warn about cost implications before increasing ",{"type":42,"tag":74,"props":3792,"children":3794},{"className":3793},[],[3795],{"type":48,"value":2749},{"type":48,"value":3797},". Confirm the new value with the user first.",{"type":42,"tag":68,"props":3799,"children":3800},{},[3801,3803,3808],{"type":48,"value":3802},"Warn about data loss before reducing ",{"type":42,"tag":74,"props":3804,"children":3806},{"className":3805},[],[3807],{"type":48,"value":2898},{"type":48,"value":3809},". Data older than the new maximum is permanently deleted.",{"type":42,"tag":68,"props":3811,"children":3812},{},[3813],{"type":48,"value":3814},"Warn users that changing a project alias changes all endpoint URLs, which breaks existing clients.",{"type":42,"tag":68,"props":3816,"children":3817},{},[3818,3820,3826],{"type":48,"value":3819},"Setting tags replaces all existing tags. Retrieve current tags with ",{"type":42,"tag":74,"props":3821,"children":3823},{"className":3822},[],[3824],{"type":48,"value":3825},"get",{"type":48,"value":3827}," first and include any the user wants to\nkeep.",{"type":42,"tag":57,"props":3829,"children":3831},{"id":3830},"script-reference",[3832],{"type":48,"value":3833},"Script reference",{"type":42,"tag":150,"props":3835,"children":3836},{},[3837,3852],{"type":42,"tag":154,"props":3838,"children":3839},{},[3840],{"type":42,"tag":158,"props":3841,"children":3842},{},[3843,3848],{"type":42,"tag":162,"props":3844,"children":3845},{},[3846],{"type":48,"value":3847},"Command",{"type":42,"tag":162,"props":3849,"children":3850},{},[3851],{"type":48,"value":176},{"type":42,"tag":178,"props":3853,"children":3854},{},[3855,3871,3887,3904,3920,3937,3954],{"type":42,"tag":158,"props":3856,"children":3857},{},[3858,3866],{"type":42,"tag":185,"props":3859,"children":3860},{},[3861],{"type":42,"tag":74,"props":3862,"children":3864},{"className":3863},[],[3865],{"type":48,"value":616},{"type":42,"tag":185,"props":3867,"children":3868},{},[3869],{"type":48,"value":3870},"List projects by type",{"type":42,"tag":158,"props":3872,"children":3873},{},[3874,3882],{"type":42,"tag":185,"props":3875,"children":3876},{},[3877],{"type":42,"tag":74,"props":3878,"children":3880},{"className":3879},[],[3881],{"type":48,"value":3825},{"type":42,"tag":185,"props":3883,"children":3884},{},[3885],{"type":48,"value":3886},"Get project details by ID",{"type":42,"tag":158,"props":3888,"children":3889},{},[3890,3899],{"type":42,"tag":185,"props":3891,"children":3892},{},[3893],{"type":42,"tag":74,"props":3894,"children":3896},{"className":3895},[],[3897],{"type":48,"value":3898},"update",{"type":42,"tag":185,"props":3900,"children":3901},{},[3902],{"type":48,"value":3903},"Update project name, alias, tags, or search_lake settings",{"type":42,"tag":158,"props":3905,"children":3906},{},[3907,3915],{"type":42,"tag":185,"props":3908,"children":3909},{},[3910],{"type":42,"tag":74,"props":3911,"children":3913},{"className":3912},[],[3914],{"type":48,"value":533},{"type":42,"tag":185,"props":3916,"children":3917},{},[3918],{"type":48,"value":3919},"Reset project credentials (new password)",{"type":42,"tag":158,"props":3921,"children":3922},{},[3923,3932],{"type":42,"tag":185,"props":3924,"children":3925},{},[3926],{"type":42,"tag":74,"props":3927,"children":3929},{"className":3928},[],[3930],{"type":48,"value":3931},"delete",{"type":42,"tag":185,"props":3933,"children":3934},{},[3935],{"type":48,"value":3936},"Delete a project",{"type":42,"tag":158,"props":3938,"children":3939},{},[3940,3949],{"type":42,"tag":185,"props":3941,"children":3942},{},[3943],{"type":42,"tag":74,"props":3944,"children":3946},{"className":3945},[],[3947],{"type":48,"value":3948},"resume",{"type":42,"tag":185,"props":3950,"children":3951},{},[3952],{"type":48,"value":3953},"Resume a suspended project",{"type":42,"tag":158,"props":3955,"children":3956},{},[3957,3965],{"type":42,"tag":185,"props":3958,"children":3959},{},[3960],{"type":42,"tag":74,"props":3961,"children":3963},{"className":3962},[],[3964],{"type":48,"value":541},{"type":42,"tag":185,"props":3966,"children":3967},{},[3968,3970],{"type":48,"value":3969},"Load a project's saved credentials from ",{"type":42,"tag":74,"props":3971,"children":3973},{"className":3972},[],[3974],{"type":48,"value":458},{"type":42,"tag":150,"props":3976,"children":3977},{},[3978,3997],{"type":42,"tag":154,"props":3979,"children":3980},{},[3981],{"type":42,"tag":158,"props":3982,"children":3983},{},[3984,3988,3993],{"type":42,"tag":162,"props":3985,"children":3986},{},[3987],{"type":48,"value":2583},{"type":42,"tag":162,"props":3989,"children":3990},{},[3991],{"type":48,"value":3992},"Commands",{"type":42,"tag":162,"props":3994,"children":3995},{},[3996],{"type":48,"value":176},{"type":42,"tag":178,"props":3998,"children":3999},{},[4000,4038,4059,4080,4100,4120,4140,4160,4180,4200,4220],{"type":42,"tag":158,"props":4001,"children":4002},{},[4003,4011,4016],{"type":42,"tag":185,"props":4004,"children":4005},{},[4006],{"type":42,"tag":74,"props":4007,"children":4009},{"className":4008},[],[4010],{"type":48,"value":600},{"type":42,"tag":185,"props":4012,"children":4013},{},[4014],{"type":48,"value":4015},"list, get, update, reset-credentials, delete, resume",{"type":42,"tag":185,"props":4017,"children":4018},{},[4019,4021,4026,4027,4032,4033],{"type":48,"value":4020},"Project type: ",{"type":42,"tag":74,"props":4022,"children":4024},{"className":4023},[],[4025],{"type":48,"value":21},{"type":48,"value":2272},{"type":42,"tag":74,"props":4028,"children":4030},{"className":4029},[],[4031],{"type":48,"value":776},{"type":48,"value":2272},{"type":42,"tag":74,"props":4034,"children":4036},{"className":4035},[],[4037],{"type":48,"value":793},{"type":42,"tag":158,"props":4039,"children":4040},{},[4041,4049,4054],{"type":42,"tag":185,"props":4042,"children":4043},{},[4044],{"type":42,"tag":74,"props":4045,"children":4047},{"className":4046},[],[4048],{"type":48,"value":608},{"type":42,"tag":185,"props":4050,"children":4051},{},[4052],{"type":48,"value":4053},"get, update, reset-credentials, delete, resume, load-credentials",{"type":42,"tag":185,"props":4055,"children":4056},{},[4057],{"type":48,"value":4058},"Project ID",{"type":42,"tag":158,"props":4060,"children":4061},{},[4062,4070,4075],{"type":42,"tag":185,"props":4063,"children":4064},{},[4065],{"type":42,"tag":74,"props":4066,"children":4068},{"className":4067},[],[4069],{"type":48,"value":2270},{"type":42,"tag":185,"props":4071,"children":4072},{},[4073],{"type":48,"value":4074},"update, load-credentials",{"type":42,"tag":185,"props":4076,"children":4077},{},[4078],{"type":48,"value":4079},"Project name (update: new name; load-credentials: lookup)",{"type":42,"tag":158,"props":4081,"children":4082},{},[4083,4091,4095],{"type":42,"tag":185,"props":4084,"children":4085},{},[4086],{"type":42,"tag":74,"props":4087,"children":4089},{"className":4088},[],[4090],{"type":48,"value":2278},{"type":42,"tag":185,"props":4092,"children":4093},{},[4094],{"type":48,"value":3898},{"type":42,"tag":185,"props":4096,"children":4097},{},[4098],{"type":48,"value":4099},"New project alias",{"type":42,"tag":158,"props":4101,"children":4102},{},[4103,4111,4115],{"type":42,"tag":185,"props":4104,"children":4105},{},[4106],{"type":42,"tag":74,"props":4107,"children":4109},{"className":4108},[],[4110],{"type":48,"value":2285},{"type":42,"tag":185,"props":4112,"children":4113},{},[4114],{"type":48,"value":3898},{"type":42,"tag":185,"props":4116,"children":4117},{},[4118],{"type":48,"value":4119},"Tag as KEY:VALUE (repeatable, replaces all tags)",{"type":42,"tag":158,"props":4121,"children":4122},{},[4123,4131,4135],{"type":42,"tag":185,"props":4124,"children":4125},{},[4126],{"type":42,"tag":74,"props":4127,"children":4129},{"className":4128},[],[4130],{"type":48,"value":2293},{"type":42,"tag":185,"props":4132,"children":4133},{},[4134],{"type":48,"value":3898},{"type":42,"tag":185,"props":4136,"children":4137},{},[4138],{"type":48,"value":4139},"Search power 28–3000 (elasticsearch only)",{"type":42,"tag":158,"props":4141,"children":4142},{},[4143,4151,4155],{"type":42,"tag":185,"props":4144,"children":4145},{},[4146],{"type":42,"tag":74,"props":4147,"children":4149},{"className":4148},[],[4150],{"type":48,"value":2300},{"type":42,"tag":185,"props":4152,"children":4153},{},[4154],{"type":48,"value":3898},{"type":42,"tag":185,"props":4156,"children":4157},{},[4158],{"type":48,"value":4159},"Boost window 1–180 days (elasticsearch only)",{"type":42,"tag":158,"props":4161,"children":4162},{},[4163,4171,4175],{"type":42,"tag":185,"props":4164,"children":4165},{},[4166],{"type":42,"tag":74,"props":4167,"children":4169},{"className":4168},[],[4170],{"type":48,"value":2307},{"type":42,"tag":185,"props":4172,"children":4173},{},[4174],{"type":48,"value":3898},{"type":42,"tag":185,"props":4176,"children":4177},{},[4178],{"type":48,"value":4179},"Max data retention in days (security only)",{"type":42,"tag":158,"props":4181,"children":4182},{},[4183,4191,4195],{"type":42,"tag":185,"props":4184,"children":4185},{},[4186],{"type":42,"tag":74,"props":4187,"children":4189},{"className":4188},[],[4190],{"type":48,"value":2314},{"type":42,"tag":185,"props":4192,"children":4193},{},[4194],{"type":48,"value":3898},{"type":42,"tag":185,"props":4196,"children":4197},{},[4198],{"type":48,"value":4199},"Default data retention in days (security only)",{"type":42,"tag":158,"props":4201,"children":4202},{},[4203,4211,4215],{"type":42,"tag":185,"props":4204,"children":4205},{},[4206],{"type":42,"tag":74,"props":4207,"children":4209},{"className":4208},[],[4210],{"type":48,"value":549},{"type":42,"tag":185,"props":4212,"children":4213},{},[4214],{"type":48,"value":541},{"type":42,"tag":185,"props":4216,"children":4217},{},[4218],{"type":48,"value":4219},"Include admin username\u002Fpassword (API key bootstrapping only)",{"type":42,"tag":158,"props":4221,"children":4222},{},[4223,4232,4236],{"type":42,"tag":185,"props":4224,"children":4225},{},[4226],{"type":42,"tag":74,"props":4227,"children":4229},{"className":4228},[],[4230],{"type":48,"value":4231},"--wait-seconds",{"type":42,"tag":185,"props":4233,"children":4234},{},[4235],{"type":48,"value":533},{"type":42,"tag":185,"props":4237,"children":4238},{},[4239],{"type":48,"value":4240},"Seconds to wait for credential propagation (0 to skip)",{"type":42,"tag":57,"props":4242,"children":4244},{"id":4243},"environment-variables",[4245],{"type":48,"value":4246},"Environment variables",{"type":42,"tag":150,"props":4248,"children":4249},{},[4250,4268],{"type":42,"tag":154,"props":4251,"children":4252},{},[4253],{"type":42,"tag":158,"props":4254,"children":4255},{},[4256,4260,4264],{"type":42,"tag":162,"props":4257,"children":4258},{},[4259],{"type":48,"value":166},{"type":42,"tag":162,"props":4261,"children":4262},{},[4263],{"type":48,"value":171},{"type":42,"tag":162,"props":4265,"children":4266},{},[4267],{"type":48,"value":176},{"type":42,"tag":178,"props":4269,"children":4270},{},[4271,4291,4317,4338,4359,4380,4401],{"type":42,"tag":158,"props":4272,"children":4273},{},[4274,4282,4286],{"type":42,"tag":185,"props":4275,"children":4276},{},[4277],{"type":42,"tag":74,"props":4278,"children":4280},{"className":4279},[],[4281],{"type":48,"value":79},{"type":42,"tag":185,"props":4283,"children":4284},{},[4285],{"type":48,"value":197},{"type":42,"tag":185,"props":4287,"children":4288},{},[4289],{"type":48,"value":4290},"Elastic Cloud API key (project management operations)",{"type":42,"tag":158,"props":4292,"children":4293},{},[4294,4302,4306],{"type":42,"tag":185,"props":4295,"children":4296},{},[4297],{"type":42,"tag":74,"props":4298,"children":4300},{"className":4299},[],[4301],{"type":48,"value":214},{"type":42,"tag":185,"props":4303,"children":4304},{},[4305],{"type":48,"value":219},{"type":42,"tag":185,"props":4307,"children":4308},{},[4309,4310,4315],{"type":48,"value":224},{"type":42,"tag":74,"props":4311,"children":4313},{"className":4312},[],[4314],{"type":48,"value":230},{"type":48,"value":4316},")",{"type":42,"tag":158,"props":4318,"children":4319},{},[4320,4328,4333],{"type":42,"tag":185,"props":4321,"children":4322},{},[4323],{"type":42,"tag":74,"props":4324,"children":4326},{"className":4325},[],[4327],{"type":48,"value":1322},{"type":42,"tag":185,"props":4329,"children":4330},{},[4331],{"type":48,"value":4332},"Output",{"type":42,"tag":185,"props":4334,"children":4335},{},[4336],{"type":48,"value":4337},"Elasticsearch URL (set after resolving a project for downstream skills)",{"type":42,"tag":158,"props":4339,"children":4340},{},[4341,4350,4354],{"type":42,"tag":185,"props":4342,"children":4343},{},[4344],{"type":42,"tag":74,"props":4345,"children":4347},{"className":4346},[],[4348],{"type":48,"value":4349},"KIBANA_URL",{"type":42,"tag":185,"props":4351,"children":4352},{},[4353],{"type":48,"value":4332},{"type":42,"tag":185,"props":4355,"children":4356},{},[4357],{"type":48,"value":4358},"Kibana URL (set after resolving a project for downstream skills)",{"type":42,"tag":158,"props":4360,"children":4361},{},[4362,4371,4375],{"type":42,"tag":185,"props":4363,"children":4364},{},[4365],{"type":42,"tag":74,"props":4366,"children":4368},{"className":4367},[],[4369],{"type":48,"value":4370},"APM_URL",{"type":42,"tag":185,"props":4372,"children":4373},{},[4374],{"type":48,"value":4332},{"type":42,"tag":185,"props":4376,"children":4377},{},[4378],{"type":48,"value":4379},"APM endpoint (observability projects only)",{"type":42,"tag":158,"props":4381,"children":4382},{},[4383,4392,4396],{"type":42,"tag":185,"props":4384,"children":4385},{},[4386],{"type":42,"tag":74,"props":4387,"children":4389},{"className":4388},[],[4390],{"type":48,"value":4391},"INGEST_URL",{"type":42,"tag":185,"props":4393,"children":4394},{},[4395],{"type":48,"value":4332},{"type":42,"tag":185,"props":4397,"children":4398},{},[4399],{"type":48,"value":4400},"OTLP ingest endpoint (observability and security projects)",{"type":42,"tag":158,"props":4402,"children":4403},{},[4404,4412,4416],{"type":42,"tag":185,"props":4405,"children":4406},{},[4407],{"type":42,"tag":74,"props":4408,"children":4410},{"className":4409},[],[4411],{"type":48,"value":567},{"type":42,"tag":185,"props":4413,"children":4414},{},[4415],{"type":48,"value":4332},{"type":42,"tag":185,"props":4417,"children":4418},{},[4419],{"type":48,"value":4420},"Elasticsearch API key (for stack-level operations)",{"type":42,"tag":57,"props":4422,"children":4424},{"id":4423},"additional-resources",[4425],{"type":48,"value":4426},"Additional resources",{"type":42,"tag":64,"props":4428,"children":4429},{},[4430,4442],{"type":42,"tag":68,"props":4431,"children":4432},{},[4433,4435],{"type":48,"value":4434},"For full API details, request\u002Fresponse schemas, and project-type options, see the\n",{"type":42,"tag":255,"props":4436,"children":4439},{"href":4437,"rel":4438},"https:\u002F\u002Fwww.elastic.co\u002Fdocs\u002Fapi\u002Fdoc\u002Felastic-cloud-serverless",[259],[4440],{"type":48,"value":4441},"Serverless Projects API",{"type":42,"tag":68,"props":4443,"children":4444},{},[4445,4447],{"type":48,"value":4446},"For official documentation on Search AI Lake settings, data retention, and project features, see\n",{"type":42,"tag":255,"props":4448,"children":4451},{"href":4449,"rel":4450},"https:\u002F\u002Fwww.elastic.co\u002Fdocs\u002Fdeploy-manage\u002Fdeploy\u002Felastic-cloud\u002Fproject-settings",[259],[4452],{"type":48,"value":4453},"Project settings",{"type":42,"tag":4455,"props":4456,"children":4457},"style",{},[4458],{"type":48,"value":4459},"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":4461,"total":4617},[4462,4481,4498,4511,4524,4535,4541,4555,4566,4581,4591,4604],{"slug":4463,"name":4463,"fn":4464,"description":4465,"org":4466,"tags":4467,"stars":4478,"repoUrl":4479,"updatedAt":4480},"accessing-benchmark-results","retrieve and analyze Rally benchmark results","Retrieve Rally benchmark results from an external Elasticsearch metrics store. Use to list past races, get a single race's overall (per-task) results, chart a metric's trend across multiple runs, compare two races, or check whether a run converged — e.g. \"show me recent geonames races\", \"what's the service_time trend for nyc_taxis over the last 30 days?\", \"compare these two race-ids\". Applies when datastore.type = elasticsearch is set in ~\u002F.rally\u002Frally.ini.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4468,4471,4474,4475],{"name":4469,"slug":4470,"type":15},"Analytics","analytics",{"name":4472,"slug":4473,"type":15},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":15},{"name":4476,"slug":4477,"type":15},"Performance","performance",2027,"https:\u002F\u002Fgithub.com\u002Felastic\u002Frally","2026-07-12T07:46:38.54144",{"slug":4482,"name":4482,"fn":4483,"description":4484,"org":4485,"tags":4486,"stars":4478,"repoUrl":4479,"updatedAt":4497},"developing-rally","develop and debug Rally source code","Work on Rally's own codebase, not running benchmarks with it. Use when setting up the dev environment, running Rally's tests or linters, navigating its source, debugging Rally's own code, or making changes to Rally itself.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4487,4490,4491,4494],{"name":4488,"slug":4489,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":4492,"slug":4493,"type":15},"Engineering","engineering",{"name":4495,"slug":4496,"type":15},"Local Development","local-development","2026-07-12T07:46:35.976807",{"slug":4499,"name":4499,"fn":4500,"description":4501,"org":4502,"tags":4503,"stars":4478,"repoUrl":4479,"updatedAt":4510},"running-benchmarks","run Rally benchmarks against Elasticsearch","Run Rally benchmarks (races) against Elasticsearch — an existing\u002Fexternal cluster or a Rally-provisioned distribution — and read the summary report. Use when running a race (any pipeline, track, challenge, target-hosts, or auth) or when interpreting throughput, latency, and service_time results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4504,4505,4506,4507],{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":4476,"slug":4477,"type":15},{"name":4508,"slug":4509,"type":15},"Testing","testing","2026-07-12T07:46:37.277964",{"slug":4512,"name":4512,"fn":4513,"description":4514,"org":4515,"tags":4516,"stars":22,"repoUrl":23,"updatedAt":4523},"cloud-access-management","manage Elastic Cloud organization access","Manage Elastic Cloud organization access: invite users, assign roles to Serverless projects, and create or revoke Cloud API keys. Use when granting, modifying, or auditing user access.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4517,4518,4519,4520],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":4521,"slug":4522,"type":15},"Permissions","permissions","2026-07-12T07:46:44.946285",{"slug":3768,"name":3768,"fn":4525,"description":4526,"org":4527,"tags":4528,"stars":22,"repoUrl":23,"updatedAt":4534},"create Elastic Cloud Serverless projects","Creates Elastic Cloud Serverless projects (Elasticsearch, Observability, or Security) via the REST API, saves credentials to file, and bootstraps a scoped Elasticsearch API key. Use when creating a new serverless project, provisioning a search or observability environment, or spinning up a new Elastic Cloud project.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4529,4530,4533],{"name":17,"slug":18,"type":15},{"name":4531,"slug":4532,"type":15},"Deployment","deployment",{"name":20,"slug":21,"type":15},"2026-07-12T07:46:42.353362",{"slug":4,"name":4,"fn":5,"description":6,"org":4536,"tags":4537,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4538,4539,4540],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":4542,"name":4542,"fn":4543,"description":4544,"org":4545,"tags":4546,"stars":22,"repoUrl":23,"updatedAt":4554},"cloud-network-security","manage Elastic Cloud network security","Manage Serverless network security (traffic filters): create, update, and delete IP filters and AWS PrivateLink VPC filters. Use when restricting network access or configuring private connectivity.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4547,4548,4549,4552],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":4550,"slug":4551,"type":15},"Networking","networking",{"name":4553,"slug":793,"type":15},"Security","2026-07-12T07:46:43.675992",{"slug":87,"name":87,"fn":4556,"description":4557,"org":4558,"tags":4559,"stars":22,"repoUrl":23,"updatedAt":4565},"configure Elastic Cloud authentication","Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4560,4563,4564],{"name":4561,"slug":4562,"type":15},"Authentication","authentication",{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T07:46:39.783105",{"slug":4567,"name":4567,"fn":4568,"description":4569,"org":4570,"tags":4571,"stars":22,"repoUrl":23,"updatedAt":4580},"elasticsearch-audit","configure Elasticsearch security audit logs","Enable, configure, and query Elasticsearch security audit logs. Use when the task involves audit logging setup, event filtering, or investigating security incidents like failed logins.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4572,4575,4576,4579],{"name":4573,"slug":4574,"type":15},"Audit","audit",{"name":20,"slug":21,"type":15},{"name":4577,"slug":4578,"type":15},"Logs","logs",{"name":4553,"slug":793,"type":15},"2026-07-12T07:47:35.092599",{"slug":575,"name":575,"fn":4582,"description":4583,"org":4584,"tags":4585,"stars":22,"repoUrl":23,"updatedAt":4590},"configure Elasticsearch authentication realms","Authenticate to Elasticsearch using native, file-based, LDAP\u002FAD, SAML, OIDC, Kerberos, JWT, or certificate realms. Use when connecting with credentials, choosing a realm, or managing API keys. Assumes the target realms are already configured.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4586,4587,4588,4589],{"name":4561,"slug":4562,"type":15},{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":4553,"slug":793,"type":15},"2026-07-12T07:47:41.474547",{"slug":4592,"name":4592,"fn":4593,"description":4594,"org":4595,"tags":4596,"stars":22,"repoUrl":23,"updatedAt":4603},"elasticsearch-authz","manage Elasticsearch RBAC and security roles","Manage Elasticsearch RBAC: native users, roles, role mappings, document- and field-level security. Use when creating users or roles, assigning privileges, or mapping external realms like LDAP\u002FSAML.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4597,4598,4599,4602],{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":4600,"slug":4601,"type":15},"RBAC","rbac",{"name":4553,"slug":793,"type":15},"2026-07-12T07:47:36.394177",{"slug":4605,"name":4605,"fn":4606,"description":4607,"org":4608,"tags":4609,"stars":22,"repoUrl":23,"updatedAt":4616},"elasticsearch-esql","query Elasticsearch data with ES|QL","Execute ES|QL (Elasticsearch Query Language) queries, use when the user wants to query Elasticsearch data, analyze logs, aggregate metrics, explore data, or create charts and dashboards from ES|QL results.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4610,4611,4612,4613],{"name":4469,"slug":4470,"type":15},{"name":4472,"slug":4473,"type":15},{"name":20,"slug":21,"type":15},{"name":4614,"slug":4615,"type":15},"SQL","sql","2026-07-12T07:47:40.249533",86,{"items":4619,"total":4666},[4620,4627,4633,4639,4646,4652,4659],{"slug":4512,"name":4512,"fn":4513,"description":4514,"org":4621,"tags":4622,"stars":22,"repoUrl":23,"updatedAt":4523},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4623,4624,4625,4626],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":4521,"slug":4522,"type":15},{"slug":3768,"name":3768,"fn":4525,"description":4526,"org":4628,"tags":4629,"stars":22,"repoUrl":23,"updatedAt":4534},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4630,4631,4632],{"name":17,"slug":18,"type":15},{"name":4531,"slug":4532,"type":15},{"name":20,"slug":21,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":4634,"tags":4635,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4636,4637,4638],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":4542,"name":4542,"fn":4543,"description":4544,"org":4640,"tags":4641,"stars":22,"repoUrl":23,"updatedAt":4554},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4642,4643,4644,4645],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":4550,"slug":4551,"type":15},{"name":4553,"slug":793,"type":15},{"slug":87,"name":87,"fn":4556,"description":4557,"org":4647,"tags":4648,"stars":22,"repoUrl":23,"updatedAt":4565},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4649,4650,4651],{"name":4561,"slug":4562,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":4567,"name":4567,"fn":4568,"description":4569,"org":4653,"tags":4654,"stars":22,"repoUrl":23,"updatedAt":4580},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4655,4656,4657,4658],{"name":4573,"slug":4574,"type":15},{"name":20,"slug":21,"type":15},{"name":4577,"slug":4578,"type":15},{"name":4553,"slug":793,"type":15},{"slug":575,"name":575,"fn":4582,"description":4583,"org":4660,"tags":4661,"stars":22,"repoUrl":23,"updatedAt":4590},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4662,4663,4664,4665],{"name":4561,"slug":4562,"type":15},{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":4553,"slug":793,"type":15},35]