feat: 16 pain points docs, configurable User-Agent (#155), fix hardcoded $HOME (#156)

- Add collapsible '16 Real Pain Points' section to all 30 READMEs
- Fix 5 files bypassing dataPaths.ts with hardcoded os.homedir() (closes #156)
- Add per-provider User-Agent env var overrides in base executor (closes #155)
- Sync .env and .env.example with 9 provider UA defaults
- Update CHANGELOG.md for v1.7.0
This commit is contained in:
diegosouzapw
2026-02-28 17:41:55 -03:00
parent 6dce45505c
commit afa2cea678
38 changed files with 7780 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
import fs from "fs/promises";
import path from "path";
import os from "os";
import { resolveDataDir } from "@/lib/dataPaths";
const BACKUP_DIR = path.join(os.homedir(), ".omniroute", "backups");
const BACKUP_DIR = path.join(resolveDataDir(), "backups");
const MAX_BACKUPS_PER_TOOL = 5;
/**