forked from Rockachopa/Timmy-time-dashboard
Add 4 new autonomous Hands using existing agent framework: Scout Hand (hands/scout/): - OSINT monitoring every hour - Monitors: HN, Reddit, RSS for Bitcoin/sovereign AI topics - Uses: web_search, rss_fetch, sentiment analysis Scribe Hand (hands/scribe/): - Content production daily at 9am - Produces: blog posts, docs, changelog - Uses: file ops, git tools, codebase indexer Ledger Hand (hands/ledger/): - Treasury tracking every 6 hours - Monitors: on-chain, Lightning balances, payment flows - Uses: lightning_balance, onchain_balance, payment_audit Weaver Hand (hands/weaver/): - Creative pipeline weekly on Sundays - Orchestrates: Pixel + Lyra + Reel for video production - Uses: creative_director, project management tools All Hands configured with: - HAND.toml manifests with schedules - SYSTEM.md prompts - Approval gates for write actions - Dashboard + Telegram output
31 lines
908 B
TOML
31 lines
908 B
TOML
# Weaver Hand — Creative Pipeline
|
|
# Runs weekly on Sundays at 10am
|
|
# Orchestrates multi-persona creative projects
|
|
|
|
[hand]
|
|
name = "weaver"
|
|
description = "Automated creative pipeline orchestration"
|
|
schedule = "0 10 * * 0"
|
|
enabled = true
|
|
version = "1.0.0"
|
|
author = "Timmy"
|
|
|
|
[tools]
|
|
required = ["creative_director", "create_project", "run_pipeline"]
|
|
optional = ["trend_analysis", "content_calendar"]
|
|
|
|
[approval_gates]
|
|
start_project = { action = "create", description = "Create new creative project", auto_approve_after = 300 }
|
|
publish_final = { action = "publish", description = "Publish completed work", auto_approve_after = 600 }
|
|
|
|
[output]
|
|
dashboard = true
|
|
channel = "telegram"
|
|
format = "markdown"
|
|
file_drop = "data/weaver_projects/"
|
|
|
|
[parameters]
|
|
weekly_themes = ["sovereign ai", "bitcoin philosophy", "local llm", "privacy tools"]
|
|
max_duration_minutes = 3
|
|
target_platforms = ["youtube", "twitter", "blog"]
|