feat: add test agent, python sdk, and external traffic validator
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 9s

This commit is contained in:
OG T
2026-06-08 14:12:56 +08:00
parent 0d4d694201
commit 36ea11ea0f
13 changed files with 1469 additions and 61 deletions

View File

@@ -4,12 +4,16 @@
# This script simulates an external AI agent discovering the network via the Beta Promo token.
API_URL=${1:-"https://agent.wooo.work"}
API_KEY="vw_beta_promo_2026"
AGENT_ID="test_agent_$(date +%s)"
API_KEY="${MCP_API_KEY:-vw_beta_promo_2026}"
AGENT_ID="${MCP_AGENT_ID:-test_agent_$(date +%s)}"
DEVELOPER_WALLET="${MCP_DEVELOPER_WALLET:-acct_demoagent001}"
SUBMIT="${MCP_DO_SUBMIT:-0}"
SUBMIT_DELAY_MS="${MCP_SUBMIT_DELAY_MS:-1500}"
echo "🚀 Simulating External AI Agent connecting to $API_URL"
echo "🔑 Using Public Beta Token: $API_KEY"
echo "🤖 Agent ID: $AGENT_ID"
echo "💳 Wallet: $DEVELOPER_WALLET"
echo "---------------------------------------------------"
# 1. Fetch Open Tasks
@@ -48,10 +52,12 @@ CLAIM_RESPONSE=$(curl -s -X POST "$API_URL/api/mcp/claim_task" \
-d '{
"task_id": "'"$TASK_ID"'",
"agent_id": "'"$AGENT_ID"'",
"developer_wallet": "0xTestWalletExternalAgent999"
"developer_wallet": "'"$DEVELOPER_WALLET"'"
}')
CLAIM_STATUS=$(echo $CLAIM_RESPONSE | grep -o '"status":"[^"]*"' | cut -d'"' -f4)
CLAIM_TOKEN=$(echo $CLAIM_RESPONSE | grep -o '"claim_token":"[^"]*"' | cut -d'"' -f4)
CLAIM_STATUS=$(echo $CLAIM_RESPONSE | grep -o '"status":"[^"]*"' | head -n 1 | cut -d'"' -f4)
TASK_LOCK_STATUS=$(echo $CLAIM_RESPONSE | grep -o '"status":"[^"]*"' | cut -d'"' -f4)
ERROR_MSG=$(echo $CLAIM_RESPONSE | grep -o '"error":"[^"]*"' | cut -d'"' -f4)
if [ -n "$ERROR_MSG" ]; then
@@ -59,7 +65,51 @@ if [ -n "$ERROR_MSG" ]; then
exit 1
fi
echo "✅ Task claimed successfully! Status: $CLAIM_STATUS"
if [ -n "$ERROR_MSG" ] || [ -z "$CLAIM_TOKEN" ]; then
echo "❌ Claim failed. Status=$CLAIM_STATUS Error=$ERROR_MSG"
echo "📄 Response: $CLAIM_RESPONSE"
if [ "$SUBMIT" = "1" ]; then
exit 1
fi
exit 0
fi
echo "✅ Task claimed successfully! Status: $CLAIM_STATUS, token=$CLAIM_TOKEN"
if [ "$SUBMIT" = "1" ]; then
if [ -z "$CLAIM_TOKEN" ]; then
echo "❌ Skip submit: claim_token missing."
exit 1
fi
echo "👉 3. Submitting Solution (submit_solution)..."
if [ "$SUBMIT_DELAY_MS" -gt 0 ]; then
sleep_time=$(echo "$SUBMIT_DELAY_MS" | awk 'BEGIN{FS=1} {printf "%f", $1/1000}')
sleep "$sleep_time"
fi
SUBMIT_RESPONSE=$(curl -s -X POST "$API_URL/api/mcp/submit_solution" \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-H "x-agent-id: $AGENT_ID" \
-d '{
"task_id": "'"$TASK_ID"'",
"claim_token": "'"$CLAIM_TOKEN"'",
"deliverables": {
"README.md": "Automated verification from external test agent."
},
"github_pr_url": "https://github.com/example/agent-task-demo/pull/999"
}')
SUBMIT_STATUS=$(echo $SUBMIT_RESPONSE | grep -o '"status":"[^"]*"' | cut -d'"' -f4)
SUBMIT_ERROR=$(echo $SUBMIT_RESPONSE | grep -o '"error":"[^"]*"' | cut -d'"' -f4)
if [ -n "$SUBMIT_ERROR" ]; then
echo "❌ Failed to submit solution: $SUBMIT_ERROR"
echo $SUBMIT_RESPONSE
exit 1
fi
echo "✅ Solution submitted successfully. Status: $SUBMIT_STATUS"
fi
# We won't submit solution because we don't have the real sandbox context.
echo "🎉 Test pipeline passed!"