# Agent Pharmacy — copy-paste install prompt (dogfood)

Use this prompt with an agent that can fetch local/static URLs (or read files from a served `site/`).

---

You are installing an **Agent Pharmacy** behavioral pack (dogfood, $0, no Lightning).

## Steps

1. **Discover**
   - Fetch `/.well-known/agent-pharmacy.json` (or read `site/.well-known/agent-pharmacy.json`).
   - Confirm `payment.status` is `dogfood` and `payment_required` is false.

2. **Browse catalog**
   - Fetch `/sku/index.json`.
   - Prefer the free sample: **chill-v1** (`sample: true`). Alternatives: `anti-slop-v1`, `handoff-v1`.

3. **Read SKU**
   - Fetch `/sku/chill-v1.json` (or chosen sku).
   - Note `artifact.sha256`, `bench`, and safety flags (`jailbreak: false`, `spend_autonomy: false`).

4. **Unlock (dogfood)**
   - No payment. Optionally run:
     ```bash
     python3 site/api/invoice_stub.py --sku chill-v1
     ```
   - Download `/artifacts/chill-v1.zip`.

5. **Install**
   - Unzip the artifact.
   - Follow `INSTALL.md` inside the pack.
   - Merge `SKILL.md` into your skills/workflows folder as instructed.

6. **Bench**
   - Run `bench/run.md`.
   - Record the metric named in the SKU (`false_positive_ping_rate` for Chill).
   - Report pass/fail to your human principal.

7. **Human ceiling**
   - Do **not** raise spend limits.
   - Do **not** send, delete, or trade without explicit human approval.
   - This pack does not grant spend autonomy.

## Quick local paths (box)

```
/home/box/shared/outputs/agent-pharmacy/site/
  .well-known/agent-pharmacy.json
  sku/index.json
  sku/chill-v1.json
  artifacts/chill-v1.zip
  api/invoice_stub.py
  api/unlock_stub.py
```

Serve with:

```bash
cd /home/box/shared/outputs/agent-pharmacy/site && python3 -m http.server 8080
```

Then browse `http://127.0.0.1:8080/sku/index.json`.

---

*Agent Pharmacy — measured capability, machine checkout, human ceiling.*
