From 32c20e67a24c44cf51c2703f98660947bc7704d2 Mon Sep 17 00:00:00 2001 From: Dione Date: Fri, 12 Jun 2026 07:08:05 +0000 Subject: [PATCH] docs: add remote Git credentials info to AGENTS.md --- AGENTS.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 818ca03..91707e6 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,6 +2,20 @@ **What it is:** A single-page HTML dashboard tracking cbBTC acquisition across wallets. No build step, no JS framework, no tests — just one `index.html` served by nginx. +## Remote Git + +**Repository:** `https://git.kapuscinski.pl/p1otek/dione.git` + +Credentials are stored in `~/.config/opencode/.env`: + +``` +GIT_USERNAME=p1otek +GIT_TOKEN= +GIT_ADDRESS=https://git.kapuscinski.pl/ +``` + +All git push/pull commands must use these credentials — do **not** hardcode the token in scripts or commands. Use the token via environment variable `GIT_TOKEN` or via the remote URL (`https://p1otek:${GIT_TOKEN}@git.kapuscinski.pl/p1otek/dione.git`). + ## How to run ```bash @@ -75,6 +89,7 @@ stream.connect(); | `revokeVerification(address, chain)` | Resets to unverified | | `findWallet(address, chain)` | Lookup helper | | `getWallets()` | Returns deep copy of state | +| `setWalletOrder(addresses)` | Reorders internal array to match address order, persists | ### WalletVerifier