DEV Community

Daniel Ioni
Daniel Ioni

Posted on

🤖 AI Bounties Are Open!

5 New AI Bounties Available! Earn Monero (XMR) by Building AI Agents with Google Gemma Skills
📢 What's New?

We're excited to announce 5 new AI bounties for MyZubster! These bounties focus on integrating Google Gemma Skills to create intelligent agents for plant recognition, pet identification, fraud detection, quality scoring, and agent orchestration.

Total AI Bounty Pool: 0.30 XMR (≈ €60.00)
🤖 The AI Bounties

37: AI Plant Recognition 🌿

Detail Value
Bounty 0.06 XMR (≈ €12.00)
Goal Identify plant species from photos using Gemma Skills
Accuracy Target ≥ 95%
Skills AI, Node.js, Google Gemma Skills
Files src/ai/skills/plant-recognition.js

What you'll build:

Gemma Skills API integration for plant recognition

Species identification from uploaded photos

Confidence scoring system

Integration with PlantRegistrationContract
Enter fullscreen mode Exit fullscreen mode

javascript

// Example output
{
species: 'Quercus robur',
confidence: 0.95,
health: 'good',
recommendations: ['Water weekly', 'Full sun']
}

38: AI Pet Identification 🐾

Detail Value
Bounty 0.06 XMR (≈ €12.00)
Goal Identify pets via NFC + photo recognition
Accuracy Target ≥ 99% (NFC), ≥ 90% (photo)
Skills AI, NFC, Node.js
Files src/ai/skills/pet-identification.js

What you'll build:

NFC tag reading integration

AI pet species recognition from photos

Pet health assessment (excellent, good, fair, poor)

Integration with VerificationContract
Enter fullscreen mode Exit fullscreen mode

javascript

// Example output
{
species: 'dog',
breed: 'Golden Retriever',
nfcId: '04:12:34:56:78:90',
health: 'good',
confidence: 0.97
}

39: AI Fraud Detection 🛡️

Detail Value
Bounty 0.06 XMR (≈ €12.00)
Goal Detect fraud in Monero transactions
Accuracy Target ≥ 99%
Skills AI, Security, Monero
Files src/ai/skills/fraud-detection.js

What you'll build:

Anomaly detection in transactions

Suspicious pattern recognition

Real-time fraud alerts

Integration with PaymentContract
Enter fullscreen mode Exit fullscreen mode

javascript

// Example output
{
isFraud: false,
confidence: 0.99,
riskScore: 0.05,
reason: 'Transaction pattern normal'
}

40: AI Agent Orchestrator 🤖

Detail Value
Bounty 0.06 XMR (≈ €12.00)
Goal Coordinate multiple AI agents
Skills AI, Architecture, Microservices
Files src/orchestrator/agent-orchestrator.js

What you'll build:

Multi-agent coordination system

Task routing and prioritization

Agent status monitoring

Integration with all contracts
Enter fullscreen mode Exit fullscreen mode

javascript

// Example orchestration
const orchestrator = new AgentOrchestrator();
orchestrator.registerAgent('plant', plantAgent);
orchestrator.registerAgent('pet', petAgent);
orchestrator.registerAgent('payment', paymentAgent);

const result = await orchestrator.executeTask({
type: 'identifyPlant',
data: { photo: 'oak.jpg' }
});

41: AI Quality Scoring ⭐

Detail Value
Bounty 0.06 XMR (≈ €12.00)
Goal Score data quality for plants and pets
Accuracy Target ≥ 95%
Skills AI, Data Quality
Files src/ai/skills/quality-scoring.js

What you'll build:

Data completeness analysis

Photo quality assessment

GPS accuracy verification

Integration with VerificationContract
Enter fullscreen mode Exit fullscreen mode

javascript

// Example output
{
score: 0.85,
status: 'high',
details: {
completeness: 'complete',
accuracy: 'high',
freshness: 'recent'
}
}

💰 Payment Policy

MyZubster pays in MONERO (XMR) ONLY.
Accepted Rejected
✅ Monero (XMR) ❌ USDC, USDT, ETH, BTC
✅ Privacy & anonymity ❌ PayPal, bank transfers
✅ Micro-transactions ❌ Fiat currencies
🛠️ Technology Stack
Area Technology
AI Framework Google Gemma Skills
Language JavaScript / Node.js
Blockchain Monero (XMR)
Database MongoDB
Testing Jest
🚀 How to Claim
Step 1: Browse Issues

Visit: https://github.com/DanielIoni-creator/myzubster/issues?q=label%3Aai

Look for issues with the 💰 label and ai tag.
Step 2: Claim It

Comment on the issue:
text

"I'll take this!"

Step 3: Develop

Build the AI agent with Google Gemma Skills integration.
Step 4: Submit PR

Open a Pull Request with:

Your solution code

Tests (Jest)

Your Monero address in the PR description
Enter fullscreen mode Exit fullscreen mode

Step 5: Get Paid 💰

Receive payment in XMR within 24 hours of merge!
📊 AI Agent Architecture
text

┌─────────────────────────────────────────────────────────────────┐
│ AI AGENT SYSTEM │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────────────────────────────────────────────────┐ │
│ │ AGENT ORCHESTRATOR (#40) │ │
│ │ Coordinates all AI agents │ │
│ └──────────────────────────────────────────────────────────┘ │
│ │ │
│ ┌────────────────────┼────────────────────┐ │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ PLANT AGENT │ │ PET AGENT │ │ PAYMENT │ │
│ │ (#37) │ │ (#38) │ │ AGENT │ │
│ │ Recognition │ │ NFC + Photo │ │ (#39) │ │
│ │ │ │ │ │ Fraud │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
│ │ │ │ │
│ └────────────────────┼────────────────────┘ │
│ │ │
│ ▼ │
│ ┌──────────────────────────────────────────────────────────┐ │
│ │ QUALITY SCORING (#41) │ │
│ │ Evaluates data quality for all agents │ │
│ └──────────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘

🔗 Links
Resource Link
All AI Issues View Issues
Main Repo myzubster
AI Contract Docs AI_CONTRACT.md
Live Map http://188.213.161.186:33197
📝 Tags
text

ai, artificial-intelligence, google-gemma, gemma-skills, monero, blockchain, plants, pets, fraud-detection, quality-scoring, orchestration, machine-learning, computer-vision, nfc, opensource, bounties, xmr, web3, nodejs

🌱🤖🌍 Together, we're building the most intelligent and transparent ecosystem for plants and pets!

Built with ❤️ for the planet by DanielIoni-creator

Top comments (0)