Phase 3: Add structural improvements to training schema and stages

- Add depends_on field to training schema for stage dependencies
- Add difficulty field to training schema (beginner/intermediate/advanced/expert)
- Add estimated_time_minutes field to training schema
- Add structural fields to stage1_foundation.json (beginner, 30min, no dependencies)
- Add structural fields to stage2_operations_mastery.json (beginner, 45min, depends on stage1)
- Add structural fields to stage3_ai_operations.json (intermediate, 60min, depends on stage2)
- Add structural fields to stage4_marketplace_economics.json (intermediate, 60min, depends on stage2)
- Add structural fields to stage5_expert_operations.json (advanced, 90min, depends on stage3, stage4)
- Add structural fields to stage6_agent_identity_sdk.json (advanced, 75min, depends on stage5)
This commit is contained in:
aitbc
2026-05-07 09:46:17 +02:00
parent 23a736da61
commit e9eff46b47
7 changed files with 34 additions and 0 deletions

View File

@@ -1,6 +1,9 @@
{
"stage": "stage1_foundation",
"agent_type": "general",
"difficulty": "beginner",
"estimated_time_minutes": 30,
"depends_on": [],
"scenarios": [
"01_wallet_basics.md",
"02_transaction_sending.md",

View File

@@ -1,6 +1,9 @@
{
"stage": "stage2_operations_mastery",
"agent_type": "general",
"difficulty": "beginner",
"estimated_time_minutes": 45,
"depends_on": ["stage1_foundation"],
"scenarios": [
"10_plugin_development.md",
"11_ipfs_storage.md",

View File

@@ -1,6 +1,9 @@
{
"stage": "stage3_ai_operations",
"agent_type": "coordinator",
"difficulty": "intermediate",
"estimated_time_minutes": 60,
"depends_on": ["stage2_operations_mastery"],
"scenarios": [
"07_ai_job_submission.md",
"22_ai_training_agent.md",

View File

@@ -1,6 +1,9 @@
{
"stage": "stage4_marketplace_economics",
"agent_type": "wallet",
"difficulty": "intermediate",
"estimated_time_minutes": 60,
"depends_on": ["stage2_operations_mastery"],
"scenarios": [
"08_marketplace_bidding.md",
"09_gpu_listing.md",

View File

@@ -1,6 +1,9 @@
{
"stage": "stage5_expert_operations",
"agent_type": "coordinator",
"difficulty": "advanced",
"estimated_time_minutes": 90,
"depends_on": ["stage3_ai_operations", "stage4_marketplace_economics"],
"scenarios": [
"15_blockchain_monitoring.md",
"16_agent_registration.md",

View File

@@ -1,6 +1,9 @@
{
"stage": "stage6_agent_identity_sdk",
"agent_type": "coordinator",
"difficulty": "advanced",
"estimated_time_minutes": 75,
"depends_on": ["stage5_expert_operations"],
"scenarios": [
"16_agent_registration.md",
"24_swarm_coordinator.md"

View File

@@ -32,6 +32,22 @@
"type": "string"
}
},
"depends_on": {
"type": "array",
"description": "Stages that must be completed before this stage",
"items": {
"type": "string"
}
},
"difficulty": {
"type": "string",
"description": "Difficulty level of this training stage",
"enum": ["beginner", "intermediate", "advanced", "expert"]
},
"estimated_time_minutes": {
"type": "number",
"description": "Estimated time to complete this stage in minutes"
},
"training_data": {
"type": "object",
"required": ["operations"],