Skip to content

[docs] Rebuild the documentation as one product — guardrails and FailproofAI Cloud in one journey - #687

Open
NiveditJain wants to merge 2 commits into
mainfrom
luv-legion-687
Open

[docs] Rebuild the documentation as one product — guardrails and FailproofAI Cloud in one journey#687
NiveditJain wants to merge 2 commits into
mainfrom
luv-legion-687

Conversation

@NiveditJain

@NiveditJain NiveditJain commented Aug 12, 2026

Copy link
Copy Markdown
Member

What

Rebuilds the documentation as one product instead of two.

The site had two top-level tabs — "Enforcement" and "Observability" — which asked every reader to work out which half of a single product they were in before reading anything. There is now one navigation, ordered as a journey: install and guard a machine → see what happened on it → govern the fleet from the cloud.

The observability half is repositioned as FailproofAI Cloud and moves from the agenteye section to the cloud section, with a redirect for every old URL (57 total).

Why

The AgentEye solution is integrated and failproofaid is live, but the docs still described two separate products — and the seam between them (failproofai config --connect) was documented only in --help. A reader could not find out how a machine joins a fleet, what a deployment is, or what leaves their machine when they connect.

New pages

Page Covers
cloud/connect Both capabilities, what leaves the machine (transcripts, stated plainly), machine identity, fleet provisioning, troubleshooting
cloud/managed-policies Deployments, digest verification, observe-mode rollout, offline behaviour
cloud/fleet Which machine is on which deployment — and which are unguarded
cloud/capture All 12 CLIs through the daemon, replacing three per-CLI pages written for a separate collector
cloud/agent-skills The three agent skills, merged from three pages
how-it-works Tool call → decision → dashboard, with the failure-mode table
daemon Fail-closed, supervision, how the binary reaches a machine, upgrades
agent-support Per-CLI matrix of what a deny actually blocks, derived from the same source the product asserts against
policies Hub: three decisions, four policy sources, evaluation order, presets, pausing
concepts One merged glossary for both halves
reference/files Everything written on a machine, and what is safe to delete
cli/{config,harness,backfill,flush,uninstall} Previously undocumented commands

