Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

openclaw-engineering-harnessOpenClaw engineering harness 搜索

Agent Skill

openclaw-engineering-harness 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,836

周安装

117

GitHub Stars

公开资料未说明

下载量

927
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-engineering-harness

简介

通过澄清请求、发现代码、进行最小的更改、验证和准备可发布的工件来管理整个工程工作流程。

SKILL.md

***

name: openclaw-engineering-harness description: A single skill for engineering workflow loop, responsible for request clarification, code discovery, tool-driven execution, smallest coherent changes, validation, and preparing publishable artifacts. allowed-tools:

  • Read
  • LS
  • Glob
  • Grep
  • SearchCodebase
  • Edit
  • MultiEdit
  • Write
  • TodoWrite
  • AskUserQuestion
  • Bash(git status:\*)
  • Bash(git diff:\*)
  • Bash(git checkout:\*)
  • Bash(git add:\*)
  • Bash(git commit:\*)
  • Bash(git reset:\*)
  • Bash(python3:\*)

when\_to\_use: Use when the task requires a single skill that can clarify scope, inspect a codebase, implement the smallest coherent change, run validation, audit the publishable surface, and summarize delivery evidence.

***

Engineering Workflow

This Skill combines request clarification, implementation execution, validation closure, runtime assistance, and artifact preparation into a single, independently distributable engineering loop.

🚀 How to Use This Skill

As a user, you can invoke this skill in your prompts using the following methods:

Method 1: Explicitly by Name (Recommended) Simply mention the skill name and ask the AI to follow its workflow:

"Please use the openclaw-engineering-harness skill to build \[your task]. Start from the clarify phase and confirm the goal and scope with me before proceeding."

Method 2: Implicitly by Keywords Describe your task using the core concepts of this skill, and the AI will automatically trigger it:

"Help me implement \[your task]. Before starting, please clarify scope, ensure you make the smallest coherent change, and finally run validation and summarize delivery evidence."

Method 3: Enforcing the Phases You can command the AI to strictly follow the 5 phases defined in this skill:

"Execute \[your task] by strictly following these phases: clarify, map, implement, verify, and deliver. Stop and wait for my approval after each phase."

***

Always Start Here (For AI Agent)

  1. Read refs/request-shape.md first to confirm the goal, scope, success criteria, and constraints.
  2. Read refs/capability-model.md to understand the 3-layer runtime skeleton (tool/state/policy), tool priorities, and state progression rules.
  3. Read refs/execution-loop.md to proceed in the exact order: discover -> design -> implement -> verify -> deliver.
  4. When you need to generate a structured execution plan, run scripts/run_workflow.py with policies/workflow-policy.json, tool/tool-config.json, state/state-policy.json, and policy/constraint-policy.json.
  5. Memory System: Read refs/memory-system.md. Always check .claude/MEMORY.md (if it exists) to learn user preferences and project context before starting. Update it during the deliver phase.
  6. When you need to evaluate constraints independently, run scripts/run_constraints.py to output rule matches, passes, and blocking conclusions.
  7. When preparing publishable artifacts, read refs/export-policy.md and refs/release-checklist.md, then run scripts/run_audit.py with policies/export-audit-policy.json.

Core Workflow

  • Clarify the task shape first: If the goal, boundary, validation criteria, or memory context are missing, ask or retrieve them first. Never modify code with vague assumptions.
  • Build a minimal working map first: Entry points, dependencies, impact areas, validation points, and rollback points must come in pairs.
  • Make the smallest coherent change: Reuse existing patterns. Avoid unrelated refactoring, naming drift, or introducing secondary mechanisms.
  • Verify immediately after changes: Prioritize running checks that match the impact area. Record passed items, failed items, and uncovered risks.
  • Keep runtime and documentation consistent during delivery: Verify first, summarize the results, extract new lessons learned to the .claude/MEMORY.md system, and only then generate publishable artifacts.

Output Contract

  • Implementation Plan: Goal, impact area, change strategy, rollback method.
  • Change Results: What was done, why it was done, what areas were affected.
  • Validation Record: What was executed, the results, remaining risks.
  • Distribution Summary: Export directory, checklist, audit conclusions, and future recommendations.

Runtime Surface

  • tool/tool-config.json: Defines tool groups, tools required per phase, and the boundary between single-skill and standard library.
  • state/state-policy.json: Defines state sequence, phase bindings, and minimum inputs required for each state.
  • policy/constraint-policy.json: Defines deliverable constraint rules to determine if the 3-layer skeleton still satisfies boundaries.
  • scripts/run_workflow.py: Reads structured requests, combines tool/state/policy layer results, and generates a minimal execution plan.
  • scripts/run_constraints.py: Independently executes constraint evaluations, outputting rule matches, passes, and blocks.
  • scripts/run_audit.py: Scans the target publish directory against audit policies to output matched items and blocking conclusions.
  • policies/workflow-policy.json: Defines required fields, phase order, phase checkpoints, and default 3-layer configuration entries.
  • policies/export-audit-policy.json: Defines audit file extensions and blocking patterns to prevent exposing host path signatures, URLs, or proprietary identifiers.

Hard Boundaries (The Engineering Iron Laws)

  • DO NOT commit or declare a task as 'done' if the validation (tests or execution) fails. Always return to the implement phase to fix the issue.
  • DO NOT introduce massive refactoring, unrelated format changes, or new third-party dependencies unless explicitly approved by the user. Keep the PR/diff as small as possible.
  • DO NOT leave debugging print statements, hardcoded mock data, or temporary comments in the final deliverable.
  • DO NOT invent custom configurations or patterns if the project already has an established way of doing it (e.g., stick to the existing database ORM or UI component library).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.76%
按下载量换算841

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills