Real Estate
Native OpenClaw real-estate plugin with local workflow storage and planning tools
Community code plugin. Review compatibility and verification before install.
real-estate · runtime id real-estate
Install
openclaw plugins install clawhub:real-estateLatest Release
Version 0.1.0
Compatibility
{
"builtWithOpenClawVersion": "0.1.0",
"pluginApiRange": ">=2026.3.23"
}Capabilities
{
"bundledSkills": [],
"capabilityTags": [
"executes-code"
],
"channels": [],
"commandNames": [],
"configSchema": true,
"configUiHints": false,
"executesCode": true,
"hooks": [],
"httpRouteCount": 0,
"materializesDependencies": false,
"providers": [],
"runtimeId": "real-estate",
"serviceNames": [],
"setupEntry": false,
"toolNames": []
}Security Scan
OpenClaw
Suspicious
high confidencePurpose & Capability
Name/description align with the code and tools: the bundle implements a local TaskStore writing a JSON file, and exposes create/list/update/complete/reopen/delete/note/agenda tools. The default storagePath (~/.openclaw/state/real-estate/real-estate.json) and config schema match the described functionality.
Instruction Scope
SKILL.md runtime instructions are limited to installing/building the plugin, enabling it, restarting the gateway, and using the real_estate_* tools. The plugin code performs only local filesystem operations (mkdir, readFile, writeFile, rename) on the configured storagePath and does not make outbound network calls or read unrelated system files.
Install Mechanism
There is no remote download/install spec — SKILL.md instructs running npm install and build locally. package.json lists only small dependencies (@sinclair/typebox, openclaw), but the provided package-lock.json contains many transitive packages (including AWS SDK packages). Those transitive deps increase surface area but are not imported by the plugin code; the install mechanism itself is standard (npm) and not a direct high-risk download-from-arbitrary-URL pattern.
Credentials
The skill declares no required environment variables, credentials, or config path requirements beyond a user-provided storagePath. The plugin does local file I/O only and does not attempt to access unrelated credentials or environment variables.
Persistence & Privilege
skills/real-estate/SKILL.md contains metadata {"openclaw":{"always":true}} which requests the skill be force-enabled permanently. The registry-level flags presented to you at the top show always:false, creating a mismatch. 'always:true' grants the plugin permanent inclusion in all agent runs; the plugin's purpose (local task manager) does not obviously require being always-on. This is a non-trivial privilege escalation and should be justified before installation.
What to consider before installing
This plugin's code and SKILL.md otherwise look coherent for a local task manager: it only reads/writes a JSON file in the configured storagePath and exposes tools for tasks. However, the skill file requests always:true (force-enabled in every agent run), which increases its runtime privilege without a clear reason. Before installing, ask the publisher why the plugin needs to be always-enabled; consider editing or removing the metadata to avoid permanent inclusion. Also: (1) review and, if desired, change the default storagePath to a location you control; (2) audit the package-lock.json if you want to limit transitive dependencies (the code does not import AWS or external network clients, but the lockfile contains transitive SDK packages); (3) install and run the plugin in a restricted/sandboxed environment first; and (4) if you accept it, grant it only the minimal config (explicit storagePath) and do not enable always:true unless you understand the need.Verification
{
"hasProvenance": false,
"scanStatus": "pending",
"scope": "artifact-only",
"sourceCommit": "5116351b4408558ab43188d53d84d32453cc092c",
"sourceRepo": "clawic/plugins",
"sourceTag": "main",
"summary": "Validated package structure and linked the release to source metadata.",
"tier": "source-linked"
}Tags
{
"latest": "0.1.0"
}Real Estate Plugin
Native OpenClaw plugin that adds local workflow management with:
- task creation, listing, updates, completion, reopening, and deletion
- projects, tags, priorities, due dates, scheduling, and estimates
- checklist items and task notes
- recurring tasks with automatic next-instance creation
- agenda views for overdue, due soon, scheduled, and backlog work
Install
npm install
npm run build
openclaw plugins install .
openclaw plugins enable real-estate
openclaw gateway restart
Config
{
plugins: {
entries: {
"real-estate": {
enabled: true,
config: {
storagePath: "~/.openclaw/state/real-estate/real-estate.json",
defaultProject: "inbox",
agendaHorizonDays: 7,
autoArchiveCompletedDays: 30,
},
},
},
},
}
If storagePath is omitted, the plugin stores data in ~/.openclaw/state/real-estate/real-estate.json.
Tools
real_estate_createreal_estate_listreal_estate_updatereal_estate_completereal_estate_reopenreal_estate_deletereal_estate_notereal_estate_agenda
