diff --git a/docs/agent-training/foundation_commands_reference.json b/docs/agent-training/foundation_commands_reference.json new file mode 100644 index 00000000..612387e8 --- /dev/null +++ b/docs/agent-training/foundation_commands_reference.json @@ -0,0 +1,68 @@ +{ + "stage": 1, + "title": "Foundation – Wallets & Accounts", + "prerequisites": [ + "AITBC node running", + "Genesis wallet funded (999,999,890 AIT)" + ], + "commands": [ + { + "cmd": "wallet create", + "args": ["training-w1", "--password", "abc123"], + "exit_code": 0 + }, + { + "cmd": "wallet list", + "args": [], + "re": "training-w1" + }, + { + "cmd": "wallet", + "args": ["--wallet-name", "genesis", "send", "proposer", "1000000", "--fee", "10", "--password", ""], + "exit_code": 0 + }, + { + "cmd": "mining", + "args": ["start"], + "exit_code": 0 + }, + { + "cmd": "sleep", + "args": ["15"], + "exit_code": 0 + }, + { + "cmd": "wallet", + "args": ["--wallet-name", "proposer", "send", "training-w1", "100", "--fee", "10", "--password", ""], + "exit_code": 0 + }, + { + "cmd": "mining", + "args": ["start"], + "exit_code": 0 + }, + { + "cmd": "sleep", + "args": ["15"], + "exit_code": 0 + }, + { + "cmd": "wallet balance", + "args": ["training-w1"], + "re": "100" + } + ], + "expected": { + "wallet_exists": { + "type": "value", + "value": true + }, + "balance": { + "type": "value", + "value": { + "symbol": "AIT", + "amount": 100 + } + } + } +} \ No newline at end of file diff --git a/docs/agent-training/stage10_failure_recovery.json b/docs/agent-training/stage10_failure_recovery.json index 8cae5747..008c9db3 100644 --- a/docs/agent-training/stage10_failure_recovery.json +++ b/docs/agent-training/stage10_failure_recovery.json @@ -2,6 +2,7 @@ "stage": 10, "stage_name": "Failure Recovery & Production Operations", "stage_description": "Learn how to handle real-world failures, monitor production systems, and debug AITBC operations", + "agent_type": "general", "prerequisites": [ "Stage 9: Multi-Chain Architecture" ], diff --git a/docs/agent-training/stage8_advanced_agent_specialization.json b/docs/agent-training/stage8_advanced_agent_specialization.json index 95a0711b..466e5cd4 100644 --- a/docs/agent-training/stage8_advanced_agent_specialization.json +++ b/docs/agent-training/stage8_advanced_agent_specialization.json @@ -1,6 +1,6 @@ { "stage": "stage8_advanced_agent_specialization", - "agent_type": "specialized", + "agent_type": "general", "difficulty": "expert", "estimated_time_minutes": 90, "skill_level": "expert", diff --git a/docs/agent-training/stage9_multi_chain_architecture.json b/docs/agent-training/stage9_multi_chain_architecture.json index b3c6c424..8a574ba4 100644 --- a/docs/agent-training/stage9_multi_chain_architecture.json +++ b/docs/agent-training/stage9_multi_chain_architecture.json @@ -1,6 +1,6 @@ { "stage": "stage9_multi_chain_architecture", - "agent_type": "architect", + "agent_type": "general", "difficulty": "expert", "estimated_time_minutes": 120, "skill_level": "master",