# Send Fellow Aiden Precision Coffee Maker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fellow-aiden",
    "name": "Fellow Aiden Precision Coffee Maker",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/mogglemoss/fellow-aiden",
    "canonicalUrl": "https://clawhub.ai/mogglemoss/fellow-aiden",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fellow-aiden",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fellow-aiden",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "requirements.txt",
      "fellow.py",
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fellow-aiden",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T12:21:14.961Z",
      "expiresAt": "2026-05-08T12:21:14.961Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fellow-aiden",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fellow-aiden",
        "contentDisposition": "attachment; filename=\"fellow-aiden-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fellow-aiden"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fellow-aiden"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fellow-aiden",
    "downloadUrl": "https://openagent3.xyz/downloads/fellow-aiden",
    "agentUrl": "https://openagent3.xyz/skills/fellow-aiden/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fellow-aiden/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fellow-aiden/agent.md"
  }
}
```
## Documentation

### Fellow Aiden ☕

Control your Fellow Aiden smart coffee brewer via chat.

### Setup

Set your Fellow account credentials as environment variables:

FELLOW_EMAIL=your@email.com
FELLOW_PASSWORD=yourpassword

The skill will handle authentication automatically.

### Brewer Info

Ask things like:

"What's my brewer called?"
"Show me my Aiden's status"
"What firmware is my brewer on?"

python3 {baseDir}/fellow.py info

### Profiles

Brew profiles control every parameter of your brew: water temperature, bloom, pulse intervals, and more.

List all profiles:

python3 {baseDir}/fellow.py profiles list

Get a specific profile (by title, fuzzy match supported):

python3 {baseDir}/fellow.py profiles get --title "Light Roast"
python3 {baseDir}/fellow.py profiles get --title "light" --fuzzy
python3 {baseDir}/fellow.py profiles get --id p3

Create a new profile:

python3 {baseDir}/fellow.py profiles create \\
  --title "My Morning Brew" \\
  --ratio 15 \\
  --bloom \\
  --bloom-ratio 2 \\
  --bloom-duration 30 \\
  --bloom-temp 96 \\
  --ss-pulses 3 \\
  --ss-interval 20 \\
  --ss-temps "96,97,98" \\
  --batch-pulses 2 \\
  --batch-interval 30 \\
  --batch-temps "96,97"

Delete a profile:

python3 {baseDir}/fellow.py profiles delete --id p3
python3 {baseDir}/fellow.py profiles delete --title "Old Recipe" --fuzzy

Import a profile from a brew.link share URL:

python3 {baseDir}/fellow.py profiles import --url "https://brew.link/p/ws98"

Share a profile (generates a brew.link URL):

python3 {baseDir}/fellow.py profiles share --id p2
python3 {baseDir}/fellow.py profiles share --title "My Favorite"

### Schedules

Schedules let the Aiden brew automatically on a weekly timer.

List all schedules:

python3 {baseDir}/fellow.py schedules list

Create a schedule:

Days are specified as a comma-separated list: sun,mon,tue,wed,thu,fri,sat

Time is specified as HH:MM in 24-hour format (local time is converted to seconds-from-midnight automatically).

# Brew every weekday at 7:30am, 950ml, using profile p2
python3 {baseDir}/fellow.py schedules create \\
  --days "mon,tue,wed,thu,fri" \\
  --time "07:30" \\
  --water 950 \\
  --profile-id p2

# Brew Mon/Wed/Fri at 8:00am
python3 {baseDir}/fellow.py schedules create \\
  --days "mon,wed,fri" \\
  --time "08:00" \\
  --water 750 \\
  --profile-id p0

Delete a schedule:

python3 {baseDir}/fellow.py schedules delete --id s0

### Usage Guidance for the Agent

When the user asks to "brew" or mentions coffee, check their profiles first and suggest relevant ones.
Profile titles support fuzzy matching — you don't need an exact match.
Water amount is in millilitres (150–1500ml).
Temperatures are in Celsius.
Profile IDs look like p0, p1, etc. Schedule IDs look like s0, s1, etc.
When creating a profile from natural language (e.g. "make me a light roast profile"), use sensible defaults:

ratio: 15–17 for lighter roasts, 14–15 for darker
bloom: enabled, bloomRatio 2, bloomDuration 30s
temperatures: 90–93°C for light, 93–96°C for medium, 96–98°C for dark


Always confirm with the user before deleting profiles or schedules.
When sharing a profile, present the brew.link URL clearly so the user can copy it.
The --fuzzy flag on profiles get and profiles delete enables approximate title matching — use it when the user gives an informal name.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mogglemoss
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T12:21:14.961Z
- Expires at: 2026-05-08T12:21:14.961Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fellow-aiden)
- [Send to Agent page](https://openagent3.xyz/skills/fellow-aiden/agent)
- [JSON manifest](https://openagent3.xyz/skills/fellow-aiden/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fellow-aiden/agent.md)
- [Download page](https://openagent3.xyz/downloads/fellow-aiden)