Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

ocas-forge奥卡斯锻造厂

Agent Skill

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

总安装

3,072

周安装

128

GitHub Stars

公开资料未说明

下载量

1,024
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ocas-forge

简介

通过六阶段管道创建、构建、审查、修复和验证完整的座席技能包,输出完成的可安装技能文件。

SKILL.md

name
ocas-forge
source
https://github.com/indigokarasu/forge
install
openclaw skill install https://github.com/indigokarasu/forge
description
Use when creating, building, reviewing, repairing, or validating Agent Skill packages. Runs a mandatory six-phase pipeline: existence gate, classify, scope, architecture, build, validate. Default output is the finished installable package. Trigger phrases: 'create a new skill', 'build a skill', 'design a skill', 'review this skill', 'repair this skill', 'validate skill package', 'update forge'. Do not use for skill evaluation or variant proposals (use Mentor).
metadata
{"openclaw":{"emoji":"🔨"}}

Forge

Forge is the system's skill architect — given a capability idea or broken existing package, it runs a mandatory six-phase internal pipeline covering existence gate, classification, scoping, architecture, construction, and validation before writing a single file. The default output is the finished, installable package with all file contents written; Forge never returns design briefs or plans in place of the real artifact.

When to use

  • Create a new Agent Skill from a goal or capability description
  • Review or critique an existing skill package
  • Repair broken or defective skill packages
  • Classify whether a proposed capability deserves to be a skill
  • Validate a skill package against OCAS standards

When not to use

  • Evaluating skill performance — use Mentor
  • Running or orchestrating skills — use Mentor
  • Web research — use Sift
  • Building non-skill artifacts

Responsibility boundary

Forge owns skill design, construction, and validation.

Forge does not own: skill evaluation or variant testing (Mentor), behavioral pattern analysis (Corvus), behavioral refinement (Praxis), experimentation (Fellow).

Forge receives VariantProposal and VariantDecision files from Mentor. It builds variant packages and applies promotion decisions.

Commands

  • forge.build — design, scope, build, and validate a complete skill package
  • forge.critique — review a package and identify defects
  • forge.repair — fix broken files in an existing package
  • forge.classify — classify a proposed skill (shortcut, workflow, system)
  • forge.validate — run validation checks on a package
  • forge.scaffold — generate a minimal package skeleton
  • forge.status — current build state if multi-step build in progress
  • forge.journal — write journal for the current run; called at end of every run
  • forge.update — pull latest from GitHub source; preserves journals and data

Mandatory design pipeline

Run all phases before writing files:

  1. Existence gate — Is this better as a skill than a one-off prompt?
  2. Classify — Shortcut, workflow, or system?
  3. Scope — Exact job, explicit non-goals, smallest useful promise
  4. Architecture — What goes in SKILL.md vs references vs scripts vs assets?
  5. Build — Write all files
  6. Validate — Routing, structural, usefulness checks

Skill type classification

  • Shortcut — narrow tool wrapper. 20-120 line SKILL.md.
  • Workflow — multi-step process. 80-250 line SKILL.md.
  • System — durable behavior system. 150-300 line SKILL.md, deeper material in references.

Package rules

Minimum package: skill.json + SKILL.md. Add references/, scripts/, assets/ only when justified.

Read references/authoring_rules.md for full authoring standards. Read references/package_patterns.md for package shape guidance by type. Read references/examples.md for good and bad examples.

Run completion

After every Forge command (build, critique, repair, validate):

  1. Check ~/openclaw/data/ocas-forge/intake/ for VariantProposal and VariantDecision files from Mentor; process and move to intake/processed/
  2. Persist build log entries and decisions to local JSONL files
  3. Log material decisions to decisions.jsonl
  4. Write journal via forge.journal

Anti-patterns to reject

  • Vague or overly broad scope
  • Generic descriptions that don't route well
  • SKILL.md bloated with background explanation
  • Support folders created for aesthetics
  • Plans returned instead of packages
  • Template residue and placeholders
  • Storage inside skill package directories
  • Undocumented inter-skill interfaces

Inter-skill interfaces

Forge receives intake files from Mentor at: ~/openclaw/data/ocas-forge/intake/

File types received:

  • {proposal_id}.json — VariantProposal (spec-ocas-shared-schemas.md)
  • {decision_id}.json — VariantDecision (spec-ocas-shared-schemas.md)

