From 65b8114469cd8db65a4ac24c2fbd1624123da210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Cearbhaill?= Date: Thu, 27 Aug 2026 14:47:13 +0200 Subject: [PATCH] Move development documentation under docs/development (#893) The Development section holds more than one page and will grow further, so give it its own directory. development.md becomes development/index.md, which keeps its published URL, and the custom CLI command page moves alongside it. Update the nav, the cross-link between the two pages, and the README link to the custom command documentation, which is now published at /development/custom_commands/. --- README.md | 2 +- docs/{ => development}/custom_commands.md | 2 +- docs/{development.md => development/index.md} | 0 mkdocs.yml | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename docs/{ => development}/custom_commands.md (97%) rename docs/{development.md => development/index.md} (100%) diff --git a/README.md b/README.md index 65fcdee..d4ac9b4 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ details. Users can also add top-level commands to `mvt-ios` and `mvt-android` from installed Python packages or local files and folders. See the -[custom CLI command documentation](https://docs.mvt.re/en/latest/custom_commands/) +[custom CLI command documentation](https://docs.mvt.re/en/latest/development/custom_commands/) for the plugin entry points and `--load-command` interface. diff --git a/docs/custom_commands.md b/docs/development/custom_commands.md similarity index 97% rename from docs/custom_commands.md rename to docs/development/custom_commands.md index ab89fd9..764c70b 100644 --- a/docs/custom_commands.md +++ b/docs/development/custom_commands.md @@ -1,7 +1,7 @@ # Custom CLI Commands MVT can load additional top-level commands into `mvt-ios` and `mvt-android`. -Custom commands are different from [custom forensic modules](development.md#custom-modules): +Custom commands are different from [custom forensic modules](index.md#custom-modules): commands add new CLI operations, while modules add analysis steps to existing `check-*` commands. diff --git a/docs/development.md b/docs/development/index.md similarity index 100% rename from docs/development.md rename to docs/development/index.md diff --git a/mkdocs.yml b/mkdocs.yml index a7b22ac..11a91dc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -50,6 +50,6 @@ nav: - Check Android Intrusion Logs: "android/intrusion_logs.md" - Indicators of Compromise: "iocs.md" - Development: - - Development Instructions: "development.md" - - Custom CLI Commands: "custom_commands.md" + - Development Instructions: "development/index.md" + - Custom CLI Commands: "development/custom_commands.md" - License: "license.md"