commit f3ecccd5e36c4284527360d379b1100c614da0dd Author: nanobot Date: Tue May 5 22:23:47 2026 +0200 init: ARA repository for WyLab stack diff --git a/README.md b/README.md new file mode 100644 index 0000000..b228e4a --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Agent-Native Research Artifacts + +Shared ARA knowledge packages for all services on the WyLab stack. + +## Structure +Each subdirectory is an ARA artifact for a specific project or system: +- `nanobot/` — nanobot AI agent system (heartbeat, memory, skills) +- `traefik-infrastructure/` — Traefik + DNS + Docker networking +- `ss14/` — Space Station 14 server CI/CD +- `minecraft/` — Minecraft server administration + +## Usage in containers +Mount this repo at `/ara` (read-only): +```yaml +volumes: + - /mnt/user/ara:/ara:ro +``` +Then read `/ara/[project]/PAPER.md` (~200 tokens) to check relevance, load deeper layers on demand. + +## Sync on Unraid +```bash +# Clone once +git clone https://git.wylab.me/nanobot/ara.git /mnt/user/ara + +# Auto-pull (add to cron or Unraid User Scripts) +cd /mnt/user/ara && git pull +```