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

farmos-land-portfolio法莫斯土地组合

Agent Skill

farmos-land-portfolio 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,008

周安装

667

GitHub Stars

公开资料未说明

下载量

5,336
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install farmos-land-portfolio

简介

farmos-land-portfolio 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。

  • 它能查询土地所有权、租赁、房东信息和土地付款,编写付款管理和租约续订操作。
  • 安装命令为 openclaw skills install farmos-land-portfolio,需确认权限范围和维护状态。
  • 使用时需注意是否会触发联网、命令执行或文件读写操作。
  • 建议结合来源仓库和原始 README 核验具体用法。

SKILL.md

name
farmos-land-portfolio
description
Query land ownership, leases, landlord info, and land payments. Write operations for payment management and lease renewals.
tags
[farming, land, leases, landlords]

FarmOS Land Portfolio

Track owned and leased land, lease terms, landlord relationships, payments, and annual land costs.

CRITICAL: Data Completeness Rules

NEVER use partial or truncated data. These rules are non-negotiable:

  1. NEVER use /api/integration/dashboard — it truncates results to 5 items. Partial payment data is worse than no data because it creates a false sense of completeness.
  2. ALWAYS use the /all endpoints listed below for complete data.
  3. If an endpoint returns an error or empty results, REPORT THE FAILURE to the user. Do not silently fall back to a different endpoint or present partial data.
  4. ALWAYS state the total count of records returned so the user knows the data is complete. Example: "Found 11 payments due in March totaling $175,058."
  5. If you cannot get complete data, say so explicitly. "I was unable to retrieve complete payment data" is infinitely better than showing 5 of 11 payments.

When This Skill Triggers

  • "When do our leases expire?"
  • "What's the rent on the Smith ground?"
  • "Total land costs this year?"
  • "Show overdue payments"
  • "Landlord contact info"
  • "Cost per acre by parcel"
  • "List all leased parcels"
  • "What payments are due in March?"
  • "Cash requirements for next month"
  • "Mark payment [X] as paid"
  • "Mark all March payments paid"
  • "Renew the Smith lease"
  • "Preview lease renewals"

Access Control

Lease terms, rent amounts, and landlord info are sensitive business data. Restrict to admin or manager roles only.

Role mapping: Check the sender's role in ~/.openclaw/farmos-users.json. If the user is not admin or manager, tell them they don't have access to land portfolio data.

API Base

http://100.102.77.110:8009

Integration Endpoints (No Auth Required) — READ OPERATIONS ONLY

IMPORTANT: Use auth endpoints for WRITE operations (mark-paid, renewals). Use integration /all endpoints for READ operations (listing payments, leases, landlords).

Payments (FULL — use this, not dashboard)

GET /api/integration/payments/all

  • Returns ALL payments with full details — parcel names, landlord names, overdue status
  • Query parameters:

- status — pending, paid, overdue, scheduled - payment_type — rent, mortgage, property_tax, insurance, improvement, other - parcel_id — filter by specific parcel - due_date_from — YYYY-MM-DD range start - due_date_to — YYYY-MM-DD range end - crop_year — filter by crop year

  • Examples:

- All overdue: /api/integration/payments/all?status=overdue - March 2026 payments: /api/integration/payments/all?due_date_from=2026-03-01&due_date_to=2026-03-31 - All rent payments: /api/integration/payments/all?payment_type=rent

Upcoming Payments (next N days)

GET /api/integration/payments/upcoming?days=30

  • Returns ALL upcoming payments within N days (no truncation)
  • Use days=60 or days=90 for longer lookahead

Leases (FULL)

GET /api/integration/leases/all

  • Returns ALL leases with landlord contact info, rent terms, expiration status
  • Query parameters:

- status — active, expired - landlord_id — filter by landlord

Expiring Leases

GET /api/integration/leases/expiring?days=90

  • Returns ALL leases expiring within N days

Landlords (FULL)

GET /api/integration/landlords/all

  • Returns ALL landlords with contact info, active lease count, total acres, total rent

Parcels

GET /api/integration/parcels

  • Returns ALL parcels with ownership type, acres, county
  • Query parameter: ownership_type — owned, leased

Summary Stats

GET /api/integration/summary

  • Total acres, owned/leased breakdown, parcel/lease/landlord counts, annual cost