After processing each file, move to intake/processed/.

See spec-ocas-interfaces.md for full handoff contracts.

Storage layout

~/openclaw/data/ocas-forge/
  config.json
  build_log.jsonl
  decisions.jsonl
  intake/
    {proposal_id}.json
    {decision_id}.json
    processed/

~/openclaw/journals/ocas-forge/
  YYYY-MM-DD/
    {run_id}.json

Default config.json:

{
  "skill_id": "ocas-forge",
  "skill_version": "2.3.0",
  "config_version": "1",
  "created_at": "",
  "updated_at": "",
  "validation": {
    "require_routing_tests": true,
    "require_structural_check": true,
    "require_usefulness_check": true
  },
  "retention": {
    "days": 0,
    "max_records": 10000
  }
}

OKRs

Universal OKRs from spec-ocas-journal.md apply to all runs.

skill_okrs:
  - name: build_completion_rate
    metric: fraction of forge.build invocations producing a complete package
    direction: maximize
    target: 0.95
    evaluation_window: 30_runs
  - name: validation_pass_rate
    metric: fraction of built packages passing all three validation checks
    direction: maximize
    target: 0.90
    evaluation_window: 30_runs
  - name: variant_build_success
    metric: fraction of VariantProposal intake files successfully built
    direction: maximize
    target: 0.90
    evaluation_window: 30_runs

Optional skill cooperation

  • Mentor — receives VariantProposal and VariantDecision files via intake directory
  • Fellow — Forge may build experiment harnesses for Fellow benchmarks

Journal outputs

Action Journal — every build, critique, repair, validation, and variant processing run.

Initialization

On first invocation of any Forge command, run forge.init:

  1. Create ~/openclaw/data/ocas-forge/ and subdirectories (intake/, intake/processed/)
  2. Write default config.json with ConfigBase fields if absent
  3. Create empty JSONL files: build_log.jsonl, decisions.jsonl
  4. Create ~/openclaw/journals/ocas-forge/
  5. Register heartbeat entry forge:intake in HEARTBEAT.md if not already present
  6. Register cron job forge:update if not already present (check openclaw cron list first)
  7. Log initialization as a DecisionRecord in decisions.jsonl

Background tasks

Job nameMechanismScheduleCommand
forge:intakeheartbeatevery heartbeat passCheck ~/openclaw/data/ocas-forge/intake/ for VariantProposal and VariantDecision files from Mentor; process and move to intake/processed/
forge:updatecron0 0 * * * (midnight daily)forge.update

Heartbeat registration: append forge:intake entry to ~/.openclaw/workspace/HEARTBEAT.md if not already present.

Registration during forge.init:

openclaw cron list
# If forge:update absent:
openclaw cron add --name forge:update --schedule "0 0 * * *" --command "forge.update" --sessionTarget isolated --lightContext true --timezone America/Los_Angeles

Self-update

forge.update pulls the latest package from the source: URL in this file's frontmatter. Runs silently — no output unless the version changed or an error occurred.

  1. Read source: from frontmatter → extract {owner}/{repo} from URL
  2. Read local version from skill.json
  3. Fetch remote version: gh api "repos/{owner}/{repo}/contents/skill.json" --jq '.content' | base64 -d | python3 -c "import sys,json;print(json.load(sys.stdin)['version'])"
  4. If remote version equals local version → stop silently
  5. Download and install:
   TMPDIR=$(mktemp -d)
   gh api "repos/{owner}/{repo}/tarball/main" > "$TMPDIR/archive.tar.gz"
   mkdir "$TMPDIR/extracted"
   tar xzf "$TMPDIR/archive.tar.gz" -C "$TMPDIR/extracted" --strip-components=1
   cp -R "$TMPDIR/extracted/"* ./
   rm -rf "$TMPDIR"
  1. On failure → retry once. If second attempt fails, report the error and stop.
  2. Output exactly: I updated Forge from version {old} to {new}

Visibility

public

Support file map

FileWhen to read
references/authoring_rules.mdBefore any build, critique, or validation
references/package_patterns.mdWhen deciding package shape by skill type
references/examples.mdWhen reviewing descriptions or detecting anti-patterns
references/journal.mdBefore forge.journal; at end of every run

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.46%
按下载量换算855

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills