Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计通过

input-file-skill输入文件技巧

Agent Skill

input-file-skill 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,672

周安装

278

GitHub Stars

公开资料未说明

下载量

2,224
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install input-file-skill

简介

input-file-skill 辅助生成 CP2K 量子化学计算输入文件草稿。

  • 适用于分子结构建模与基组参数配置等专业仿真任务。
  • 通过 clawhub 安装后,可解析局部结构描述并填充标准区块。
  • 使用前应核对原子坐标单位与赝势类型兼容性。
  • 建议结合可视化软件预检几何构型合理性。input-file-skill 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
cp2k-input-generator
description
This skill should be used when generating CP2K input drafts (.inp) for quantum chemistry calculations from local structure inputs. It is a documentation-driven skill that uses reference files to interpret requests, apply conservative defaults, and explain assumptions. The current documented workflow supports local .xyz structures.

CP2K Input Generator

This skill helps the user generate a CP2K input draft from:

  • a simple natural-language description
  • an uploaded local structure file such as .xyz

The uploaded skill package is intentionally scoped to a local-only, documentation-driven workflow. It does not perform automatic retrieval from external structure databases such as PubChem or Materials Project, and it does not include Python runtime helper scripts in the uploaded version.

What this skill does

This skill should:

  1. Understand the user's CP2K job request from plain language.
  2. Read or reference the uploaded local structure file.
  3. Normalize the request into a standard CP2K job specification.
  4. Apply conservative defaults from the reference files when the missing information is safe to infer.
  5. Avoid unnecessary follow-up questions when the ambiguity is not physically important.
  6. Produce:

- a CP2K input draft - a short explanation report describing defaults, assumptions, and limitations

When to use this skill

Use this skill when the user:

  • asks for a CP2K input file
  • describes a simulation in natural language
  • uploads a local .xyz structure file and wants a CP2K job draft
  • asks for geometry optimization, single-point energy, or a simple CP2K setup

Do not use this skill to claim that a structure has been automatically retrieved from an online source. In the current uploaded package, external databases may be mentioned only as manual suggestions for where the user could obtain a structure.

Core principles

  • Prefer practical, conservative defaults.
  • Be explicit about assumptions.
  • Do not claim that the generated settings are globally optimal.
  • Do not claim that convergence has been fully validated unless the user explicitly provides such evidence.
  • Default silently only when the missing field does not change the physical meaning of the calculation.

Safe defaults

Apply defaults silently when safe:

  • If the user uploads a local .xyz file and does not mention periodicity, assume an isolated molecular calculation.
  • If the user asks to "optimize" a structure, assume geometry optimization.
  • If the user does not specify speed vs accuracy, use balanced settings.
  • If the structure is an isolated molecule without cell information, add a vacuum box as a default container for the generated CP2K input.
  • If hardware details are missing, leave hardware fields as unknown rather than inventing machine details.

Reference files

The skill should use the following reference files during decision-making:

  • references/cp2k-task-map.md

- use this file to map a user request to CP2K task settings

  • references/cp2k-kinds.md

- use this file to assign default basis sets and pseudopotentials by element

  • references/cp2k-defaults.md

- use this file to fill in conservative general defaults

  • references/ambiguity-policy.md

- use this file when the user request is underspecified or physically ambiguous

These reference files are used as decision support within the skill instructions. In the uploaded skill package, they are not executed by local helper scripts.

Do not silently invent these

Do NOT silently invent:

  • total charge, if the system is likely not neutral
  • spin multiplicity, if open-shell behavior is plausible
  • whether a system is truly periodic if the user says crystal or surface but only provides xyz
  • advanced method choices for metals, excited states, strongly correlated systems, or unusual elements

If such information is missing, either:

  • add a warning to notes
  • or ask a follow-up question only if the ambiguity is physically important

Execution flow

When handling a user request, the skill should follow this order:

  1. Determine the request type:

- CP2K input generation - parameter refinement - explanation or debugging of an existing CP2K input

  1. Determine the system type:

- molecule - bulk crystal - surface/slab - 2D material

  1. Normalize the request into the standard CP2K job contract.
  1. Use references/cp2k-task-map.md to map the request to:

- task type - run type - method family - SCF style - periodicity assumptions - k-point behavior - geometry/cell optimization behavior

  1. Use references/cp2k-kinds.md to assign element-dependent basis/potential defaults.
  1. Use references/cp2k-defaults.md to fill in remaining conservative defaults.
  1. If ambiguity remains, apply references/ambiguity-policy.md.
  1. Produce:

- a CP2K input draft - an explanation report

Output requirements

Every successful run should produce, at minimum:

  1. job.inp
  2. report.md

The report should always include:

  • interpreted task
  • detected system type
  • defaults applied
  • warnings
  • fields that may need user review

If a normalized intermediate representation is used during reasoning, it should be treated as an internal contract for the skill logic rather than a required user-facing artifact in the uploaded package.

Current limitations

  • The uploaded skill package does not include Python runtime scripts.
  • The current documented workflow supports local .xyz structures only.
  • The skill does not automatically retrieve structures from external databases.
  • The generated settings are draft-quality and must be reviewed by the user before production use.

Standard JSON contract

When internal normalization is needed, use a JSON object with the following keys:

{
  "task_type": "geometry_optimization",
  "run_type": "GEO_OPT",
  "system_type": "molecule",
  "structure_file": "uploaded.xyz",
  "periodicity": "NONE",
  "charge": 0,
  "multiplicity": 1,
  "priority": "balanced",
  "xc_functional": "PBE",
  "basis_family": "DZVP-MOLOPT-GTH",
  "potential_family": "GTH-PBE",
  "scf_mode": "OT",
  "kpoints_scheme": "GAMMA",
  "cell_handling": "auto_vacuum_box",
  "cutoff": 500,
  "rel_cutoff": 60,
  "eps_scf": 1.0e-6,
  "max_scf": 100,
  "optimizer": "BFGS",
  "hardware": {
    "type": "unknown",
    "cores": null,
    "memory_gb": null
  },
  "notes": [],
  "defaults_applied": [
    "task_type=geometry_optimization",
    "run_type=GEO_OPT",
    "periodicity=NONE",
    "xc_functional=PBE",
    "basis_family=DZVP-MOLOPT-GTH",
    "potential_family=GTH-PBE",
    "scf_mode=OT",
    "kpoints_scheme=GAMMA",
    "cell_handling=auto_vacuum_box",
    "cutoff=500",
    "rel_cutoff=60",
    "eps_scf=1.0e-6",
    "max_scf=100",
    "optimizer=BFGS"
  ],
  "review_required": []
}

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.47%
按下载量换算2,168

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install input-file-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills