← Back to Skills Marketplace
jimmygx

国顺施工日志助手

by jimmygx · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
94
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install guoshun-inspection-logger
Description
基于江苏省施工监理标准,自动将施工口述或文字描述生成规范的Word巡检日志文档,包括监理、施工、安全等类型。
README (SKILL.md)

guoshun-inspection-logger

施工日志/巡检记录AI生成器 - 江苏国顺智能科技有限公司专用。

功能概述

基于江苏省建设工程监理/施工标准化文档格式,将口头描述或文字描述自动转换为标准格式的Word巡检记录文档。

支持的记录类型

类型 格式编号 说明
监理日志 FH-001 监理员填写,记录施工现场监理情况
施工日志 SG-001 施工员填写,记录施工情况
安全巡检记录 AQ-001 安全员日常巡检记录
隐蔽工程验收记录 YJ-001 隐蔽工程验收签字表
危大工程巡视记录 WD-001 危大工程专项巡视记录

触发方式

当用户描述以下场景时激活此技能:

  • "帮我生成监理日志"
  • "写一份施工日志"
  • "生成安全巡检记录"
  • "做巡检记录"
  • "生成Word巡检文档"
  • "帮我写监理日志"
  • 上传包含施工描述的文字

使用流程

第一次使用

  1. 输入项目基本信息(仅需一次,之后自动保存):
项目名称:XXX智能化工程
施工单位:江苏国顺智能科技有限公司
监理单位:XXX监理有限公司
项目经理:张三
技术负责人:李四
施工现场形象进度:主体结构施工中
  1. 输入口头或文字描述
"今天A栋5层综合布线穿线,来了8个水电工、1个安全员,用了2台振动棒、1台手提切割机,
完成穿管敷设80%、扎带固定60%。下午3点发现5层东侧1处线缆外皮破损,
已要求施工队4月5日前更换。天气晴,气温18-26℃。"
  1. AI自动生成标准文档,返回Word文件下载链接。

后续使用

直接输入描述文字即可,自动使用已保存的项目信息。

输入描述示例

监理日志

"今天A栋5层浇混凝土,来了8个工人,2台振动棒,下午3点发现1处蜂窝麻面,已要求整改。天气晴,气温28度。"

施工日志

"B栋6层做水电预埋,5个水电工,1台电焊机。发现2处套管位置偏差,已调整。天气阴,气温15-20℃。"

安全巡检记录

"上午巡检A栋,发现1层电梯口临边防护不到位,已通知整改。2层有2个灭火器即将过期。下午复查,整改完成。"

技术实现

脚本位置

  • 主生成脚本:scripts/gen_log.py

环境要求

  • Python 3.8+
  • python-docx 库

依赖安装

pip install python-docx

使用方法

python scripts/gen_log.py --type FH-001 --input "描述文字" --project "项目信息" --output output.docx

输出文档格式

页面设置

  • 纸张:A4
  • 上、下边距:2.54cm
  • 左、右边距:3.17cm

字体排版

  • 标题:黑体 小二 居中
  • 正文:宋体 小四
  • 表格:框线完整

页眉

左:项目名称 | 施工单位 右:日期

页脚

居中:第 X 页 共 Y 页

项目信息保存

项目信息保存在 ~/.openclaw/extensions/wecom-openclaw-plugin/skills/guoshun-inspection-logger/project_info.json

如需修改项目信息,请重新输入,系统将自动更新。

参考标准

  • DGJ32/J 66-2015 建设工程施工现场标识标准
  • DGJ32/TJ 196-2015 建设工程监理规范
  • 江苏省建设工程施工阶段监理现场用表目录

详见 reference/ 目录。

Usage Guidance
This skill appears to do what it says: generate standardized Word inspection logs from text. Before installing/running: (1) review the scripts/gen_log.py file locally (it’s small and readable) and confirm you accept it writing project metadata to ~/.openclaw/.../project_info.json; (2) install python-docx in a controlled environment (virtualenv) if you don’t want system-wide Python changes; (3) avoid providing sensitive information in the text you feed the skill since it will be written into generated documents and a local project_info file; (4) if you need network-free assurance, run the script offline — it has no network calls or credential usage. If you want me to, I can list the full script contents, point out exact lines where files are written, or suggest a safer location for the project_info file.
Capability Analysis
Type: OpenClaw Skill Name: guoshun-inspection-logger Version: 1.0.0 The skill is a legitimate utility designed to generate standardized construction and inspection logs in Word format. The core logic in `scripts/gen_log.py` uses regular expressions to extract project details from user descriptions and employs the `python-docx` library to format the output according to specific Jiangsu provincial engineering standards. It manages project metadata locally in a dedicated JSON file within the OpenClaw directory structure and exhibits no signs of data exfiltration, unauthorized command execution, or malicious prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the included script (scripts/gen_log.py) and reference docs: the code parses user text into structured fields and generates Word documents in the stated FH-001/SG-001/AQ-001/etc. formats. There are no unrelated credentials, binaries, or services requested.
Instruction Scope
SKILL.md instructions and the script are aligned: they ask for project info and a text description, then produce a .docx. The runtime steps only parse text, format content, save a project_info JSON, and create a Word file. The instructions do not direct the agent to read unrelated system files or send data off-host.
Install Mechanism
No install spec in the registry; the SKILL.md recommends installing python-docx via pip, which is proportional for generating .docx files. No downloads from arbitrary URLs or archive extraction are present.
Credentials
The skill requires no environment variables or external credentials. The only persistent state is a local JSON project_info stored under the user's home directory as documented; no secrets are requested or accessed.
Persistence & Privilege
The skill persists project metadata to ~/.openclaw/extensions/wecom-openclaw-plugin/skills/guoshun-inspection-logger/project_info.json so subsequent runs auto-use saved project info. This is reasonable for convenience but users should be aware that project metadata is stored on disk.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install guoshun-inspection-logger
  3. After installation, invoke the skill by name or use /guoshun-inspection-logger
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
guoshun-inspection-logger 1.0.0 – Initial Release - Provides AI-powered generation of standardized construction and inspection logs in Word format, tailored for Jiangsu Guoshun Intelligent Technology Co., Ltd. - Supports multiple log types: supervision, construction, safety inspection, concealed works acceptance, and major project patrol records. - Activates on relevant user commands or when construction-related text is uploaded. - Saves project information after first use; subsequent logs require only description input. - Delivers downloadable Word documents formatted to industry and regional standards. - Project info is saved locally for update and reference.
Metadata
Slug guoshun-inspection-logger
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 国顺施工日志助手?

基于江苏省施工监理标准,自动将施工口述或文字描述生成规范的Word巡检日志文档,包括监理、施工、安全等类型。 It is an AI Agent Skill for Claude Code / OpenClaw, with 94 downloads so far.

How do I install 国顺施工日志助手?

Run "/install guoshun-inspection-logger" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 国顺施工日志助手 free?

Yes, 国顺施工日志助手 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 国顺施工日志助手 support?

国顺施工日志助手 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 国顺施工日志助手?

It is built and maintained by jimmygx (@jimmygx); the current version is v1.0.0.

💬 Comments