Interior Budget

v1.0.0

Automatically generates detailed interior design budgets by space and project type using standardized templates with client and project details.

0· 38·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 137984917-cyber/interior-budget.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Interior Budget" (137984917-cyber/interior-budget) from ClawHub.
Skill page: https://clawhub.ai/137984917-cyber/interior-budget
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install interior-budget

ClawHub CLI

Package manager switcher

npx clawhub@latest install interior-budget
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (generate interior design budgets) match the included Python code: scripts create an Excel budget workbook by project, area, and type. The listed requirement (openpyxl) is appropriate. No unrelated credentials, binaries, or system-level access are requested.
Instruction Scope
SKILL.md instructs running generate_budget.py and generate-interactive.py, which is accurate. However SKILL.md references a local template path (/Users/laobaobei/Downloads/同步空间/…/预算.xlsx) while the provided code does not read any external template — it generates the workbook from built-in templates. The interactive script also supplies a default output path with a hardcoded home-directory username. These are minor mismatches and a potential source of confusion, but not evidence of hidden data collection.
Install Mechanism
No install spec is present (instruction-only installation), which minimizes risk. The skill.json lists python3 and openpyxl — the code imports openpyxl and will require that library be installed (pip). Nothing is downloaded from external URLs or written to system locations beyond the user-specified output file.
Credentials
The skill requests no environment variables or credentials and the code does not read environment variables or external configuration. There are no requests for unrelated secrets or system config paths.
Persistence & Privilege
The skill is not always-enabled and does not modify other skills or global agent settings. It runs only when invoked and writes only the Excel file to the output path specified by the user (or default path in the interactive script).
Assessment
This skill appears to do what it says: generate Excel budget templates. Before installing/running: (1) Ensure you have openpyxl installed (pip install openpyxl) or run in an environment with that dependency. (2) Note SKILL.md mentions a local template file that the code does not use — you can ignore or edit that text. (3) When using the interactive script, explicitly set the output path to avoid accidental writes to someone else's default path (the script's default uses /Users/laobaobei/Desktop/...). (4) The generated Excel includes a hardcoded studio address/phone in the header — remove or edit if you prefer. (5) There are no network calls or secret accesses in the code, but if you want extra caution, run the script in a sandbox or review the two Python files yourself; verify the repository listed in skill.json if you want upstream provenance.

Like a lobster shell, security has layers — review code before you run it.

latestvk974yj5mwvsqh4n759n560zqk185qrd5
38downloads
0stars
1versions
Updated 9h ago
v1.0.0
MIT-0

室内设计工程预算自动生成技能

功能

  • 基于隐室空间设计标准模板(爱琴海岸版)自动生成新预算表
  • 按空间自动拆分分项工程清单
  • 保留项目特征、品牌备注列格式
  • 支持不同面积、类型项目(家装/办公/餐饮)

使用方法

# 交互式生成
python3 generate_budget.py --output ~/Desktop/new_budget.xlsx

# 命令行参数
python3 generate_budget.py \
  --name "瑞安叠墅项目" \
  --client "陈总" \
  --address "瑞安市XX楼盘" \
  --area 210 \
  --type "home" \
  --output /path/to/output.xlsx

模板来源

标准模板:/Users/laobaobei/Downloads/同步空间/财务文件/爱琴海岸1-2001/杨总爱琴海岸预算.xlsx

格式规范(保持工作室标准)

  1. 表头:工程名称、客户姓名、地址、面积、联系方式
  2. 分空间列项:客餐厅、主卧、次卧、书房、厨房、卫生间、阳台等
  3. 每一项包含:序号、项目名称、项目特征、计量单位、工程量、单价、合价、备注(品牌)
  4. 最后汇总:总价、税金

Comments

Loading comments...