Automations and AI agents — built to last
Find a file
2026-06-23 15:21:31 +00:00
agents Scribe Law 8: enforce uniformity across a series without being asked 2026-06-23 15:21:31 +00:00
automations add: ansible automation placeholder 2026-06-10 12:39:57 +00:00
decisions decision: replace OpenClaw with hybrid Bedrock approach 2026-06-10 12:39:55 +00:00
playbooks add: Ansible playbook to prepare racknerd3 for Forge 2026-06-10 13:14:06 +00:00
.gitignore Add .gitignore to keep secrets out of repo (values live in Bitwarden) 2026-06-23 12:45:30 +00:00
README.md Rename Forge -> ClawJr 2026-06-23 14:59:24 +00:00

ClawJr

Where agents are built, shaped, and hardened. (Formerly Forge — renamed 2026-06-23, successor to the retired Claw/OpenClaw.)

Vision

A hybrid automation platform: self-hosted orchestration (cron, bash, Ansible) calling AWS Bedrock for intelligence. No frameworks. No fragile plugin systems. Just scripts, prompts, and reliable execution.

Architecture

┌─────────────────────────────────────┐
│          Trigger Layer              │
│   cron · Ansible · webhook · CLI    │
└──────────────────┬──────────────────┘
                   │
┌──────────────────▼──────────────────┐
│          Agent Runtime              │
│   SOUL.md + workflow prompt + curl  │
│   → AWS Bedrock (Claude Haiku)     │
└──────────────────┬──────────────────┘
                   │
┌──────────────────▼──────────────────┐
│          Output Layer               │
│   Trillium · Obsidian · Telegram   │
│   S3 · logs                         │
└─────────────────────────────────────┘

Each agent is a directory. Each workflow is a bash script + prompt file. Intelligence comes from Bedrock. Control stays with you.

Principles

  1. No dependencies beyond bash, curl, jq, and AWS CLI
  2. Every execution logged (input, output, tokens, cost)
  3. SOUL.md is the single source of personality
  4. Model-agnostic — swap Bedrock for Ollama with one env var
  5. Agents have boundaries — they do what they do and nothing else

Structure

forge/
├── agents/
│   └── scribe/          # Knowledge enhancer, writer, diagrammer
├── automations/
│   ├── cron/            # Scheduled tasks
│   └── ansible/         # Infrastructure playbooks
├── decisions/           # Architecture Decision Records
└── README.md

Cost

Target: $215/month (Claude Haiku via Bedrock) for all agents combined.

Status

  • Project created
  • Scribe SOUL.md finalized
  • Bedrock access configured
  • First workflow (enhance_notes) operational
  • Telegram gateway wired