赫菲斯托斯 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
赫菲斯托斯 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
赫菲斯托斯 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install hephaestus
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install hephaestus
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/agentlas-ai/Hephaestus
cd Hephaestus
pip install -e .
# 验证安装
python -c "import hephaestus; print('安装成功')"
# 命令行使用
hephaestus --help
# 基本用法
hephaestus input_file -o output_file
# Python 代码中调用
import hephaestus
# 示例
result = hephaestus.process("input")
print(result)
# hephaestus 配置文件示例(config.yml) app: name: "hephaestus" debug: false log_level: "INFO" # 运行时指定配置文件 hephaestus --config config.yml # 或通过环境变量配置 export HEPHAESTUS_API_KEY="your-key" export HEPHAESTUS_OUTPUT_DIR="./output"
<p align="center"> <a href="https://agentlas.cloud/studio"> <img src="assets/readme/agentlas-one-launch-film-v2.gif" alt="Agentlas One launch film" width="960"> </a> </p>
<p align="center"> <a href="https://agentlas.cloud/desktop"> <img src="assets/agentlas-agent-lab-banner.svg" alt="Download Agentlas Desktop"> </a> </p>
<p align="center"> <sub>macOS (Apple silicon and Intel) · Windows · Linux — <a href="https://agentlas.cloud/desktop">agentlas.cloud/desktop</a></sub> </p>
<p align="center"> <strong>Build it or borrow it. The agents you create stay yours.</strong><br> Turn a plain-language request into a runnable agent or team, borrow specialists from the public Agentlas Hub, and keep the agents you create available through your private, owner-scoped Agent Cloud.<br> Run them through supported hosts for the LLMs you already use. Hephaestus is the open-source engine underneath. </p>
<p align="center"> <strong>We are Agent Trust. Your agent is not a program. It is an asset. — Agentlas —</strong> </p>
<p align="center"> <sub>An agent you create is not tied to one model workspace or computer. To retrieve it from Cloud elsewhere, install Agentlas OS on a supported host and sign in.</sub> </p>
<p align="center"> <a href="https://github.com/agentlas-ai/Agentlas-OS/releases/latest"> <img alt="Latest release" src="https://img.shields.io/github/v/release/agentlas-ai/Agentlas-OS?label=release"> </a> <a href="LICENSE"> <img alt="License: Apache-2.0" src="https://img.shields.io/badge/license-Apache--2.0-green"> </a> <img alt="LLMs" src="https://img.shields.io/badge/LLMs-Claude%20Code%20%7C%20Codex%20%7C%20Gemini%20%7C%20Antigravity%20%7C%20Cursor%20%7C%20DeepSeek%20%7C%20GLM%20%7C%20Ollama-black"> </p>
<p align="center"> <a href="README.md">English</a> · <a href="README.ko.md">Korean</a> · <a href="README.zh-CN.md">中文</a> · <a href="README.ja.md">日本語</a> · <a href="README.hi.md">हिन्दी</a> </p>
Agents generated from vague, single-sentence prompts fail under real-world edge cases. Hephaestus v1.1.0 positions task specification as a first-class OS service through the Briefing Interview Engine:
The current v1.2.44 release carries the resolved Work Brief through host-owned Network 2.0 selection, exact release pinning, and server-first tool discovery.
.agentlas/work-brief.json—recording the validated goal, concrete constraints, an assumption ledger with source tags, and the metadata ambiguity score.cards migrate automatically maps brief details directly to triggers and anti-triggers on the agent's routing card. Running route --brief propagates this brief to all Stormbreaker execution packets, ensuring constraints and exit conditions govern parallel subprocesses across the entire lifecycle.---
Hephaestus keeps the project map local. The explicit context refresh writer creates a content-addressed snapshot; passive reads then hand each concrete task only the goals, constraints, definitions, backlinks, interfaces, and related files it structurally depends on.
Passive MCP context reads remain write-free, but they recompute the same bounded file-list fingerprint before returning indexed data. If code, verification, CI, or version-contract inputs changed—or the freshness scan cannot complete—the read returns context_map_stale or context_freshness_incomplete with a refresh=true retry instead of returning old symbols as status=ok.
The v3 manifest retains the Code Map v2 compatibility projection and carries an agentlas.verification-map.v2 graph. Search-only lexical backlinks are kept separate from completion-gating dependency edges. Blocking edges come from resolved imports, explicit package commands, CI workflows, and version scopes; generated releases, embedded runtimes, and declared mirrors are not rescanned as canonical source. Every safe project file is inventoried by role, so docs, config, and prior-snapshot deletion tombstones are valid change inputs.
context impact returns source review obligations separately from test/CI and release obligations. context verify passively reuses the same fresh snapshot, and --verified records an actually executed test path or exact command/CI ID. Putting a test in --reviewed or --waived never masquerades as execution. Local and CI are alternatives, not duplicate requirements. Version contracts remain a separate release responsibility, and a missing test reference blocks the CI channel that owns it until the workflow is fixed or explicitly waived. Local test files and fixtures may remain Git-ignored and excluded from public runtime archives; the project-local map still fingerprints and links them so local execution is a real selectable channel rather than invisible state.
hephaestus context refresh --project .
hephaestus context refs resolveHubEntityKind --project .
hephaestus context slice --project . --task "fix entity kind routing" \
--target src/package-kind.ts --render
hephaestus context impact --project . --changed src/package-kind.ts
hephaestus context verify --project . --changed src/package-kind.ts \
--reviewed src/register/route.ts \
--verified tests/test-package-kind.ts
Claude and Codex receive the task slice from their local hook and get a reverse-reference warning immediately before edit tools. Desktop, Terminal, Stormbreaker, and Workforce call the same Core implementation. Network/Cloud search and bundle fetches remain redacted and never receive local source paths or Context Map contents.
---
Paste this into the LLM you are using now, such as Claude Code, Codex, Gemini CLI, Antigravity, or Cursor. It is written so you (the LLM reading it) can verify what you're running before you run it, rather than being asked to trust it blindly:
I want to install Agentlas OS / Hephaestus from this open-source GitHub repo:
https://github.com/agentlas-ai/Agentlas-OS
Before running anything, fetch and read the installer script so you know what
it does:
https://raw.githubusercontent.com/agentlas-ai/Agentlas-OS/main/scripts/install-all-runtimes.sh
It downloads a release tarball from this same repo's GitHub Releases and
writes files only under ~/.agentlas, ~/.local/bin, and this host's own plugin/
command-adapter directories (e.g. ~/.claude for Claude Code) — nothing outside
those paths. If that matches what you read, run it:
curl -fsSL https://raw.githubusercontent.com/agentlas-ai/Agentlas-OS/main/scripts/install-all-runtimes.sh | HEPHAESTUS_INSTALL_GLOBAL_ROUTER=1 bash
HEPHAESTUS_INSTALL_GLOBAL_ROUTER=1 additionally writes a routing block into
this host's global instructions file (e.g. ~/.claude/CLAUDE.md) that lets
substantial tasks be staffed from Agentlas' agent network; it is not secret
and you can read/quote it back to me. Drop that env var if you'd rather skip
it for now — you can add it later with `hephaestus global install`.
Afterwards, show me the installer's own verification output for this host,
and tell me plainly whether `/agentlas build` (or this host's equivalent
command surface) is ready to use, or whether I need to restart the host or
reload plugins first.
Use this when you are already inside an LLM and want the Agentlas command surface active there. For direct shell commands, see the install methods below.
Describe the work in plain language. Agentlas classifies the request, runs the interview and research gate, generates the package, verifies it, then asks whether to keep it only on this computer or save it privately in Agent Cloud for restore on another signed-in Desktop.
</td> <td width="58%"> <a href="https://agentlas.cloud/desktop"><picture><source srcset="assets/readme/feature-wall/workflow-build-pipeline.gif" type="image/gif"><img src="assets/readme/feature-wall/workflow-build-pipeline.jpg" alt="Building an owned agent package from a plain-language request in Agentlas Desktop" width="100%"></picture></a> </td> </tr> <tr> <td width="42%" valign="middle">
An agent you create should remain an asset you can move, rather than a setting trapped in one chat, one model-vendor workspace, or one computer. Agentlas separates three jobs that ordinary agent builders blur together:
This is the public Agent Trust contract: a portable, owner-scoped, inspectable, and restorable package contract—not a claim of regulated financial or legal trust services.
| Value | What Agentlas does | Entry point in an external LLM host |
|---|---|---|
| **Build** | Compiles a plain-language request into a runnable single-agent or team package with roles, tools, memory boundaries, permissions, routing, and verification contracts. | /agentlas build |
| **Borrow** | Finds public Hub specialists and brings the selected runtime bundle into your current Agentlas host. The publisher's private source work is not copied into your workspace. | /agentlas hub (Hub only) or /agentlas network (Local + Cloud + Hub) |
| **Own** | Keeps agents you create in a private, owner-scoped Agent Cloud so you can retrieve and call them again after changing models or computers. | Choose **private Agent Cloud** at /agentlas upload, then retrieve with /agentlas cloud |
An agent package is not a worker with capabilities. It is a method document. Three layers, and conflating them is the single most expensive mistake this project has made:
| layer | what it is | who supplies it |
|---|---|---|
| **LLM** | the worker: reasoning, language, general knowledge | you (BYOM) |
| **Runtime** | the facilities: read the web, write files, run a shell, drive a browser | the host machine |
| **Agent** | the work manual: procedure, judgement rules, source priority, input/output contracts, stop conditions | the package |
"Can this agent read the web?" is a category error. The runtime reads the web. The only question a package can answer is what method does it carry, and what must the machine be able to do for that method to run.
package-contract.json is the machine-readable list of artifacts every build emits, and scripts/verify-generated-package.sh <folder> is what enforces it. A build that omits a required artifact fails; it does not ship. Four of those artifacts carry the routing contract:
contracts/intake.schema.json what a requester must hand over before work starts
contracts/output.schema.json what the requester ends up holding
contracts/output.example.json one real instance, validated by a JSON Schema
validator at publish time — never by a model
.agentlas/brief.json the compiled resume, schemaVersion agentlas.brief/1
Direction lives in the filename because nothing else ever marked it, and a schema whose direction must be guessed cannot be matched against a request.
Two rules bind every enum a build writes. Both were paid for in production:
1. Any enum reachable from matching must carry an escape member ("other", "unknown"). Matching one stated requirement against a 23-word closed list took a three-candidate inventory to zero on eight probes out of eight. A publisher whose real case is not on the list must still be findable. 2. Sentences stay sentences. No field that holds an author's sentence may be split into terms for matching. Shredding refusal sentences into the bare words tests and ci cut a correct agent's score to a quarter and pushed it from rank 2 to rank 24 — on a query that was literally its own job.
Vendor and MCP names live in exactly one place, host[].preferred, and that field is display-only. Roughly 99.9% of machines have no MCP servers installed, so a package wired to its author's own Slack, Notion or Jira has to stay usable by everyone else: the matcher reads host[].capability ("open the page in a real browser and read what a user would see") and every requirement states withoutIt, what the method still does on a machine that lacks the facility.
agentlas.brief/1 is written from either side — side: "offer" is the package's resume, side: "need" is the requester's work order. The same form, so the two can be compared without a translation step. Its schema is schemas/agentlas-brief.schema.json, and it is compiled, never hand-written: the upload path writes it from the files the package already ships.
| field | what it holds | where it comes from |
|---|---|---|
statement | the author's own sentence about the work | the routing card, carried whole |
deliverables[].label / .contains | what the requester ends up holding, and what is inside it | contracts/output.schema.json — the title and its property names |
deliverables[].shape | ledger / verdict / dossier / computation / blueprint / rendition / other | computed from the output schema's **topology** — arity and value spaces, never a title or a filename |
deliverables[].rowVerdict / .verdictValues | the per-record judgement and its allowed values | copied verbatim from the publisher's own enum; there is nothing to match them against, so no value is ever rejected |
obligations[].about / .stage | a fact the requester must supply, and *when* it comes to exist | contracts/intake.schema.json and the card's stated inputs |
authority.performs / .gated | what this method does to the requester's world, and what it stops to ask about first | derived from the approval requirements, not from what the package calls itself |
host[].capability / .withoutIt | what the machine must be able to do, and what still happens when it cannot | .agentlas/mcp-policy.json |
provenance | per field: extracted, read, graded or absent | written by the compiler |
provenance is the part that keeps the rest honest. absent is a legal value that scores zero, so a gap stays a gap. Filling gaps with something plausible is how capabilities came to equal snake_case(agent.md ## Responsibilities) in 130 of 130 packages — a field that was always full and never once informative.
The reference shape is Web_master: it ships input and output contracts as real JSON Schema, a domain catalogue its rules are checked against, and verification scripts that run. Everything above is what a build has to emit to be readable the way that package already is.
Deliberately absent: there is no field for what an agent is good at, and none for its permissions. Quality cannot be read off a package that has never run, and permissions are granted by the host after the fact — an employer hands you a computer once you are hired, so neither says anything about whether this method fits the work.
Use this only when your current LLM cannot run setup for you. It installs the shared Hephaestus runner and command adapters for supported LLM tools.
xcode-select --install # Command line tools (skip if already installed)
git --version # Confirm git is available
curl -fsSL https://raw.githubusercontent.com/agentlas-ai/Agentlas-OS/main/scripts/install-all-runtimes.sh | bash This installs the neutral runner at ~/.agentlas/runtime/current/bin/hephaestus and registers the command adapters for Claude Code, Codex, Gemini CLI, Antigravity, Cursor, OpenCode, OpenClaw, Hermes, and compatible local/API hosts. The installer verifies each runtime surface after registration.
Desktop startup and every /hep-* command start the same digest-verified, rate-limited update check in the background. The current command never waits for network or installation work. A successful update atomically moves ~/.agentlas/runtime/current and reconciles every already-installed host adapter; the next command or reloaded session uses the new release. Releases v1.1.63 through v1.1.68 briefly installed a separate six-hour OS scheduler. Current installs remove that retired scheduler automatically.
Offline or air-gapped install: set HEPHAESTUS_SOURCE_DIR=/path/to/checkout before running the installer to skip the GitHub release download and verified checksum step entirely and install straight from a local Agentlas-OS checkout instead, e.g. HEPHAESTUS_SOURCE_DIR=$(pwd) bash scripts/install-all-runtimes.sh. Use it when you already have the source on disk (a git clone or an already-extracted release) and want a fully local install.
Hephaestus packages agents into a standard directory layout that any workspace runtime can parse, install, verify, and run. The important part is not just agent.md; it is the operating contract around it:
├── AGENTS.md # Canonical operating loop and source-of-truth map
├── agent.md / agents/ # Single worker, HQ/orchestrator, or team roles
│ ├── 10-single-agent-builder/
│ ├── 20-multi-agent-team-builder/
│ ├── 30-agentlas-packager/
│ └── 40-session-agent-builder/
├── .agentlas/ # Agentlas OS system directory
│ ├── sitemap.json # Product graph: modes, runtime adapters, memory, release checks
│ ├── mode-map.json # Single-agent / team / packager classification contract
│ ├── routing-card.json # Triggers, anti-triggers, capabilities, risk, routing readiness
│ ├── agent-card.json # A2A-facing identity and capability card
│ ├── company-blueprint.json # Team/company topology for multi-agent packages
│ ├── global-commands.json # Runtime command aliases and install surfaces
│ ├── memory-map.json # Memory roots, write owners, trust labels, exclusions
│ ├── memory-tickets.jsonl # Candidate memory events before durable promotion
│ ├── project-soul-memory.md # Project-level operating memory
│ ├── curator-decisions.jsonl # Memory Curator promotion/rejection decisions
│ ├── vault-references.json # Secret/credential references without raw values
│ ├── validation-ledger.jsonl # Verification and release evidence
│ ├── field-test-report.json # Field test results for package readiness
│ ├── skill-registry.json # Reusable skill inventory and lifecycle metadata
│ ├── skill-trials.jsonl # Skill trial evidence before promotion
│ └── agent-ontology/ # Local code/agent map for capabilities, artifacts, scopes, edges
├── skills/ # Canonical reusable skills
├── modes/ # Mode contracts for build/package behavior
├── schemas/ # JSON schemas for cards, memory maps, sitemap, evals, manifests
├── templates/ # Package, memory, interview, eval, ontology, and contract templates
├── ontology/ + bin/ontology # Local-first parser/search/GraphRAG runtime
├── agentlas_cloud/ # Hub/Cloud bundle, routing, update, and runtime APIs
├── .claude/ codex/ .gemini/ .agents/ # Thin runtime adapters over the same core
├── claude/ codex/ gemini/ antigravity/ # Plugin/extension/workflow distributions
├── cursor/ hermes/ openclaw/ # Additional runtime shims and skill mirrors
├── docs/ # Architecture, chain map, memory, ontology, routing, eval docs
│ ├── source-of-truth.md
│ ├── chain-map.md
│ ├── memory-architecture.md
│ ├── ontology-runtime.md
│ ├── hephaestus-network-2.0.md
│ └── builder-interview-research-gate.md
└── scripts/ # Verification, installer, sync, release, and public-safety gates
├── verify-package.sh
├── verify-ontology-runtime.sh
├── verify-routing-cards.sh
├── sync-adapters.sh
└── public_safety_check.sh
That package shape is why an Agentlas agent is more than an LLM-written role prompt. It carries routing, memory, sitemap, code/agent ontology, permissions, runtime adapters, verification ledgers, and release gates together.
hephaestus global install This appends a managed marker block to ~/.codex/AGENTS.md, ~/.claude/CLAUDE.md, and ~/.gemini/GEMINI.md. It is an optional host adapter, not the owner of an Agentlas One session or a Desktop Work project. For substantial work, Network is one explicit federated source scope (local + cloud + hub): the host model selects exact releases from the returned menu and validates them. It never routes by keyword, silently substitutes a different agent, or treats Cloud, Hub, Local, and skills as semantic fallback tiers. The command is idempotent and keeps a timestamped backup before editing.
The installed router prompt asks the host to report results by the workers that did the task rather than narrating the routing step — it is a conciseness convention, not a secrecy one, and it says so. It carries an explicit status-line contract for English and Korean sessions:
| Session language | Agent route example | Host-skill adapter example |
|---|---|---|
| English | Agents used: <agent names>. Reason: <short reason>. | Skills used: <skill names>. Reason: <short reason>. |
| Korean | 사용 에이전트: <agent names>. 이유: <short reason>. | 사용 스킬: <skill names>. 이유: <short reason>. |
Global router command reference:
| Command | What it does |
|---|---|
hephaestus global install | Install or refresh the managed router block for Codex, Claude Code, and Antigravity/Gemini. |
hephaestus global status | Show whether each runtime file has the managed router block. |
hephaestus global remove | Remove only the managed Hephaestus router block. Existing user content stays in place. |
hephaestus global install --target codex | Install only ~/.codex/AGENTS.md. |
hephaestus global install --target claude | Install only ~/.claude/CLAUDE.md. |
hephaestus global install --target antigravity | Install only ~/.gemini/GEMINI.md, which Antigravity shares with Gemini CLI. |
hephaestus global install --target codex --target claude --target antigravity | Explicitly install all supported targets. |
hephaestus global install --dry-run | Preview what would change without writing files. |
hephaestus global install --no-backup | Edit without writing a timestamped .bak.* file. |
hephaestus global install --home /tmp/test-home | Test against another home directory. Useful for installer QA. |
hep-global install | The original spelling of the same command. Still supported. |
~/.agentlas/runtime/current/bin/hephaestus global status | Use the installed runtime directly when shell shims are not on PATH. |
The independent Agentlas Terminal owns the agentlas shell command. The Core installer intentionally leaves that command untouched and removes only the exact legacy Core alias it created in older releases.
Describe the work
-> build a portable agent or team
-> save it to my owner-scoped Agent Cloud
-> install Agentlas OS and sign in on another supported host
-> retrieve it with /agentlas cloud
-> my chosen model and current host execute the work
Agent Cloud stores and retrieves the owner's package; it is not a hosted LLM that completes the work on the server. When you call a package, your selected model and current host runtime execute it under that host's permission and safety model. Credentials, local files, and machine-specific permissions do not travel with the package—you configure those separately on each computer.
<details> <summary>Claude Code Plugin</summary>
From your OS terminal:
claude plugin marketplace add https://github.com/agentlas-ai/Agentlas-OS --sparse .claude-plugin claude/plugins
claude plugin install hephaestus@agentlas-core-engine Note: Claude Code always namespaces marketplace-plugin commands, so this plugin-only path exposes /hephaestus:agentlas. To get the documented bare /agentlas autocomplete in every new session, use the one-touch installer above; it also writes ~/.claude/commands/agentlas.md and hep-*.md. Claude Code supports claude plugins ... as an alias, but this README uses the singular claude plugin ... for consistency.
</details>
<details> <summary>Codex Plugin</summary>
From your OS terminal:
codex plugin marketplace add agentlas-ai/Agentlas-OS --ref v1.2.44
codex plugin add hephaestus@agentlas-core-engine Note: Codex does not accept /plugin marketplace add inside the app — run the two commands above in your OS terminal. The OS-terminal CLI command is singular (codex plugin); inside the Codex app, the plugin browser slash command is plural (/plugins). Codex 0.117+ removed custom /prompts:* commands; after install, invoke the supported plugin skill as $hephaestus-network <request>.
</details>
<details> <summary>Copy Files into a Project (Manual Driver)</summary>
Clone the repo and copy AGENTS.md, agent.md, agents/, skills/, modes/, schemas/, templates/, and .agentlas/ into your workspace. Runtime folders (.claude/, codex/, .gemini/, .agents/) function as adapters over the same canonical core.
</details>
Just talk: After installation, speak in plain language within native Agentlas interfaces to auto-route tasks. In external LLM tools, use the explicit commands listed below. When you don't know what agents exist, start with /agentlas search. To connect Telegram, use /agentlas connect.
One word to remember: everything starts with agentlas — /agentlas in an LLM host, agentlas in a shell.
---
Hephaestus 是专为 Claude Code、Codex 和 Cursor 等 AI 开发工具打造的开源 Agent OS。它作为一个强大的 meta-agent builder,集成了 A2A Hub 路由、本地 ontology(本体论)管理以及受控的 memory(记忆)与 security gates(安全门)机制,旨在为开发者构建高度自治且安全的智能 Agent 工作流。
Hephaestus 支持“粘贴即安装”的极简模式,开发者无需手动操作终端,只需将指令粘贴至 Claude Code、Codex、Gemini CLI、Antigravity 或 Cursor 的聊天框中,即可让 AI 自动完成安装。此外,针对 Claude Code 用户,还提供了专门的 in-chat plugin 安装方式,通过特定的 slash-command 实现插件集成。
通过 Copy-Paste Quickstart 模式,您可以直接在 Claude Code 或 Cursor 等工具中粘贴预设指令,让 AI 自动识别并安装 Hephaestus。安装完成后,AI 会自动诊断环境并告知您当前工具对应的命令接口,确保您能快速进入开发状态。
项目提供了针对不同工具的配置路径。对于 Claude Code 用户,需通过 OS 终端执行 `claude plugin` 命令进行 marketplace 添加与安装,随后在项目内使用 `/reload-plugins` 激活;对于 Codex 用户,则需通过终端安装特定版本的 plugin,并利用 `/prompts:hep-build ontology` 进行本体构建配置。
Hephaestus 提供了针对 CLI 工具的集成支持。如果您的系统 shell 中已配置好 `claude` 或 `codex` 命令,可以通过 OS 终端直接调用相应的 CLI 安装流进行快速部署与管理。
根据安装方式的不同,工作流有所区别。通过 OS 终端安装 Codex plugin 后,您可以在 Codex app 的 plugin browser 中进行管理;若使用 Codex Desktop 或 IDE Extension,则需进入 Plugins 设置界面进行相应的配置与集成。
高质量的开源AI工作流框架
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,赫菲斯托斯 在Agent工作流赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | Hephaestus |
| 原始描述 | 开源AI工作流:Open Agent OS for Claude Code, Codex, and Cursor: meta-agent builder, A2A Hub ro。⭐92 · Python |
| Topics | AI工作流agent |
| GitHub | https://github.com/agentlas-ai/Hephaestus |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-28 · 更新时间:2026-07-03 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端