Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

farmos-workforce农场劳动力

Agent Skill

farmos-workforce 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,088

周安装

587

GitHub Stars

公开资料未说明

下载量

4,696
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:farmos-workforce(农场劳动力)
来源仓库:https://github.com/brianppetty/farmos-workforce
安装命令:
openclaw skills install farmos-workforce
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install farmos-workforce

简介

查询员工数据、考勤表条目、时间表和请求。需要身份验证——员工看到自己的数据,经理看到团队。

SKILL.md

name
farmos-workforce
description
Query employee data, time clock entries, schedules, and requests. Requires authentication — employees see own data, managers see team.
tags
[farming, workforce, employees, timeclock]

FarmOS Workforce

Employee profiles, time clock, skills tracking, employee requests, and team calendar.

When to Use This

What this skill handles: Time clock (clock in/out), schedules, availability, time-off requests, certifications, employee profiles, overtime tracking, and payroll exports.

Trigger phrases: "I need [day] off", "who's working", "schedule", "clock in/out", "who's clocked in?", "overtime this week?", "any pending time-off requests?", "employee list", "CDL certifications"

What this does NOT handle: Task assignments or work orders (use farmos-tasks), equipment scheduling or maintenance (use farmos-equipment), pay rates or financial compensation questions (restricted to admin only via farmos-finance).

Minimum viable input: Any mention of schedule, availability, time off, or who is working. "I need Friday off" is enough.

Data Completeness

  1. Always state the count of employees, time entries, or requests returned: "Found 8 active employees" or "12 time entries this pay period."
  2. Time entry queries are date-bounded — always include start_date and end_date parameters to get the full picture for the requested period.
  3. If an endpoint fails, report it — don't silently present empty results as "no employees" or "no time entries."
  4. For payroll exports, verify the date range covers the full pay period before exporting.

Authentication

This skill accesses protected FarmOS endpoints that require a JWT token.

To get a token:

TOKEN=$(~/clawd/scripts/farmos-auth.sh manager)

Role mapping: Check ~/.clawdbot/farmos-users.json for the sender's role.

  • admin/manager: Can see all employee data, hours, payroll info.
  • employee: Can only see own profile and time entries. Do NOT use a manager token for employee queries — use the employee token so the API scopes correctly.

API Base

http://100.102.77.110:8006

Integration Endpoints (No Auth)

Employee List (for assignments)

GET /api/integration/employees

Returns: All employees with id, name, role. Use for task assignment dropdowns.

Active Employees

GET /api/integration/employees/active

Returns: Currently active employees only.

Authenticated Endpoints (JWT Required)

Employee Profiles

GET /api/employees — List all employees (manager+) GET /api/employees/{id} — Employee detail (manager+ or own profile) GET /api/employees/me — Current user's profile

Time Clock

POST /api/time/clock-in — Clock in (with optional GPS) POST /api/time/clock-out — Clock out GET /api/time/status — Current clock status for user GET /api/time/entries?start_date=2026-02-01&end_date=2026-02-13 — Time entries

Timesheet Approval (Manager)

POST /api/time/entries/{id}/approve — Approve timesheet entry GET /api/time/export?start_date=2026-02-01&end_date=2026-02-13&format=csv — Payroll export

Employee Requests

POST /api/requests — Submit time off/leave request GET /api/requests/my — My requests GET /api/requests/pending — Pending approvals (manager) POST /api/requests/{id}/approve — Approve POST /api/requests/{id}/reject — Reject with reason body: {"reason": "..."}

Calendar

GET /api/calendar/events?start=2026-02-01&end=2026-02-28 — Team calendar

Skills & Certifications

GET /api/skills — Skill definitions GET /api/employees/{id}/skills — Employee's skills and certifications

Usage Notes

  • Time entries include GPS coordinates if the employee clocked in from the field.
  • Overtime calculation: hours over 40/week.
  • Payroll export generates CSV compatible with common payroll systems.
  • Skills have expiry dates — flag any certifications expiring within 30 days.
  • NEVER share employee pay rates, hours, or personal info with other employees. Only managers and admins can see team-wide data.

Conversational Schedule Capture

Crew members communicate schedule needs casually. Recognize these patterns and capture them without making it feel like paperwork.

Capture Patterns

What They SayWhat It IsAction
"I need Thursday afternoon off"Time-off requestLog time-off, notify manager
"I can come in early tomorrow"Availability noteLog availability change
"I'll be late Monday, doctor appointment"Schedule noteLog late arrival, note reason
"Can I swap shifts with Jake on Friday?"Shift swap requestRoute to Brian/manager for approval
"I'm not going to be able to make it Saturday"Absence notificationLog absence, notify manager
"I've got a thing next Wednesday"Vague time-offLog it — don't ask what "thing" is

Bot Behavior

Extract from message:

  • Who (from Slack user identity or name mention)
  • When (day, date, time range)
  • How long (half day, full day, a few hours)
  • Reason (ONLY if volunteered — NEVER ask "what kind of appointment?")

Response pattern:

  • Confirm what you understood: "Got it — flagging Thursday afternoon off for you."
  • Tell them it's visible: "Brian will see it in the schedule."
  • If unclear timing, ask ONE clarifying question: "Need the whole afternoon or just leaving early?"
  • NEVER interrogate about reasons. "Appointment" is sufficient. Period.

Routing:

  • Log to workforce module API (POST /api/requests for time-off, use appropriate endpoint for availability)
  • Notify in #farm-workforce channel for visibility
  • For swap requests: notify both parties and Brian

Availability Updates

When crew mentions availability changes mid-conversation (not a formal request), still capture it:

  • "I might be able to work this Saturday if you need me" → log as tentative availability
  • "My kid has a game Friday evening so I need to leave by 3" → log early departure
  • "I can stay late tonight if we need to finish" → log extended availability

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.26%
按下载量换算3,722

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills