Agent Workforce
Agent Workforce cho phép một Bestie runtime local giữ một tập agent profile cố định cùng hàng đợi task local. Tính năng này phù hợp khi công việc lặp lại cần một role có tên và task record có thể kiểm tra, thay vì một yêu cầu chat ngẫu hứng.
Agent profile và task được giữ trong Bestie runtime local. Tạo agent hoặc giao việc không tự chạy task: dùng bestie agents run khi bạn muốn xử lý các task queued.
Tạo agent
Phần tiêu đề “Tạo agent”Tạo profile với ID ổn định, tên hiển thị, role và mô tả cách làm việc:
bestie agents hire \ --id docs \ --name "Docs Editor" \ --role documentation \ --description "Maintain accurate local product documentation." \ --model openai/gpt-4o-mini \ --tools internal.read_url,internal.write_file--model và --tools là optional. Lệnh ghi prompt file cho agent và in path của file đó. Kiểm tra agent đã cấu hình bằng:
bestie agents listbestie agents show docsGiao và chạy việc
Phần tiêu đề “Giao và chạy việc”Giao task cho một agent đang có:
bestie agents assign \ --agent docs \ --title "Review onboarding guide" \ --brief "Check the onboarding guide against the current CLI behavior."Xem hàng đợi, rồi chạy các task đang chờ:
bestie agents tasksbestie agents tasks --agent docs --status queuedbestie agents runbestie agents run --agent docs --limit 1Dùng --watch để tiếp tục xử lý task mới được queue cho đến khi bạn dừng lệnh. --interval-ms điều khiển khoảng polling và phải là số nguyên dương.
bestie agents run --watch --interval-ms 5000Task có các trạng thái queued, in_progress, done, blocked và canceled. Bạn có thể xem task hoặc ghi thủ công trạng thái và kết quả:
bestie agents task <id>bestie agents task-status <id> --status blocked --result "Waiting for the provider configuration."Pause, resume và remove
Phần tiêu đề “Pause, resume và remove”Pause agent để agent không xử lý task đang chờ, sau đó resume khi sẵn sàng:
bestie agents pause docsbestie agents resume docsXóa profile bằng:
bestie agents remove docsHãy review task trước khi remove. Không đưa secret vào task brief vì brief được lưu local cùng workforce task record.
