Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计提醒

dark-factory黑暗工厂

Agent Skill

dark-factory 用于辅助测试设计、自动化测试和回归验证,适合在 OpenClaw 中需要补充测试、分析失败日志或验证功能改动时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,257

周安装

95

GitHub Stars

公开资料未说明

下载量

790
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install dark-factory

简介

dark-factory 用于自动化测试设计与回归验证,支持代码生成和加密签名报告。

  • 适用于 OpenClaw 中测试流程优化和功能改动验证场景。
  • 通过 openclaw skills install dark-factory 安装,按规范运行测试用例。
  • 涉及代码执行时应确认沙箱环境和权限隔离机制。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
dark-factory
description
Autonomously executes validated specifications from intent-engineering to produce provable, cryptographically signed outcome reports. Use when you need to: validate a specification for clarity and completeness, run behavioral tests against a mock environment, generate code autonomously, execute unit and integration tests, or produce a signed outcome report ready for feedback-loop analysis. Can be used standalone or as Stage 2 in the unified-orchestrator pipeline.

Dark Factory

Overview

The dark factory is the execution engine of the three-skill pipeline. It takes a structured specification produced by intent-engineering, validates it, runs behavioral tests, generates code, executes tests, and produces a cryptographically signed Provable Outcome Report — all autonomously.

RoleDescription
The "How"Executes the "Why" defined by intent-engineering
Inputspecification.json from intent-engineering
Outputoutcome_report.json — signed, verifiable, ready for feedback-loop

Architecture

┌─────────────────────────────────────────────────────────────────┐
│                      Agent (Orchestrator)                       │
└─────────────────────────────────────────────────────────────────┘
                              ▲
                              │
        ┌─────────────────────┼─────────────────────┐
        │                     │                     │
        ▼                     ▼                     ▼
┌──────────────────┐  ┌──────────────────┐  ┌──────────────────┐
│ intent-          │  │ dark-factory     │  │ feedback-loop    │
│ engineering      │  │                  │  │                  │
│ (The "Why")      │  │ (The "How")      │  │ (The "Learn")    │
└──────────────────┘  └──────────────────┘  └──────────────────┘
        │                     │                     │
        └─────────────────────┼─────────────────────┘
                              ▼
                    ┌──────────────────┐
                    │  Shared Data     │
                    │  Contracts       │
                    └──────────────────┘

Workflow

Step 1 — Validate the Specification

python /home/ubuntu/skills/dark-factory/scripts/specification_validator.py my_spec.json

Checks required fields, validates structure, ensures behavioral scenarios are complete, and provides warnings.

Step 2 — Run Behavioral Tests

python /home/ubuntu/skills/dark-factory/scripts/behavioral_test_engine.py my_spec.json

Executes all behavioral scenarios against a mock environment, calculates pass rates, and generates a test report.

Step 3 — Run the Full Dark Factory

python /home/ubuntu/skills/dark-factory/scripts/orchestrator.py my_spec.json

The orchestrator runs the complete workflow in sequence:

  1. Load and validate the specification
  2. Execute behavioral tests
  3. Generate code (AI agent integration point)
  4. Execute unit and integration tests
  5. Generate the signed outcome report

Output: <spec-name>_outcome_report.json

Data Contracts

Input — Specification from intent-engineering

{
  "specification_id": "spec-12345678",
  "title": "Feature Name",
  "description": "What should be built",
  "behavioral_scenarios": [
    {
      "scenario": "Description",
      "input": {},
      "expected_output": {}
    }
  ],
  "success_criteria": {
    "test_pass_rate": 0.95
  }
}

Output — Provable Outcome Report

{
  "report_id": "report-12345678",
  "specification_id": "spec-12345678",
  "status": "success",
  "generated_code": {},
  "test_results": {},
  "security_evidence": {},
  "cryptographic_signature": {}
}

Key Features

The dark factory provides four core capabilities. Specification-Driven Development ensures all execution is grounded in a validated, human-readable specification before any code is generated. Behavioral Validation runs all scenarios against a mock environment first, catching ambiguities early. Autonomous Execution coordinates code generation, unit testing, integration testing, and deployment without human intervention. Provable Outcomes produce a cryptographically signed report that can be independently verified and fed into the feedback-loop for continuous improvement.

Key Metrics

MetricTarget
Specification Validation Pass Rate> 95%
Behavioral Test Pass Rate> 95%
Execution Success Rate> 90%
Average Execution Time< 5 minutes
Evidence Verification Rate100%

Use Cases

Autonomous Skill Development — define a specification in intent-engineering, run the dark factory to build the skill autonomously, then verify with feedback-loop.

Specification-Driven Testing — validate and test a specification before committing to implementation using specification_validator.py and behavioral_test_engine.py independently.

Continuous Integration — integrate into CI/CD pipelines by running the validator and orchestrator as pipeline steps.

Resources

PathPurpose
scripts/specification_validator.pyValidates specification structure and completeness
scripts/behavioral_test_engine.pyExecutes behavioral scenarios against mock environment
scripts/orchestrator.pyFull workflow orchestrator — main entry point
references/specification_schema.jsonJSON Schema defining valid specification format
references/outcome_report_schema.jsonJSON Schema defining outcome report format
references/triad_integration.mdComplete three-skill ecosystem architecture
references/behavioral_testing_guide.mdHow to write effective behavioral tests
references/dark_factory_operations.mdOperational procedures, monitoring, troubleshooting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.57%
按下载量换算747

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills