Skip to content
Cisco AI Defense logo
CiscoAI Security

From docs/*.md — DefenseClaw

Overview

Before docs-site/, DefenseClaw documentation lived in docs/*.md — a flat set of Markdown files inside the repo. Those files are retained for history but are not canonical for v7. Every topic has moved to a dedicated docs-site/ page with code-accurate generated content.

Mapping table

Legacy fileReplacement
docs/README.mddocs-site/index.mdx
docs/INSTALL.mdInstall methods
docs/QUICKSTART.mdZero to governed
docs/CLI.mdCLI overview and the commands section
docs/GUARDRAIL.mdGuardrail overview
docs/POLICY.mdPolicy engines
docs/SCANNERS.mdScanner catalog
docs/WATCHER.mdWatcher overview
docs/FIREWALL.mdFirewall overview
docs/SANDBOX.mdSandbox overview
docs/OBSERVABILITY.mdObservability overview
docs/API.mdAPI overview
docs/DEVELOPMENT.mdDeveloper overview
docs/RELEASE.mdRelease
docs/CONTRIBUTING.mdContributing
docs/FAQ.mdFAQ
docs/GLOSSARY.mdGlossary
docs/TROUBLESHOOTING.mdTroubleshooting
docs/ARCHITECTURE.mdArchitecture

Why move?

  1. MDX over Markdown — we need callouts, diagrams, and code-reference blocks that Markdown alone doesn't do well.
  2. Autogeneration — CLI, schemas, env vars, and telemetry names are now generated directly from code into AUTOGEN blocks. The legacy Markdown would drift within weeks.
  3. Consistency with cisco-ai-defense.github.io — we publish docs to the shared site; our format matches the site's conventions.
  4. Navigation_meta/toc.json drives the sidebar for everyone. One source of truth.

What happens to the legacy files?

For v7.0: they still exist, they link to their replacements at the top, and a banner warns they're historical.

For v7.1 and beyond: the docs/ directory will be emptied except for a README.md that points at docs-site/. CI will fail PRs that add new files to docs/.

If you had bookmarks

The legacy paths don't redirect automatically (we can't control where your bookmark lives). Use the table above to find the replacement. If you can't find something, it's either:

  • In docs-site/reference — we consolidated the small pages.
  • Deprecated — the v7 architecture removed it.

File an issue if a topic you need isn't here. We'd rather add it than leave you stranded.

Related