Notable decisions

  • Closed source stays closed. Cloud pages are value- and contract-first: internal architecture claims (worker partitioning, storage internals, the old collector's mechanics) are out; permissions, the evaluator HTTP contract, CLI surface, and operator env vars stay — a user cannot operate the product without those.
  • The turn-end gate is stated per CLI. The five require-*-before-stop builtins never fire on Hermes or Goose. That is now a warning on both the policy catalogue and the support matrix rather than something you discover from a rule that quietly did nothing.
  • Per-CLI hook-schema internals moved off the Configuration page into the support matrix, so configuration is about configuring again.
  • One screenshot added (docs/images/local-session-viewer.png), captured through headless Chrome in Docker against synthetic fixture data — no real project names or transcripts. A second capture was dropped because it leaked a local filesystem path.

Translations

The 14 language trees are moved and relinked. Pages with no counterpart are seeded from English so every nav entry resolves and CI stays green; the scheduled translation job replaces them on its next run, since its cache is keyed on English source hashes and all of them changed.

Test changes

Two tests hardcoded the old docs directory as a fixture path (__tests__/scripts/validate-mdx.test.ts, __tests__/scripts/translate-docs/mdx-translator.test.ts) and are updated to the new location — the fixture path is exactly the value this PR changes.

Validation

  • bun run validate:mdx — 825 pages parse, no broken images
  • Every nav entry, internal link, and redirect target resolves, across all 15 language trees
  • __tests__/scripts/ — 237 passed

🤖 Generated with Claude Code

https://claude.ai/code/session_014ZHcJRck9qdLpGEZeL51js

Hermes review

Field Value
Status Approved
Reviewed commit 541b256501c085f36c270d02e2a201f2fd342f2a
Policy revision 1d8f31d926828f3bae215c58f5b35baa44acbff0
Model gpt-5.6-terra
Duration 370s
Updated 2026-08-12T18:33:16.165913371+00:00

Summary

Review complete. The navigation and redirect migration resolves correctly; I found two low-severity documentation accuracy issues affecting localized navigation and uninstall expectations.

Changes

  • Replaced the two-product documentation structure with one journey-based navigation.
  • Moved AgentEye documentation to FailproofAI Cloud paths, with legacy URL redirects.
  • Added Cloud, daemon, policy, support-matrix, filesystem-reference, and CLI documentation across localized trees.

Validation

  • Passed jq navigation/redirect target existence check — All 810 navigation entries and 57 redirect targets resolve to current documentation files; no duplicate or self-referential redirect sources were found. (0s)
  • Skipped docker run ... bun run validate:mdx — The source snapshot has no installed dependencies. A disposable-container clean install did not complete dependency resolution, so the MDX compiler check could not run; no explicit validation command was configured. (44s)

Findings

No blocking findings.

2 advisory findings
  • Low/High Restore localized labels for the new navigation — Every non-English entry now renders the tab as "Documentation" and groups such as "Guardrails", "See what happened", and "Analyze and act" in English (for example docs/docs.json:144-218 for zh). The generator falls back to the English text for any unmapped name; its map only adds "Start here" and "CLI reference" (scripts/translate-docs/mintlify-nav.ts:86-108). Thus regenerating localized navigation will preserve this regression. (scripts/translate-docs/mintlify-nav.ts:86)
  • Low/High Document that plain uninstall can retain the daemon — The new reference says failproofai uninstall removes the service and lists service removal as an unconditional step (docs/cli/uninstall.mdx:13-14,49-50). In the implementation, an interactive non-purge uninstall asks separately and keeps the service when declined (src/hooks/uninstall-cli.ts:305-313); the CLI help states this explicitly (bin/failproofai.mjs:994-998). (docs/cli/uninstall.mdx:13)

Open questions

None.

Policy overrides

None.

NiveditJain and others added 2 commits August 12, 2026 23:53
The site had two top-level tabs, "Enforcement" and "Observability", which
asked every reader to work out which half of a single product they were in
before reading anything. There is now one navigation, ordered as a journey:
install and guard a machine, see what happened on it, then govern the fleet
from the cloud. The observability half is repositioned as FailproofAI Cloud
and moves from the agenteye section to the cloud section, with a redirect for
every old URL.

Documents the integration surface that had no docs at all. `failproofai
config --connect` existed only in --help: new pages cover connecting a
machine (both capabilities, what leaves the machine, fleet provisioning,
troubleshooting), managed policies (deployments, digest verification,
observe-mode rollout), the fleet view, and session capture across all 12
CLIs -- replacing three per-CLI capture pages written for a separate
collector that the daemon has since absorbed.

Adds the pages a reader kept needing and could not find: How it works (tool
call to decision to dashboard, with the failure-mode table), the failproofaid
service (fail-closed, supervision, how the binary arrives, upgrades),
Supported agents (per-CLI matrix of what a deny actually blocks, derived from
the same source the product asserts against), Policies as a hub, one merged
Concepts glossary, a files-and-paths reference, and CLI pages for config,
harness, backfill, flush and uninstall.

Cloud pages are value- and contract-first: internal architecture claims are
out, what a user needs to operate the product stays. Per-CLI hook-schema
internals move off the Configuration page and into the support matrix.

Two tests hardcoded the old docs directory as a fixture path and are updated
to the new location. The 14 language trees are moved and relinked; pages with
no counterpart are seeded from English so every nav entry resolves, and the
scheduled translation job replaces them on its next run (its cache is keyed
on English source hashes, all of which changed).

Adds one screenshot of the local session viewer, captured through headless
Chrome against synthetic fixture data rather than a real machine's sessions.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014ZHcJRck9qdLpGEZeL51js
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014ZHcJRck9qdLpGEZeL51js
@coderabbitai

coderabbitai Bot commented Aug 12, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 1025 files, which is 875 over the limit of 150.

To get a review, reduce the PR to 150 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 1d0f9176-e5ec-4046-9f19-db9548870aef

📥 Commits

Reviewing files that changed from the base of the PR and between e022752 and 541b256.

⛔ Files ignored due to path filters (24)
  • docs/cloud/images/alert-new.png is excluded by !**/*.png
  • docs/cloud/images/alerts.png is excluded by !**/*.png
  • docs/cloud/images/api-keys.png is excluded by !**/*.png
  • docs/cloud/images/assistant.png is excluded by !**/*.png
  • docs/cloud/images/audits.png is excluded by !**/*.png
  • docs/cloud/images/dashboard-fleet.png is excluded by !**/*.png
  • docs/cloud/images/dashboard-quality.png is excluded by !**/*.png
  • docs/cloud/images/errors.png is excluded by !**/*.png
  • docs/cloud/images/events-stream.png is excluded by !**/*.png
  • docs/cloud/images/hooks.png is excluded by !**/*.png
  • docs/cloud/images/incident-detail.png is excluded by !**/*.png
  • docs/cloud/images/incidents.png is excluded by !**/*.png
  • docs/cloud/images/login.png is excluded by !**/*.png
  • docs/cloud/images/models.png is excluded by !**/*.png
  • docs/cloud/images/queries.png is excluded by !**/*.png
  • docs/cloud/images/query-lab.png is excluded by !**/*.png
  • docs/cloud/images/session-detail.png is excluded by !**/*.png
  • docs/cloud/images/sessions-list.png is excluded by !**/*.png
  • docs/cloud/images/settings.png is excluded by !**/*.png
  • docs/cloud/images/tools.png is excluded by !**/*.png
  • docs/cloud/images/users.png is excluded by !**/*.png
  • docs/cloud/images/video-audit.jpg is excluded by !**/*.jpg
  • docs/cloud/images/video-tracing.jpg is excluded by !**/*.jpg
  • docs/images/local-session-viewer.png is excluded by !**/*.png
📒 Files selected for processing (1025)
  • CHANGELOG.md
  • README.md
  • __tests__/scripts/translate-docs/mdx-translator.test.ts
  • __tests__/scripts/validate-mdx.test.ts
  • docs/agent-support.mdx
  • docs/agenteye/alerts.mdx
  • docs/agenteye/api-keys.mdx
  • docs/agenteye/assistant.mdx
  • docs/agenteye/audits.mdx
  • docs/agenteye/cli-and-agents.mdx
  • docs/agenteye/cli-recipes.mdx
  • docs/agenteye/cli-skill.mdx
  • docs/agenteye/cli.mdx
  • docs/agenteye/codex-capture.mdx
  • docs/agenteye/concepts.mdx
  • docs/agenteye/dashboards.mdx
  • docs/agenteye/error-tracking.mdx
  • docs/agenteye/evaluation-suite.mdx
  • docs/agenteye/evaluations.mdx
  • docs/agenteye/evaluator-skill.mdx
  • docs/agenteye/event-stream.mdx
  • docs/agenteye/hermes-capture.mdx
  • docs/agenteye/incidents.mdx
  • docs/agenteye/observability.mdx
  • docs/agenteye/openclaw-capture.mdx
  • docs/agenteye/overview.mdx
  • docs/agenteye/python-sdk-skill.mdx
  • docs/agenteye/python-sdk.mdx
  • docs/agenteye/queries.mdx
  • docs/agenteye/security.mdx
  • docs/agenteye/sessions.mdx
  • docs/agenteye/telemetry.mdx
  • docs/ar/agent-support.mdx
  • docs/ar/agenteye/alerts.mdx
  • docs/ar/agenteye/api-keys.mdx
  • docs/ar/agenteye/assistant.mdx
  • docs/ar/agenteye/audits.mdx
  • docs/ar/agenteye/cli-and-agents.mdx
  • docs/ar/agenteye/cli-recipes.mdx
  • docs/ar/agenteye/cli-skill.mdx
  • docs/ar/agenteye/cli.mdx
  • docs/ar/agenteye/codex-capture.mdx
  • docs/ar/agenteye/concepts.mdx
  • docs/ar/agenteye/dashboards.mdx
  • docs/ar/agenteye/error-tracking.mdx
  • docs/ar/agenteye/evaluation-suite.mdx
  • docs/ar/agenteye/evaluations.mdx
  • docs/ar/agenteye/evaluator-skill.mdx
  • docs/ar/agenteye/event-stream.mdx
  • docs/ar/agenteye/hermes-capture.mdx
  • docs/ar/agenteye/incidents.mdx
  • docs/ar/agenteye/observability.mdx
  • docs/ar/agenteye/openclaw-capture.mdx
  • docs/ar/agenteye/overview.mdx
  • docs/ar/agenteye/python-sdk-skill.mdx
  • docs/ar/agenteye/python-sdk.mdx
  • docs/ar/agenteye/queries.mdx
  • docs/ar/agenteye/security.mdx
  • docs/ar/agenteye/sessions.mdx
  • docs/ar/agenteye/telemetry.mdx
  • docs/ar/audit.mdx
  • docs/ar/cli/backfill.mdx
  • docs/ar/cli/config.mdx
  • docs/ar/cli/flush.mdx
  • docs/ar/cli/harness.mdx
  • docs/ar/cli/migrate.mdx
  • docs/ar/cli/uninstall.mdx
  • docs/ar/cli/update.mdx
  • docs/ar/cloud/access.mdx
  • docs/ar/cloud/agent-skills.mdx
  • docs/ar/cloud/alerts.mdx
  • docs/ar/cloud/assistant.mdx
  • docs/ar/cloud/audits.mdx
  • docs/ar/cloud/capture.mdx
  • docs/ar/cloud/cli-recipes.mdx
  • docs/ar/cloud/cli.mdx
  • docs/ar/cloud/connect.mdx
  • docs/ar/cloud/dashboards.mdx
  • docs/ar/cloud/errors.mdx
  • docs/ar/cloud/evaluations.mdx
  • docs/ar/cloud/evaluators.mdx
  • docs/ar/cloud/event-stream.mdx
  • docs/ar/cloud/fleet.mdx
  • docs/ar/cloud/incidents.mdx
  • docs/ar/cloud/managed-policies.mdx
  • docs/ar/cloud/overview.mdx
  • docs/ar/cloud/performance.mdx
  • docs/ar/cloud/queries.mdx
  • docs/ar/cloud/sdk.mdx
  • docs/ar/cloud/security.mdx
  • docs/ar/cloud/sessions.mdx
  • docs/ar/concepts.mdx
  • docs/ar/daemon.mdx
  • docs/ar/dashboard.mdx
  • docs/ar/how-it-works.mdx
  • docs/ar/introduction.mdx
  • docs/ar/policies.mdx
  • docs/ar/quickstart.mdx
  • docs/ar/reference/files.mdx
  • docs/architecture.mdx
  • docs/audit.mdx
  • docs/built-in-policies.mdx
  • docs/cli/backfill.mdx
  • docs/cli/config.mdx
  • docs/cli/dashboard.mdx
  • docs/cli/flush.mdx
  • docs/cli/harness.mdx
  • docs/cli/hook.mdx
  • docs/cli/install-policies.mdx
  • docs/cli/list-policies.mdx
  • docs/cli/migrate.mdx
  • docs/cli/remove-policies.mdx
  • docs/cli/uninstall.mdx
  • docs/cli/update.mdx
  • docs/cli/version.mdx
  • docs/cloud/access.mdx
  • docs/cloud/agent-skills.mdx
  • docs/cloud/alerts.mdx
  • docs/cloud/assistant.mdx
  • docs/cloud/audits.mdx
  • docs/cloud/capture.mdx
  • docs/cloud/cli-recipes.mdx
  • docs/cloud/cli.mdx
  • docs/cloud/connect.mdx
  • docs/cloud/dashboards.mdx
  • docs/cloud/errors.mdx
  • docs/cloud/evaluations.mdx
  • docs/cloud/evaluators.mdx
  • docs/cloud/event-stream.mdx
  • docs/cloud/fleet.mdx
  • docs/cloud/incidents.mdx
  • docs/cloud/managed-policies.mdx
  • docs/cloud/overview.mdx
  • docs/cloud/performance.mdx
  • docs/cloud/queries.mdx
  • docs/cloud/sdk.mdx
  • docs/cloud/security.mdx
  • docs/cloud/sessions.mdx
  • docs/concepts.mdx
  • docs/configuration.mdx
  • docs/custom-policies.mdx
  • docs/daemon.mdx
  • docs/dashboard.mdx
  • docs/de/agent-support.mdx
  • docs/de/agenteye/alerts.mdx
  • docs/de/agenteye/api-keys.mdx
  • docs/de/agenteye/assistant.mdx
  • docs/de/agenteye/audits.mdx
  • docs/de/agenteye/cli-and-agents.mdx
  • docs/de/agenteye/cli-recipes.mdx
  • docs/de/agenteye/cli-skill.mdx
  • docs/de/agenteye/cli.mdx
  • docs/de/agenteye/codex-capture.mdx
  • docs/de/agenteye/concepts.mdx
  • docs/de/agenteye/dashboards.mdx
  • docs/de/agenteye/error-tracking.mdx
  • docs/de/agenteye/evaluation-suite.mdx
  • docs/de/agenteye/evaluations.mdx
  • docs/de/agenteye/evaluator-skill.mdx
  • docs/de/agenteye/event-stream.mdx
  • docs/de/agenteye/hermes-capture.mdx
  • docs/de/agenteye/incidents.mdx
  • docs/de/agenteye/observability.mdx
  • docs/de/agenteye/openclaw-capture.mdx
  • docs/de/agenteye/overview.mdx
  • docs/de/agenteye/python-sdk-skill.mdx
  • docs/de/agenteye/python-sdk.mdx
  • docs/de/agenteye/queries.mdx
  • docs/de/agenteye/security.mdx
  • docs/de/agenteye/sessions.mdx
  • docs/de/agenteye/telemetry.mdx
  • docs/de/audit.mdx
  • docs/de/cli/backfill.mdx
  • docs/de/cli/config.mdx
  • docs/de/cli/flush.mdx
  • docs/de/cli/harness.mdx
  • docs/de/cli/migrate.mdx
  • docs/de/cli/uninstall.mdx
  • docs/de/cli/update.mdx
  • docs/de/cloud/access.mdx
  • docs/de/cloud/agent-skills.mdx
  • docs/de/cloud/alerts.mdx
  • docs/de/cloud/assistant.mdx
  • docs/de/cloud/audits.mdx
  • docs/de/cloud/capture.mdx
  • docs/de/cloud/cli-recipes.mdx
  • docs/de/cloud/cli.mdx
  • docs/de/cloud/connect.mdx
  • docs/de/cloud/dashboards.mdx
  • docs/de/cloud/errors.mdx
  • docs/de/cloud/evaluations.mdx
  • docs/de/cloud/evaluators.mdx
  • docs/de/cloud/event-stream.mdx
  • docs/de/cloud/fleet.mdx
  • docs/de/cloud/incidents.mdx
  • docs/de/cloud/managed-policies.mdx
  • docs/de/cloud/overview.mdx
  • docs/de/cloud/performance.mdx
  • docs/de/cloud/queries.mdx
  • docs/de/cloud/sdk.mdx
  • docs/de/cloud/security.mdx
  • docs/de/cloud/sessions.mdx
  • docs/de/concepts.mdx
  • docs/de/daemon.mdx
  • docs/de/dashboard.mdx
  • docs/de/how-it-works.mdx
  • docs/de/introduction.mdx
  • docs/de/policies.mdx
  • docs/de/quickstart.mdx
  • docs/de/reference/files.mdx
  • docs/docs.json
  • docs/es/agent-support.mdx
  • docs/es/agenteye/alerts.mdx
  • docs/es/agenteye/api-keys.mdx
  • docs/es/agenteye/assistant.mdx
  • docs/es/agenteye/audits.mdx
  • docs/es/agenteye/cli-and-agents.mdx
  • docs/es/agenteye/cli-recipes.mdx
  • docs/es/agenteye/cli-skill.mdx
  • docs/es/agenteye/cli.mdx
  • docs/es/agenteye/codex-capture.mdx
  • docs/es/agenteye/concepts.mdx
  • docs/es/agenteye/dashboards.mdx
  • docs/es/agenteye/error-tracking.mdx
  • docs/es/agenteye/evaluation-suite.mdx
  • docs/es/agenteye/evaluations.mdx
  • docs/es/agenteye/evaluator-skill.mdx
  • docs/es/agenteye/event-stream.mdx
  • docs/es/agenteye/hermes-capture.mdx
  • docs/es/agenteye/incidents.mdx
  • docs/es/agenteye/observability.mdx
  • docs/es/agenteye/openclaw-capture.mdx
  • docs/es/agenteye/overview.mdx
  • docs/es/agenteye/python-sdk-skill.mdx
  • docs/es/agenteye/python-sdk.mdx
  • docs/es/agenteye/queries.mdx
  • docs/es/agenteye/security.mdx
  • docs/es/agenteye/sessions.mdx
  • docs/es/agenteye/telemetry.mdx
  • docs/es/audit.mdx
  • docs/es/cli/backfill.mdx
  • docs/es/cli/config.mdx
  • docs/es/cli/flush.mdx
  • docs/es/cli/harness.mdx
  • docs/es/cli/migrate.mdx
  • docs/es/cli/uninstall.mdx
  • docs/es/cli/update.mdx
  • docs/es/cloud/access.mdx
  • docs/es/cloud/agent-skills.mdx
  • docs/es/cloud/alerts.mdx
  • docs/es/cloud/assistant.mdx
  • docs/es/cloud/audits.mdx
  • docs/es/cloud/capture.mdx
  • docs/es/cloud/cli-recipes.mdx
  • docs/es/cloud/cli.mdx
  • docs/es/cloud/connect.mdx
  • docs/es/cloud/dashboards.mdx
  • docs/es/cloud/errors.mdx
  • docs/es/cloud/evaluations.mdx
  • docs/es/cloud/evaluators.mdx
  • docs/es/cloud/event-stream.mdx
  • docs/es/cloud/fleet.mdx
  • docs/es/cloud/incidents.mdx
  • docs/es/cloud/managed-policies.mdx
  • docs/es/cloud/overview.mdx
  • docs/es/cloud/performance.mdx
  • docs/es/cloud/queries.mdx
  • docs/es/cloud/sdk.mdx
  • docs/es/cloud/security.mdx
  • docs/es/cloud/sessions.mdx
  • docs/es/concepts.mdx
  • docs/es/daemon.mdx
  • docs/es/dashboard.mdx
  • docs/es/how-it-works.mdx
  • docs/es/introduction.mdx
  • docs/es/policies.mdx
  • docs/es/quickstart.mdx
  • docs/es/reference/files.mdx
  • docs/for-agents.mdx
  • docs/fr/agent-support.mdx
  • docs/fr/agenteye/alerts.mdx
  • docs/fr/agenteye/api-keys.mdx
  • docs/fr/agenteye/assistant.mdx
  • docs/fr/agenteye/audits.mdx
  • docs/fr/agenteye/cli-and-agents.mdx
  • docs/fr/agenteye/cli-recipes.mdx
  • docs/fr/agenteye/cli-skill.mdx
  • docs/fr/agenteye/cli.mdx
  • docs/fr/agenteye/codex-capture.mdx
  • docs/fr/agenteye/concepts.mdx
  • docs/fr/agenteye/dashboards.mdx
  • docs/fr/agenteye/error-tracking.mdx
  • docs/fr/agenteye/evaluation-suite.mdx
  • docs/fr/agenteye/evaluations.mdx
  • docs/fr/agenteye/evaluator-skill.mdx
  • docs/fr/agenteye/event-stream.mdx
  • docs/fr/agenteye/hermes-capture.mdx
  • docs/fr/agenteye/incidents.mdx
  • docs/fr/agenteye/observability.mdx
  • docs/fr/agenteye/openclaw-capture.mdx
  • docs/fr/agenteye/overview.mdx
  • docs/fr/agenteye/python-sdk-skill.mdx
  • docs/fr/agenteye/python-sdk.mdx
  • docs/fr/agenteye/queries.mdx
  • docs/fr/agenteye/security.mdx
  • docs/fr/agenteye/sessions.mdx
  • docs/fr/agenteye/telemetry.mdx
  • docs/fr/audit.mdx
  • docs/fr/cli/backfill.mdx
  • docs/fr/cli/config.mdx
  • docs/fr/cli/flush.mdx
  • docs/fr/cli/harness.mdx
  • docs/fr/cli/migrate.mdx
  • docs/fr/cli/uninstall.mdx
  • docs/fr/cli/update.mdx
  • docs/fr/cloud/access.mdx
  • docs/fr/cloud/agent-skills.mdx
  • docs/fr/cloud/alerts.mdx
  • docs/fr/cloud/assistant.mdx
  • docs/fr/cloud/audits.mdx
  • docs/fr/cloud/capture.mdx
  • docs/fr/cloud/cli-recipes.mdx
  • docs/fr/cloud/cli.mdx
  • docs/fr/cloud/connect.mdx
  • docs/fr/cloud/dashboards.mdx
  • docs/fr/cloud/errors.mdx
  • docs/fr/cloud/evaluations.mdx
  • docs/fr/cloud/evaluators.mdx
  • docs/fr/cloud/event-stream.mdx
  • docs/fr/cloud/fleet.mdx
  • docs/fr/cloud/incidents.mdx
  • docs/fr/cloud/managed-policies.mdx
  • docs/fr/cloud/overview.mdx
  • docs/fr/cloud/performance.mdx
  • docs/fr/cloud/queries.mdx
  • docs/fr/cloud/sdk.mdx
  • docs/fr/cloud/security.mdx
  • docs/fr/cloud/sessions.mdx
  • docs/fr/concepts.mdx
  • docs/fr/daemon.mdx
  • docs/fr/dashboard.mdx
  • docs/fr/how-it-works.mdx
  • docs/fr/introduction.mdx
  • docs/fr/policies.mdx
  • docs/fr/quickstart.mdx
  • docs/fr/reference/files.mdx
  • docs/getting-started.mdx
  • docs/he/agent-support.mdx
  • docs/he/agenteye/alerts.mdx
  • docs/he/agenteye/api-keys.mdx
  • docs/he/agenteye/assistant.mdx
  • docs/he/agenteye/audits.mdx
  • docs/he/agenteye/cli-and-agents.mdx
  • docs/he/agenteye/cli-recipes.mdx
  • docs/he/agenteye/cli-skill.mdx
  • docs/he/agenteye/cli.mdx
  • docs/he/agenteye/codex-capture.mdx
  • docs/he/agenteye/concepts.mdx
  • docs/he/agenteye/dashboards.mdx
  • docs/he/agenteye/error-tracking.mdx
  • docs/he/agenteye/evaluation-suite.mdx
  • docs/he/agenteye/evaluations.mdx
  • docs/he/agenteye/evaluator-skill.mdx
  • docs/he/agenteye/event-stream.mdx
  • docs/he/agenteye/hermes-capture.mdx
  • docs/he/agenteye/incidents.mdx
  • docs/he/agenteye/observability.mdx
  • docs/he/agenteye/openclaw-capture.mdx
  • docs/he/agenteye/overview.mdx
  • docs/he/agenteye/python-sdk-skill.mdx
  • docs/he/agenteye/python-sdk.mdx
  • docs/he/agenteye/queries.mdx
  • docs/he/agenteye/security.mdx
  • docs/he/agenteye/sessions.mdx
  • docs/he/agenteye/telemetry.mdx
  • docs/he/audit.mdx
  • docs/he/cli/backfill.mdx
  • docs/he/cli/config.mdx
  • docs/he/cli/flush.mdx
  • docs/he/cli/harness.mdx
  • docs/he/cli/migrate.mdx
  • docs/he/cli/uninstall.mdx
  • docs/he/cli/update.mdx
  • docs/he/cloud/access.mdx
  • docs/he/cloud/agent-skills.mdx
  • docs/he/cloud/alerts.mdx
  • docs/he/cloud/assistant.mdx
  • docs/he/cloud/audits.mdx
  • docs/he/cloud/capture.mdx
  • docs/he/cloud/cli-recipes.mdx
  • docs/he/cloud/cli.mdx
  • docs/he/cloud/connect.mdx
  • docs/he/cloud/dashboards.mdx
  • docs/he/cloud/errors.mdx
  • docs/he/cloud/evaluations.mdx
  • docs/he/cloud/evaluators.mdx
  • docs/he/cloud/event-stream.mdx
  • docs/he/cloud/fleet.mdx
  • docs/he/cloud/incidents.mdx
  • docs/he/cloud/managed-policies.mdx
  • docs/he/cloud/overview.mdx
  • docs/he/cloud/performance.mdx
  • docs/he/cloud/queries.mdx
  • docs/he/cloud/sdk.mdx
  • docs/he/cloud/security.mdx
  • docs/he/cloud/sessions.mdx
  • docs/he/concepts.mdx
  • docs/he/daemon.mdx
  • docs/he/dashboard.mdx
  • docs/he/how-it-works.mdx
  • docs/he/introduction.mdx
  • docs/he/policies.mdx
  • docs/he/quickstart.mdx
  • docs/he/reference/files.mdx
  • docs/hi/agent-support.mdx
  • docs/hi/agenteye/alerts.mdx
  • docs/hi/agenteye/api-keys.mdx
  • docs/hi/agenteye/assistant.mdx
  • docs/hi/agenteye/audits.mdx
  • docs/hi/agenteye/cli-and-agents.mdx
  • docs/hi/agenteye/cli-recipes.mdx
  • docs/hi/agenteye/cli-skill.mdx
  • docs/hi/agenteye/cli.mdx
  • docs/hi/agenteye/codex-capture.mdx
  • docs/hi/agenteye/concepts.mdx
  • docs/hi/agenteye/dashboards.mdx
  • docs/hi/agenteye/error-tracking.mdx
  • docs/hi/agenteye/evaluation-suite.mdx
  • docs/hi/agenteye/evaluations.mdx
  • docs/hi/agenteye/evaluator-skill.mdx
  • docs/hi/agenteye/event-stream.mdx
  • docs/hi/agenteye/hermes-capture.mdx
  • docs/hi/agenteye/incidents.mdx
  • docs/hi/agenteye/observability.mdx
  • docs/hi/agenteye/openclaw-capture.mdx
  • docs/hi/agenteye/overview.mdx
  • docs/hi/agenteye/python-sdk-skill.mdx
  • docs/hi/agenteye/python-sdk.mdx
  • docs/hi/agenteye/queries.mdx
  • docs/hi/agenteye/security.mdx
  • docs/hi/agenteye/sessions.mdx
  • docs/hi/agenteye/telemetry.mdx
  • docs/hi/audit.mdx
  • docs/hi/cli/backfill.mdx
  • docs/hi/cli/config.mdx
  • docs/hi/cli/flush.mdx
  • docs/hi/cli/harness.mdx
  • docs/hi/cli/migrate.mdx
  • docs/hi/cli/uninstall.mdx
  • docs/hi/cli/update.mdx
  • docs/hi/cloud/access.mdx
  • docs/hi/cloud/agent-skills.mdx
  • docs/hi/cloud/alerts.mdx
  • docs/hi/cloud/assistant.mdx
  • docs/hi/cloud/audits.mdx
  • docs/hi/cloud/capture.mdx
  • docs/hi/cloud/cli-recipes.mdx
  • docs/hi/cloud/cli.mdx
  • docs/hi/cloud/connect.mdx
  • docs/hi/cloud/dashboards.mdx
  • docs/hi/cloud/errors.mdx
  • docs/hi/cloud/evaluations.mdx
  • docs/hi/cloud/evaluators.mdx
  • docs/hi/cloud/event-stream.mdx
  • docs/hi/cloud/fleet.mdx
  • docs/hi/cloud/incidents.mdx
  • docs/hi/cloud/managed-policies.mdx
  • docs/hi/cloud/overview.mdx
  • docs/hi/cloud/performance.mdx
  • docs/hi/cloud/queries.mdx
  • docs/hi/cloud/sdk.mdx
  • docs/hi/cloud/security.mdx
  • docs/hi/cloud/sessions.mdx
  • docs/hi/concepts.mdx
  • docs/hi/daemon.mdx
  • docs/hi/dashboard.mdx
  • docs/hi/how-it-works.mdx
  • docs/hi/introduction.mdx
  • docs/hi/policies.mdx
  • docs/hi/quickstart.mdx
  • docs/hi/reference/files.mdx
  • docs/how-it-works.mdx
  • docs/introduction.mdx
  • docs/it/agent-support.mdx
  • docs/it/agenteye/alerts.mdx
  • docs/it/agenteye/api-keys.mdx
  • docs/it/agenteye/assistant.mdx
  • docs/it/agenteye/audits.mdx
  • docs/it/agenteye/cli-and-agents.mdx
  • docs/it/agenteye/cli-recipes.mdx
  • docs/it/agenteye/cli-skill.mdx
  • docs/it/agenteye/cli.mdx
  • docs/it/agenteye/codex-capture.mdx
  • docs/it/agenteye/concepts.mdx
  • docs/it/agenteye/dashboards.mdx
  • docs/it/agenteye/error-tracking.mdx
  • docs/it/agenteye/evaluation-suite.mdx
  • docs/it/agenteye/evaluations.mdx
  • docs/it/agenteye/evaluator-skill.mdx
  • docs/it/agenteye/event-stream.mdx
  • docs/it/agenteye/hermes-capture.mdx
  • docs/it/agenteye/incidents.mdx
  • docs/it/agenteye/observability.mdx
  • docs/it/agenteye/openclaw-capture.mdx
  • docs/it/agenteye/overview.mdx
  • docs/it/agenteye/python-sdk-skill.mdx
  • docs/it/agenteye/python-sdk.mdx
  • docs/it/agenteye/queries.mdx
  • docs/it/agenteye/security.mdx
  • docs/it/agenteye/sessions.mdx
  • docs/it/agenteye/telemetry.mdx
  • docs/it/audit.mdx
  • docs/it/cli/backfill.mdx
  • docs/it/cli/config.mdx
  • docs/it/cli/flush.mdx
  • docs/it/cli/harness.mdx
  • docs/it/cli/migrate.mdx
  • docs/it/cli/uninstall.mdx
  • docs/it/cli/update.mdx
  • docs/it/cloud/access.mdx
  • docs/it/cloud/agent-skills.mdx
  • docs/it/cloud/alerts.mdx
  • docs/it/cloud/assistant.mdx
  • docs/it/cloud/audits.mdx
  • docs/it/cloud/capture.mdx
  • docs/it/cloud/cli-recipes.mdx
  • docs/it/cloud/cli.mdx
  • docs/it/cloud/connect.mdx
  • docs/it/cloud/dashboards.mdx
  • docs/it/cloud/errors.mdx
  • docs/it/cloud/evaluations.mdx
  • docs/it/cloud/evaluators.mdx
  • docs/it/cloud/event-stream.mdx
  • docs/it/cloud/fleet.mdx
  • docs/it/cloud/incidents.mdx
  • docs/it/cloud/managed-policies.mdx
  • docs/it/cloud/overview.mdx
  • docs/it/cloud/performance.mdx
  • docs/it/cloud/queries.mdx
  • docs/it/cloud/sdk.mdx
  • docs/it/cloud/security.mdx
  • docs/it/cloud/sessions.mdx
  • docs/it/concepts.mdx
  • docs/it/daemon.mdx
  • docs/it/dashboard.mdx
  • docs/it/how-it-works.mdx
  • docs/it/introduction.mdx
  • docs/it/policies.mdx
  • docs/it/quickstart.mdx
  • docs/it/reference/files.mdx
  • docs/ja/agent-support.mdx
  • docs/ja/agenteye/alerts.mdx
  • docs/ja/agenteye/api-keys.mdx
  • docs/ja/agenteye/assistant.mdx
  • docs/ja/agenteye/audits.mdx
  • docs/ja/agenteye/cli-and-agents.mdx
  • docs/ja/agenteye/cli-recipes.mdx
  • docs/ja/agenteye/cli-skill.mdx
  • docs/ja/agenteye/cli.mdx
  • docs/ja/agenteye/codex-capture.mdx
  • docs/ja/agenteye/concepts.mdx
  • docs/ja/agenteye/dashboards.mdx
  • docs/ja/agenteye/error-tracking.mdx
  • docs/ja/agenteye/evaluation-suite.mdx
  • docs/ja/agenteye/evaluations.mdx
  • docs/ja/agenteye/evaluator-skill.mdx
  • docs/ja/agenteye/event-stream.mdx
  • docs/ja/agenteye/hermes-capture.mdx
  • docs/ja/agenteye/incidents.mdx
  • docs/ja/agenteye/observability.mdx
  • docs/ja/agenteye/openclaw-capture.mdx
  • docs/ja/agenteye/overview.mdx
  • docs/ja/agenteye/python-sdk-skill.mdx
  • docs/ja/agenteye/python-sdk.mdx
  • docs/ja/agenteye/queries.mdx
  • docs/ja/agenteye/security.mdx
  • docs/ja/agenteye/sessions.mdx
  • docs/ja/agenteye/telemetry.mdx
  • docs/ja/audit.mdx
  • docs/ja/cli/backfill.mdx
  • docs/ja/cli/config.mdx
  • docs/ja/cli/flush.mdx
  • docs/ja/cli/harness.mdx
  • docs/ja/cli/migrate.mdx
  • docs/ja/cli/uninstall.mdx
  • docs/ja/cli/update.mdx
  • docs/ja/cloud/access.mdx
  • docs/ja/cloud/agent-skills.mdx
  • docs/ja/cloud/alerts.mdx
  • docs/ja/cloud/assistant.mdx
  • docs/ja/cloud/audits.mdx
  • docs/ja/cloud/capture.mdx
  • docs/ja/cloud/cli-recipes.mdx
  • docs/ja/cloud/cli.mdx
  • docs/ja/cloud/connect.mdx
  • docs/ja/cloud/dashboards.mdx
  • docs/ja/cloud/errors.mdx
  • docs/ja/cloud/evaluations.mdx
  • docs/ja/cloud/evaluators.mdx
  • docs/ja/cloud/event-stream.mdx
  • docs/ja/cloud/fleet.mdx
  • docs/ja/cloud/incidents.mdx
  • docs/ja/cloud/managed-policies.mdx
  • docs/ja/cloud/overview.mdx
  • docs/ja/cloud/performance.mdx
  • docs/ja/cloud/queries.mdx
  • docs/ja/cloud/sdk.mdx
  • docs/ja/cloud/security.mdx
  • docs/ja/cloud/sessions.mdx
  • docs/ja/concepts.mdx
  • docs/ja/daemon.mdx
  • docs/ja/dashboard.mdx
  • docs/ja/how-it-works.mdx
  • docs/ja/introduction.mdx
  • docs/ja/policies.mdx
  • docs/ja/quickstart.mdx
  • docs/ja/reference/files.mdx
  • docs/ko/agent-support.mdx
  • docs/ko/agenteye/alerts.mdx
  • docs/ko/agenteye/api-keys.mdx
  • docs/ko/agenteye/assistant.mdx
  • docs/ko/agenteye/audits.mdx
  • docs/ko/agenteye/cli-and-agents.mdx
  • docs/ko/agenteye/cli-recipes.mdx
  • docs/ko/agenteye/cli-skill.mdx
  • docs/ko/agenteye/cli.mdx
  • docs/ko/agenteye/codex-capture.mdx
  • docs/ko/agenteye/concepts.mdx
  • docs/ko/agenteye/dashboards.mdx
  • docs/ko/agenteye/error-tracking.mdx
  • docs/ko/agenteye/evaluation-suite.mdx
  • docs/ko/agenteye/evaluations.mdx
  • docs/ko/agenteye/evaluator-skill.mdx
  • docs/ko/agenteye/event-stream.mdx
  • docs/ko/agenteye/hermes-capture.mdx
  • docs/ko/agenteye/incidents.mdx
  • docs/ko/agenteye/observability.mdx
  • docs/ko/agenteye/openclaw-capture.mdx
  • docs/ko/agenteye/overview.mdx
  • docs/ko/agenteye/python-sdk-skill.mdx
  • docs/ko/agenteye/python-sdk.mdx
  • docs/ko/agenteye/queries.mdx
  • docs/ko/agenteye/security.mdx
  • docs/ko/agenteye/sessions.mdx
  • docs/ko/agenteye/telemetry.mdx
  • docs/ko/audit.mdx
  • docs/ko/cli/backfill.mdx
  • docs/ko/cli/config.mdx
  • docs/ko/cli/flush.mdx
  • docs/ko/cli/harness.mdx
  • docs/ko/cli/migrate.mdx
  • docs/ko/cli/uninstall.mdx
  • docs/ko/cli/update.mdx
  • docs/ko/cloud/access.mdx
  • docs/ko/cloud/agent-skills.mdx
  • docs/ko/cloud/alerts.mdx
  • docs/ko/cloud/assistant.mdx
  • docs/ko/cloud/audits.mdx
  • docs/ko/cloud/capture.mdx
  • docs/ko/cloud/cli-recipes.mdx
  • docs/ko/cloud/cli.mdx
  • docs/ko/cloud/connect.mdx
  • docs/ko/cloud/dashboards.mdx
  • docs/ko/cloud/errors.mdx
  • docs/ko/cloud/evaluations.mdx
  • docs/ko/cloud/evaluators.mdx
  • docs/ko/cloud/event-stream.mdx
  • docs/ko/cloud/fleet.mdx
  • docs/ko/cloud/incidents.mdx
  • docs/ko/cloud/managed-policies.mdx
  • docs/ko/cloud/overview.mdx
  • docs/ko/cloud/performance.mdx
  • docs/ko/cloud/queries.mdx
  • docs/ko/cloud/sdk.mdx
  • docs/ko/cloud/security.mdx
  • docs/ko/cloud/sessions.mdx
  • docs/ko/concepts.mdx
  • docs/ko/daemon.mdx
  • docs/ko/dashboard.mdx
  • docs/ko/how-it-works.mdx
  • docs/ko/introduction.mdx
  • docs/ko/policies.mdx
  • docs/ko/quickstart.mdx
  • docs/ko/reference/files.mdx
  • docs/package-aliases.mdx
  • docs/policies.mdx
  • docs/pt-br/agent-support.mdx
  • docs/pt-br/agenteye/alerts.mdx
  • docs/pt-br/agenteye/api-keys.mdx
  • docs/pt-br/agenteye/assistant.mdx
  • docs/pt-br/agenteye/audits.mdx
  • docs/pt-br/agenteye/cli-and-agents.mdx
  • docs/pt-br/agenteye/cli-recipes.mdx
  • docs/pt-br/agenteye/cli-skill.mdx
  • docs/pt-br/agenteye/cli.mdx
  • docs/pt-br/agenteye/codex-capture.mdx
  • docs/pt-br/agenteye/concepts.mdx
  • docs/pt-br/agenteye/dashboards.mdx
  • docs/pt-br/agenteye/error-tracking.mdx
  • docs/pt-br/agenteye/evaluation-suite.mdx
  • docs/pt-br/agenteye/evaluations.mdx
  • docs/pt-br/agenteye/evaluator-skill.mdx
  • docs/pt-br/agenteye/event-stream.mdx
  • docs/pt-br/agenteye/hermes-capture.mdx
  • docs/pt-br/agenteye/incidents.mdx
  • docs/pt-br/agenteye/observability.mdx
  • docs/pt-br/agenteye/openclaw-capture.mdx
  • docs/pt-br/agenteye/overview.mdx
  • docs/pt-br/agenteye/python-sdk-skill.mdx
  • docs/pt-br/agenteye/python-sdk.mdx
  • docs/pt-br/agenteye/queries.mdx
  • docs/pt-br/agenteye/security.mdx
  • docs/pt-br/agenteye/sessions.mdx
  • docs/pt-br/agenteye/telemetry.mdx
  • docs/pt-br/audit.mdx
  • docs/pt-br/cli/backfill.mdx
  • docs/pt-br/cli/config.mdx
  • docs/pt-br/cli/flush.mdx
  • docs/pt-br/cli/harness.mdx
  • docs/pt-br/cli/migrate.mdx
  • docs/pt-br/cli/uninstall.mdx
  • docs/pt-br/cli/update.mdx
  • docs/pt-br/cloud/access.mdx
  • docs/pt-br/cloud/agent-skills.mdx
  • docs/pt-br/cloud/alerts.mdx
  • docs/pt-br/cloud/assistant.mdx
  • docs/pt-br/cloud/audits.mdx
  • docs/pt-br/cloud/capture.mdx
  • docs/pt-br/cloud/cli-recipes.mdx
  • docs/pt-br/cloud/cli.mdx
  • docs/pt-br/cloud/connect.mdx
  • docs/pt-br/cloud/dashboards.mdx
  • docs/pt-br/cloud/errors.mdx
  • docs/pt-br/cloud/evaluations.mdx
  • docs/pt-br/cloud/evaluators.mdx
  • docs/pt-br/cloud/event-stream.mdx
  • docs/pt-br/cloud/fleet.mdx
  • docs/pt-br/cloud/incidents.mdx
  • docs/pt-br/cloud/managed-policies.mdx
  • docs/pt-br/cloud/overview.mdx
  • docs/pt-br/cloud/performance.mdx
  • docs/pt-br/cloud/queries.mdx
  • docs/pt-br/cloud/sdk.mdx
  • docs/pt-br/cloud/security.mdx
  • docs/pt-br/cloud/sessions.mdx
  • docs/pt-br/concepts.mdx
  • docs/pt-br/daemon.mdx
  • docs/pt-br/dashboard.mdx
  • docs/pt-br/how-it-works.mdx
  • docs/pt-br/introduction.mdx
  • docs/pt-br/policies.mdx
  • docs/pt-br/quickstart.mdx
  • docs/pt-br/reference/files.mdx
  • docs/quickstart.mdx
  • docs/reference/files.mdx
  • docs/ru/agent-support.mdx
  • docs/ru/agenteye/alerts.mdx
  • docs/ru/agenteye/api-keys.mdx
  • docs/ru/agenteye/assistant.mdx
  • docs/ru/agenteye/audits.mdx
  • docs/ru/agenteye/cli-and-agents.mdx
  • docs/ru/agenteye/cli-recipes.mdx
  • docs/ru/agenteye/cli-skill.mdx
  • docs/ru/agenteye/cli.mdx
  • docs/ru/agenteye/codex-capture.mdx
  • docs/ru/agenteye/concepts.mdx
  • docs/ru/agenteye/dashboards.mdx
  • docs/ru/agenteye/error-tracking.mdx
  • docs/ru/agenteye/evaluation-suite.mdx
  • docs/ru/agenteye/evaluations.mdx
  • docs/ru/agenteye/evaluator-skill.mdx
  • docs/ru/agenteye/event-stream.mdx
  • docs/ru/agenteye/hermes-capture.mdx
  • docs/ru/agenteye/incidents.mdx
  • docs/ru/agenteye/observability.mdx
  • docs/ru/agenteye/openclaw-capture.mdx
  • docs/ru/agenteye/overview.mdx
  • docs/ru/agenteye/python-sdk-skill.mdx
  • docs/ru/agenteye/python-sdk.mdx
  • docs/ru/agenteye/queries.mdx
  • docs/ru/agenteye/security.mdx
  • docs/ru/agenteye/sessions.mdx
  • docs/ru/agenteye/telemetry.mdx
  • docs/ru/audit.mdx
  • docs/ru/cli/backfill.mdx
  • docs/ru/cli/config.mdx
  • docs/ru/cli/flush.mdx
  • docs/ru/cli/harness.mdx
  • docs/ru/cli/migrate.mdx
  • docs/ru/cli/uninstall.mdx
  • docs/ru/cli/update.mdx
  • docs/ru/cloud/access.mdx
  • docs/ru/cloud/agent-skills.mdx
  • docs/ru/cloud/alerts.mdx
  • docs/ru/cloud/assistant.mdx
  • docs/ru/cloud/audits.mdx
  • docs/ru/cloud/capture.mdx
  • docs/ru/cloud/cli-recipes.mdx
  • docs/ru/cloud/cli.mdx
  • docs/ru/cloud/connect.mdx
  • docs/ru/cloud/dashboards.mdx
  • docs/ru/cloud/errors.mdx
  • docs/ru/cloud/evaluations.mdx
  • docs/ru/cloud/evaluators.mdx
  • docs/ru/cloud/event-stream.mdx
  • docs/ru/cloud/fleet.mdx
  • docs/ru/cloud/incidents.mdx
  • docs/ru/cloud/managed-policies.mdx
  • docs/ru/cloud/overview.mdx
  • docs/ru/cloud/performance.mdx
  • docs/ru/cloud/queries.mdx
  • docs/ru/cloud/sdk.mdx
  • docs/ru/cloud/security.mdx
  • docs/ru/cloud/sessions.mdx
  • docs/ru/concepts.mdx
  • docs/ru/daemon.mdx
  • docs/ru/dashboard.mdx
  • docs/ru/how-it-works.mdx
  • docs/ru/introduction.mdx
  • docs/ru/policies.mdx
  • docs/ru/quickstart.mdx
  • docs/ru/reference/files.mdx
  • docs/testing.mdx
  • docs/tr/agent-support.mdx
  • docs/tr/agenteye/alerts.mdx
  • docs/tr/agenteye/api-keys.mdx
  • docs/tr/agenteye/assistant.mdx
  • docs/tr/agenteye/audits.mdx
  • docs/tr/agenteye/cli-and-agents.mdx
  • docs/tr/agenteye/cli-recipes.mdx
  • docs/tr/agenteye/cli-skill.mdx
  • docs/tr/agenteye/cli.mdx
  • docs/tr/agenteye/codex-capture.mdx
  • docs/tr/agenteye/concepts.mdx
  • docs/tr/agenteye/dashboards.mdx
  • docs/tr/agenteye/error-tracking.mdx
  • docs/tr/agenteye/evaluation-suite.mdx
  • docs/tr/agenteye/evaluations.mdx
  • docs/tr/agenteye/evaluator-skill.mdx
  • docs/tr/agenteye/event-stream.mdx
  • docs/tr/agenteye/hermes-capture.mdx
  • docs/tr/agenteye/incidents.mdx
  • docs/tr/agenteye/observability.mdx
  • docs/tr/agenteye/openclaw-capture.mdx
  • docs/tr/agenteye/overview.mdx
  • docs/tr/agenteye/python-sdk-skill.mdx
  • docs/tr/agenteye/python-sdk.mdx
  • docs/tr/agenteye/queries.mdx
  • docs/tr/agenteye/security.mdx
  • docs/tr/agenteye/sessions.mdx
  • docs/tr/agenteye/telemetry.mdx
  • docs/tr/audit.mdx
  • docs/tr/cli/backfill.mdx
  • docs/tr/cli/config.mdx
  • docs/tr/cli/flush.mdx
  • docs/tr/cli/harness.mdx
  • docs/tr/cli/migrate.mdx
  • docs/tr/cli/uninstall.mdx
  • docs/tr/cli/update.mdx
  • docs/tr/cloud/access.mdx
  • docs/tr/cloud/agent-skills.mdx
  • docs/tr/cloud/alerts.mdx
  • docs/tr/cloud/assistant.mdx
  • docs/tr/cloud/audits.mdx
  • docs/tr/cloud/capture.mdx
  • docs/tr/cloud/cli-recipes.mdx
  • docs/tr/cloud/cli.mdx
  • docs/tr/cloud/connect.mdx
  • docs/tr/cloud/dashboards.mdx
  • docs/tr/cloud/errors.mdx
  • docs/tr/cloud/evaluations.mdx
  • docs/tr/cloud/evaluators.mdx
  • docs/tr/cloud/event-stream.mdx
  • docs/tr/cloud/fleet.mdx
  • docs/tr/cloud/incidents.mdx
  • docs/tr/cloud/managed-policies.mdx
  • docs/tr/cloud/overview.mdx
  • docs/tr/cloud/performance.mdx
  • docs/tr/cloud/queries.mdx
  • docs/tr/cloud/sdk.mdx
  • docs/tr/cloud/security.mdx
  • docs/tr/cloud/sessions.mdx
  • docs/tr/concepts.mdx
  • docs/tr/daemon.mdx
  • docs/tr/dashboard.mdx
  • docs/tr/how-it-works.mdx
  • docs/tr/introduction.mdx
  • docs/tr/policies.mdx
  • docs/tr/quickstart.mdx
  • docs/tr/reference/files.mdx
  • docs/vi/agent-support.mdx
  • docs/vi/agenteye/alerts.mdx
  • docs/vi/agenteye/api-keys.mdx
  • docs/vi/agenteye/assistant.mdx
  • docs/vi/agenteye/audits.mdx
  • docs/vi/agenteye/cli-and-agents.mdx
  • docs/vi/agenteye/cli-recipes.mdx
  • docs/vi/agenteye/cli-skill.mdx
  • docs/vi/agenteye/cli.mdx
  • docs/vi/agenteye/codex-capture.mdx
  • docs/vi/agenteye/concepts.mdx
  • docs/vi/agenteye/dashboards.mdx
  • docs/vi/agenteye/error-tracking.mdx
  • docs/vi/agenteye/evaluation-suite.mdx
  • docs/vi/agenteye/evaluations.mdx
  • docs/vi/agenteye/evaluator-skill.mdx
  • docs/vi/agenteye/event-stream.mdx
  • docs/vi/agenteye/hermes-capture.mdx
  • docs/vi/agenteye/incidents.mdx
  • docs/vi/agenteye/observability.mdx
  • docs/vi/agenteye/openclaw-capture.mdx
  • docs/vi/agenteye/overview.mdx
  • docs/vi/agenteye/python-sdk-skill.mdx
  • docs/vi/agenteye/python-sdk.mdx
  • docs/vi/agenteye/queries.mdx
  • docs/vi/agenteye/security.mdx
  • docs/vi/agenteye/sessions.mdx
  • docs/vi/agenteye/telemetry.mdx
  • docs/vi/audit.mdx
  • docs/vi/cli/backfill.mdx
  • docs/vi/cli/config.mdx
  • docs/vi/cli/flush.mdx
  • docs/vi/cli/harness.mdx
  • docs/vi/cli/migrate.mdx
  • docs/vi/cli/uninstall.mdx
  • docs/vi/cli/update.mdx
  • docs/vi/cloud/access.mdx
  • docs/vi/cloud/agent-skills.mdx
  • docs/vi/cloud/alerts.mdx
  • docs/vi/cloud/assistant.mdx
  • docs/vi/cloud/audits.mdx
  • docs/vi/cloud/capture.mdx
  • docs/vi/cloud/cli-recipes.mdx
  • docs/vi/cloud/cli.mdx
  • docs/vi/cloud/connect.mdx
  • docs/vi/cloud/dashboards.mdx
  • docs/vi/cloud/errors.mdx
  • docs/vi/cloud/evaluations.mdx
  • docs/vi/cloud/evaluators.mdx
  • docs/vi/cloud/event-stream.mdx
  • docs/vi/cloud/fleet.mdx
  • docs/vi/cloud/incidents.mdx
  • docs/vi/cloud/managed-policies.mdx
  • docs/vi/cloud/overview.mdx
  • docs/vi/cloud/performance.mdx
  • docs/vi/cloud/queries.mdx
  • docs/vi/cloud/sdk.mdx
  • docs/vi/cloud/security.mdx
  • docs/vi/cloud/sessions.mdx
  • docs/vi/concepts.mdx
  • docs/vi/daemon.mdx
  • docs/vi/dashboard.mdx
  • docs/vi/how-it-works.mdx
  • docs/vi/introduction.mdx
  • docs/vi/policies.mdx
  • docs/vi/quickstart.mdx
  • docs/vi/reference/files.mdx
  • docs/zh/agent-support.mdx
  • docs/zh/agenteye/alerts.mdx
  • docs/zh/agenteye/api-keys.mdx
  • docs/zh/agenteye/assistant.mdx
  • docs/zh/agenteye/audits.mdx
  • docs/zh/agenteye/cli-and-agents.mdx
  • docs/zh/agenteye/cli-recipes.mdx
  • docs/zh/agenteye/cli-skill.mdx
  • docs/zh/agenteye/cli.mdx
  • docs/zh/agenteye/codex-capture.mdx
  • docs/zh/agenteye/concepts.mdx
  • docs/zh/agenteye/dashboards.mdx
  • docs/zh/agenteye/error-tracking.mdx
  • docs/zh/agenteye/evaluation-suite.mdx
  • docs/zh/agenteye/evaluations.mdx
  • docs/zh/agenteye/evaluator-skill.mdx
  • docs/zh/agenteye/event-stream.mdx
  • docs/zh/agenteye/hermes-capture.mdx
  • docs/zh/agenteye/incidents.mdx
  • docs/zh/agenteye/observability.mdx
  • docs/zh/agenteye/openclaw-capture.mdx
  • docs/zh/agenteye/overview.mdx
  • docs/zh/agenteye/python-sdk-skill.mdx
  • docs/zh/agenteye/python-sdk.mdx
  • docs/zh/agenteye/queries.mdx
  • docs/zh/agenteye/security.mdx
  • docs/zh/agenteye/sessions.mdx
  • docs/zh/agenteye/telemetry.mdx
  • docs/zh/audit.mdx
  • docs/zh/cli/backfill.mdx
  • docs/zh/cli/config.mdx
  • docs/zh/cli/flush.mdx
  • docs/zh/cli/harness.mdx
  • docs/zh/cli/migrate.mdx
  • docs/zh/cli/uninstall.mdx
  • docs/zh/cli/update.mdx
  • docs/zh/cloud/access.mdx
  • docs/zh/cloud/agent-skills.mdx
  • docs/zh/cloud/alerts.mdx
  • docs/zh/cloud/assistant.mdx
  • docs/zh/cloud/audits.mdx
  • docs/zh/cloud/capture.mdx
  • docs/zh/cloud/cli-recipes.mdx
  • docs/zh/cloud/cli.mdx
  • docs/zh/cloud/connect.mdx
  • docs/zh/cloud/dashboards.mdx
  • docs/zh/cloud/errors.mdx
  • docs/zh/cloud/evaluations.mdx
  • docs/zh/cloud/evaluators.mdx
  • docs/zh/cloud/event-stream.mdx
  • docs/zh/cloud/fleet.mdx
  • docs/zh/cloud/incidents.mdx
  • docs/zh/cloud/managed-policies.mdx
  • docs/zh/cloud/overview.mdx
  • docs/zh/cloud/performance.mdx
  • docs/zh/cloud/queries.mdx
  • docs/zh/cloud/sdk.mdx
  • docs/zh/cloud/security.mdx
  • docs/zh/cloud/sessions.mdx
  • docs/zh/concepts.mdx
  • docs/zh/daemon.mdx
  • docs/zh/dashboard.mdx
  • docs/zh/how-it-works.mdx
  • docs/zh/introduction.mdx
  • docs/zh/policies.mdx
  • docs/zh/quickstart.mdx
  • docs/zh/reference/files.mdx
  • scripts/translate-docs/mintlify-nav.ts

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Hermes

Status Reviewing
Verdict Not reviewed yet
Head 541b256501c0
Rounds 0 of 5

No summary yet.

What this changes

No component map for this revision.

Rounds

No review has finished on this pull request yet.

Findings

Nothing raised yet.


@hermes-exosphere help lists every command. This comment is maintained in place — I rewrite it after each review rather than posting a new one.

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Hermes

Status Reviewed
Verdict Approved
Head 541b256501c0
Rounds 0 of 5

Review complete. The navigation and redirect migration resolves correctly; I found two low-severity documentation accuracy issues affecting localized navigation and uninstall expectations.

What this changes

flowchart LR
    n0Documentationnavigation["~ Documentation navigation"]
    n1Clouddocumentation["+ Cloud documentation"]
    n2Guardrailsdocumentation["~ Guardrails documentation"]
    n3Localizeddocumentation["~ Localized documentation"]
    n4LegacyAgentEyeroutes["− Legacy AgentEye routes"]
    n5Documentationvalidationtests["~ Documentation validation tests"]
    n0Documentationnavigation -- "routes readers to Cloud pages" --> n1Clouddocumentation
    n0Documentationnavigation -- "routes readers to local docs" --> n2Guardrailsdocumentation
    n0Documentationnavigation -- "redirects old URLs" --> n4LegacyAgentEyeroutes
    n0Documentationnavigation -- "selects language-specific pages" --> n3Localizeddocumentation
    n3Localizeddocumentation -- "mirrors Cloud content" --> n1Clouddocumentation
    n5Documentationvalidationtests -- "validates moved doc fixtures" --> n0Documentationnavigation
Loading

Rounds

Round Reviewed Commits in this round Verdict
0 541b256501c0 6e0fc144b061 541b256501c0 Approved

Findings

Open

  • F1 Restore localized labels for the new navigation (scripts/translate-docs/mintlify-nav.ts) — round 1
  • F2 Document that plain uninstall can retain the daemon (docs/cli/uninstall.mdx) — round 1

@hermes-exosphere help lists every command. This comment is maintained in place — I rewrite it after each review rather than posting a new one.

@hermes-exosphere hermes-exosphere left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hermes found no blocking issues in this revision.

2 advisory findings
  • Low/High Restore localized labels for the new navigation — Every non-English entry now renders the tab as "Documentation" and groups such as "Guardrails", "See what happened", and "Analyze and act" in English (for example docs/docs.json:144-218 for zh). The generator falls back to the English text for any unmapped name; its map only adds "Start here" and "CLI reference" (scripts/translate-docs/mintlify-nav.ts:86-108). Thus regenerating localized navigation will preserve this regression. (scripts/translate-docs/mintlify-nav.ts:86)
  • Low/High Document that plain uninstall can retain the daemon — The new reference says failproofai uninstall removes the service and lists service removal as an unconditional step (docs/cli/uninstall.mdx:13-14,49-50). In the implementation, an interactive non-purge uninstall asks separately and keeps the service when declined (src/hooks/uninstall-cli.ts:305-313); the CLI help states this explicitly (bin/failproofai.mjs:994-998). (docs/cli/uninstall.mdx:13)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants