| name | etherclaw-workflow |
| description | EtherClaw TaskTree execution — standalone daemon mode, PR lifecycle, progress tracking |
| triggers | ["etherclaw up","etherclaw status","etherclaw down","etherclaw daemon","autonomous mode","TaskTree execution","task completion"] |
EtherClaw Workflow Skill
現在の主要実行モード
Standalone モード (推奨)
etherclaw daemon --standalone --dry-run
etherclaw daemon --standalone
etherclaw daemon --standalone --foreground
etherclaw daemon --standalone --from EC-00200
詳細: etherclaw-standalone skill 参照。
Governance モード (Colony インフラ必要)
etherclaw up docs/tasktrees/20260207-my-task.toml
etherclaw up --autonomous
etherclaw down
TaskTree TOML フォーマット
version = "1.0"
id = "task-id"
title = "Human-readable title"
owner = "etherclaw-autonomous"
[metadata]
priority = "P2"
type = "feature"
[root]
id = "1"
name = "Root task"
estimate = { hours = 2 }
checkbox = "unchecked"
[[root.acceptance]]
description = "Builds successfully"
verification = "pack install-app etherclaw"
[[subtask]]
id = "1.1"
parent = "1"
name = "Implement X"
estimate = { hours = 1 }
checkbox = "unchecked"
acceptance = [
{ description = "Compiles", verification = "pack typecheck etherclaw" }
]
ファイル配置: docs/tasktrees/YYYYMMDD-<id>.toml
ステータス確認
etherclaw status
etherclaw validate
Idris2 プロジェクトでの acceptance verification
{ description = "Builds", verification = "pack install-app etherclaw" }
{ description = "Type checks", verification = "pack typecheck etherclaw" }
E2E テスト
etherclaw e2e standalone
etherclaw e2e governed
etherclaw e2e evm
etherclaw e2e
実装: EtherClaw.E2E.Runner (standalone), EtherClaw.E2E.GovernedRunner (governed)
詳細: docs/production/openclaw-e2e-lifecycle.md
関連 Skills
etherclaw-standalone — standalone daemon の詳細、ETHERCLAW.toml フォーマット
task-tree-format — TaskTree TOML 作成ルール
idris2-dev — Idris2 実装時の OOM 回避・パターン