Files
aitbc/docs/beginner/04_miners/3_job-management.md
AITBC System dda703de10 feat: implement v0.2.0 release features - agent-first evolution
 v0.2 Release Preparation:
- Update version to 0.2.0 in pyproject.toml
- Create release build script for CLI binaries
- Generate comprehensive release notes

 OpenClaw DAO Governance:
- Implement complete on-chain voting system
- Create DAO smart contract with Governor framework
- Add comprehensive CLI commands for DAO operations
- Support for multiple proposal types and voting mechanisms

 GPU Acceleration CI:
- Complete GPU benchmark CI workflow
- Comprehensive performance testing suite
- Automated benchmark reports and comparison
- GPU optimization monitoring and alerts

 Agent SDK Documentation:
- Complete SDK documentation with examples
- Computing agent and oracle agent examples
- Comprehensive API reference and guides
- Security best practices and deployment guides

 Production Security Audit:
- Comprehensive security audit framework
- Detailed security assessment (72.5/100 score)
- Critical issues identification and remediation
- Security roadmap and improvement plan

 Mobile Wallet & One-Click Miner:
- Complete mobile wallet architecture design
- One-click miner implementation plan
- Cross-platform integration strategy
- Security and user experience considerations

 Documentation Updates:
- Add roadmap badge to README
- Update project status and achievements
- Comprehensive feature documentation
- Production readiness indicators

🚀 Ready for v0.2.0 release with agent-first architecture
2026-03-18 20:17:23 +01:00

1.5 KiB

Job Management

Accept and complete jobs on the AITBC network.

Overview

Jobs are assigned to miners based on GPU availability, price, and reputation.

Accept Jobs

Manual Acceptance

aitbc miner jobs --available
aitbc miner accept --job-id <JOB_ID>

Auto-Accept

aitbc miner auto-accept enable --max-concurrent 4

Auto-Accept Settings

# Set GPU requirements
aitbc miner auto-accept --gpu v100 --gpu-count 1-4

# Set price range
aitbc miner auto-accept --min-price 0.08 --max-price 0.12

Job States

State Description
assigned Job assigned, waiting to start
starting Preparing environment
running Executing job
uploading Uploading results
completed Job finished successfully
failed Job error occurred

Monitor Jobs

Check Status

aitbc miner job-status --job-id <JOB_ID>

Watch Progress

aitbc miner watch --job-id <JOB_ID>

List Active Jobs

aitbc miner jobs --active

Complete Jobs

Manual Completion

aitbc miner complete --job-id <JOB_ID>

Upload Results

aitbc miner upload --job-id <JOB_ID> --path ./results

Handle Failures

Retry Job

aitbc miner retry --job-id <JOB_ID>

Report Issue

aitbc miner report --job-id <JOB_ID> --reason "gpu-error"

Next