Annual Land Costs (by month and entity)

GET /api/integration/finance/costs?year=2026

  • Monthly cost breakdown by category (rent, mortgage, tax, insurance)
  • Entity breakdown
  • Query parameters: year, entity_id

Cost Per Field (for P&L)

GET /api/integration/finance/cost-per-field?year=2026

  • Land costs allocated to production fields
  • Query parameters: year, entity_id

Overdue Items

GET /api/integration/tasks/overdue

  • All overdue payments and reminders — high priority items

Actionable Items

GET /api/integration/tasks/actionable?days_ahead=30

  • Upcoming payments, expiring leases, pending reminders

Authenticated Endpoints — WRITE OPERATIONS

These require JWT auth. See Authentication section below.

Authentication

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

To get a token: Run the auth helper with the appropriate role:

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

To use the token: Include it as a Bearer token:

curl -H "Authorization: Bearer $TOKEN" http://100.102.77.110:8009/api/endpoint

Token expiry: Tokens last 15 minutes. If you get a 401 response, request a new token.

Mark Single Payment Paid

POST /api/payments/{id}/mark-paid Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "paid_date": "2026-02-15",
  "notes": "Check #1234"
}

Mark Multiple Payments Paid (Bulk)

POST /api/payments/bulk/mark-paid Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "payment_ids": [12, 34, 56],
  "paid_date": "2026-02-15",
  "notes": "Batch check run"
}

Mark Payments Paid by Date Range

POST /api/payments/bulk/mark-paid-by-date Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "due_date_from": "2026-03-01",
  "due_date_to": "2026-03-31",
  "paid_date": "2026-02-15",
  "payment_type": "rent",
  "notes": "March rent payments"
}

Use this when the user says "mark all March payments as paid" or similar bulk date-based operations.

Preview Lease Renewal

POST /api/leases/renewal-preview Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "lease_ids": [5, 12],
  "new_start_date": "2027-03-01",
  "rent_increase_percent": 3.0
}

Returns: Preview of what the renewed leases would look like, including new payment schedules. Use this BEFORE executing bulk renewals so the user can confirm.

Execute Bulk Lease Renewal

POST /api/leases/bulk-renew Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "lease_ids": [5, 12],
  "new_start_date": "2027-03-01",
  "new_end_date": "2028-02-28",
  "new_rent_amount": 52000.00,
  "rent_increase_percent": 3.0,
  "notes": "Annual renewal with 3% increase"
}

IMPORTANT: Always preview first, confirm with user, then execute.

Year-End Rollover Preview

POST /api/payments/year-end-rollover/preview Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "from_year": 2026,
  "to_year": 2027
}

Returns: Preview of payment schedules that would be created for the new crop year.

Year-End Rollover Execute

POST /api/payments/year-end-rollover/execute Authorization: Bearer {token} Content-Type: application/json

Body:

{
  "from_year": 2026,
  "to_year": 2027,
  "apply_rent_increase": true,
  "rent_increase_percent": 2.5
}

IMPORTANT: This creates next year's payment schedules based on current year leases. Always preview first.

FORBIDDEN Endpoints — Do NOT Use

EndpointWhy
GET /api/integration/dashboardTruncates to 5 items. NEVER use this.

Key Concepts

  • Parcel: A land unit — either owned or leased.
  • Lease types: Cash rent, crop share, flex rent.
  • Lease expiration: Critical to track — approaching expirations need proactive attention.
  • Land payments: Rent, mortgage, property tax, insurance — each with due dates.

Usage Notes

  • Lease expiration tracking is the highest-value query — always flag leases expiring within 6 months.
  • Payment status (due/overdue) is critical — flag overdue payments immediately.
  • Cost per acre analysis helps compare owned vs leased economics.
  • Landlord contact info is private — never share outside admin/manager channels.
  • When asked about "cash requirements" or "what do we owe", always use /api/integration/payments/all with date filtering to get the COMPLETE picture.
  • For financial planning questions, combine /api/integration/payments/all with /api/integration/finance/costs for the full view.
  • Write operations: Always use authenticated endpoints for marking payments paid or renewing leases. Preview first when doing bulk operations.
  • Bulk payment marking: When user says "mark all March payments paid", use the bulk-by-date endpoint rather than individual calls.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.18%
按下载量换算4,812

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills