ワンクリックで
etherclaw-workflow
EtherClaw TaskTree execution — standalone daemon mode, PR lifecycle, progress tracking
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
EtherClaw TaskTree execution — standalone daemon mode, PR lifecycle, progress tracking
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A-Life 自律開発システムの監視者ガイド — ガバナンス優先介入原則、TMUX直接操作の緊急手順
EVM/ICP デプロイの安全手順とロールバック — InstanceFactory/TheWorld デプロイ、canister install、コントラクトデプロイ
etherclaw dump-s — ETHERCLAW.toml の [[lazy]] 全パッケージの仕様を集約出力
EtherClaw InstanceFactory/TheWorld cross-chain architecture - Optimistic Upgrader system spanning EVM (Base Mainnet) and ICP, ERC-7546, auditor approval flow
etherclaw daemon --standalone mode — ETHERCLAW.toml format, Architect/Executor role split, DogFeeding workflow
EtherClaw Tier-based hierarchical agent system - TaskTree depth から自動生成される Manager/Worker 階層
| 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"] |
# dry-run: 次タスク確認
etherclaw daemon --standalone --dry-run
# 起動 (Claude Code セッション外から、または supervisor 経由)
etherclaw daemon --standalone
# 強制フォアグラウンド実行
etherclaw daemon --standalone --foreground
# 特定タスクから開始
etherclaw daemon --standalone --from EC-00200
詳細: etherclaw-standalone skill 参照。
# TaskTree を登録して実行
etherclaw up docs/tasktrees/20260207-my-task.toml
# キューから自動選択して連続実行
etherclaw up --autonomous
# 停止
etherclaw down
version = "1.0"
id = "task-id"
title = "Human-readable title"
owner = "etherclaw-autonomous"
[metadata]
priority = "P2"
type = "feature" # feature|bugfix|refactor|docs
[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 # ETHERCLAW.toml 整合性
# ビルド確認
{ description = "Builds", verification = "pack install-app etherclaw" }
# 型検査のみ
{ description = "Type checks", verification = "pack typecheck etherclaw" }
# Standalone: Colony daemon 8 ステージ
etherclaw e2e standalone
# Governed: 12 ステージ (check-run + voting + attraction + cluster + submit + MCP)
etherclaw e2e governed
# EVM: 5 ステージ (Tokenomics build + Yul + Anvil + interaction + ERC-7546)
etherclaw e2e evm
# Help
etherclaw e2e
実装: EtherClaw.E2E.Runner (standalone), EtherClaw.E2E.GovernedRunner (governed)
詳細: docs/production/openclaw-e2e-lifecycle.md
etherclaw-standalone — standalone daemon の詳細、ETHERCLAW.toml フォーマットtask-tree-format — TaskTree TOML 作成ルールidris2-dev — Idris2 実装時の OOM 回避・パターン