From 94901c7d9c54fc904e0d776a420282d566a93740 Mon Sep 17 00:00:00 2001 From: achmad Date: Wed, 6 May 2026 14:57:32 +0700 Subject: [PATCH] chore: move DEVELOPMENT.md and TODO.md to docs/ --- CLAUDE.md | 1 + README.md | 2 +- DEVELOPMENT.md => docs/DEVELOPMENT.md | 5 +++-- TODO.md => docs/TODO.md | 0 4 files changed, 5 insertions(+), 3 deletions(-) rename DEVELOPMENT.md => docs/DEVELOPMENT.md (98%) rename TODO.md => docs/TODO.md (100%) diff --git a/CLAUDE.md b/CLAUDE.md index ab30d0b..1547f77 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -59,6 +59,7 @@ Android App → Instrumentation SDK → ADB Tunnel → Go Backend → React Fron | `frontend-react/` | — | Vite + React + TypeScript UI | | `android-sdk/` | `dev.achmad.droidscope` | Kotlin instrumentation SDK | | `scripts/` | — | `dev.sh`, `build.sh`, `download-adb.sh` | +| `docs/` | — | `DEVELOPMENT.md` (setup + build guide), `TODO.md` (implementation status) | ### Go workspace `go.work` links `./desktop` and `./backend-go` for local resolution. `desktop/go.mod` also has a `replace` directive — both are needed (`go.work` for IDE/build, `replace` for `go mod tidy`). diff --git a/README.md b/README.md index 4e788e9..ac4936a 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ DroidScope/ ## Getting Started -See [DEVELOPMENT.md](DEVELOPMENT.md) for full setup instructions. +See [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) for full setup instructions. **Quick start:** diff --git a/DEVELOPMENT.md b/docs/DEVELOPMENT.md similarity index 98% rename from DEVELOPMENT.md rename to docs/DEVELOPMENT.md index db4df66..7e0b0b1 100644 --- a/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -199,8 +199,9 @@ DroidScope/ │ ├── go.work ← Go workspace (links desktop + backend-go) ├── README.md ← Project overview and feature roadmap -├── TODO.md ← Implementation status -└── DEVELOPMENT.md ← This file +└── docs/ + ├── DEVELOPMENT.md ← This file + └── TODO.md ← Implementation status ``` --- diff --git a/TODO.md b/docs/TODO.md similarity index 100% rename from TODO.md rename to docs/TODO.md