create-farmer
Create or schedule a context farmer. Checks existing farmers and offers to build new ones or schedule existing ones.
pinned to #8f8a6eeupdated 2 weeks ago
Ask your AI client: “install skills/create-farmer”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/create-farmermetahub onboarded this repo on the author's behalf.
If you own github.com/bradautomates/second-brain on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
173
Last commit
2 weeks ago
Latest release
published
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.8f8a6ee· 2 weeks ago
Documentation
41Description quality
19 words · 116 chars — "Create or schedule a context farmer. Checks existing farmers and offers to build…"
README is present and substantial
10,031 chars · 11 sections · 9 code blocks
Tags / topics declaredwarn
No manifest tags and no GitHub repo topics
Add tags to the manifest (or GitHub topics on the repo) so the registry's search and category filters surface this artifact.
README has usage / example sections
found: Installation
Homepage / docs URL declared
no homepage declared (registry will use the repo URL) — info-only, not blocking
Release history
1- releasecurrent8f8a6eewarn2 weeks ago
Contents
Farmer Manager
First Step
Check what already exists before asking the user anything:
- Scan existing farmers:
Globfor.claude/agents/*-farmer.md - Scan scheduled triggers: Use
/schedule(the schedule skill) with actionlistto see what's already running — or useRemoteTriggerdirectly if available - Present status: Show the user what farmers exist and which are scheduled
- Ask what they need: Build a new farmer, or schedule an existing one?
Build a New Farmer
1. Source & MCP
Ask what source to farm. Then check if an MCP server is already connected — use ToolSearch to look for tools matching that service name. If nothing found, search for an official remote-hosted MCP server and help them connect it.
2. Probe the connector
Use ToolSearch to discover all tools for the service. Test 1-2 read-only tools to verify connectivity and understand data shape.
3. Gather details
Ask what to monitor (channels, senders, calendars, keywords, URLs) and any custom classification rules beyond vault defaults.
4. Generate the subagent
Create .claude/agents/<name>-farmer.md. Read an existing farmer (e.g., slack-farmer.md) as a structural reference.
Frontmatter:
---
name: <name>-farmer
description: Farms context from <source> into the vault
model: sonnet
permissionMode: acceptEdits
---
Rules:
- No
toolsfield — MCP tools and ToolSearch inherited from parent - No
mcpServers— doesn't work for remote MCPs; ToolSearch handles discovery - Always
permissionMode: acceptEdits - Name must end in
-farmer— matchesSubagentStophook for auto-push - Body is the entire system prompt — no CLAUDE.md, no parent context
Body must include:
- Process — Discover tools via ToolSearch (search by service name), use generic tool references (never hardcoded prefixed names). Then: read config, check state, read source (24hr max), classify, deduplicate, git pull, write, update state. If no new data, skip to state update.
- Classification Rules — Source data → vault entity types
- Useful MCP Tools —
| Tool | Purpose |table with bare names. Read/search tools only. - Guidelines — Signal-to-noise, naming, attribution
All farmer-created files must include source: farmer/<name> and farmed: <timestamp> in frontmatter.
5. Allow read-only MCP tools
Add the farmer's read-only MCP tools to .claude/settings.json under permissions.allow. Only add read/search/list tools — never write/send/delete.
6. Update watchlists
Add a section to context/watchlists.md for the new source's filters.
7. Offer to schedule
After building, ask if they want to schedule it now. If yes, follow the scheduling flow below.
Schedule a Farmer
Use /schedule to create a cloud scheduled trigger. The prompt should be /farm <name>.
Key details to confirm:
- Frequency: Daily (recommended for most), weekdays, hourly, etc.
- Time: Convert user's local time to UTC for cron
- MCP connector: Must be attached to the trigger
- Environment: full-access unless they specify otherwise
Farmers must run as subagents via /farm <name>, not inline prompts — this gives isolated context and triggers the SubagentStop hook for auto-push.
Other scheduling options
- Desktop scheduled: Desktop app > Schedule > New local task. Needs machine on.
- Session-scoped:
/loop 30m /farm <name>— active session only. - Manual:
/farm <name>— on demand.
Reviews
No reviews yet. Be the first.
Related
Verification Before Completion
Evidence before assertions, always
Writing Plans
Turn specs into phased implementation plans
Test-Driven Development
Red → green → refactor discipline for any feature or bugfix
mh install skills/create-farmer