经 AI Skill Hub 精选评估,agentsys Agent工作流 获评「强烈推荐」。这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
agentsys Agent工作流 是一款基于 JavaScript 开发的开源工具,专注于 AI工作流、自动化代理、代码生成 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
agentsys Agent工作流 是一款基于 JavaScript 开发的开源工具,专注于 AI工作流、自动化代理、代码生成 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g agentsys # 方式二:npx 直接运行(无需安装) npx agentsys --help # 方式三:项目依赖安装 npm install agentsys # 方式四:从源码运行 git clone https://github.com/agent-sh/agentsys cd agentsys npm install npm start
# 命令行使用
agentsys --help
# 基本用法
agentsys [options] <input>
# Node.js 代码中使用
const agentsys = require('agentsys');
const result = await agentsys.run(options);
console.log(result);
# agentsys 配置说明 # 查看配置选项 agentsys --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export AGENTSYS_CONFIG="/path/to/config.yml"
<p align="center"> <img src="site/assets/logo.png" alt="AgentSys" width="120"> </p>
<p align="center"> <strong>A modular runtime and orchestration system for AI agents.</strong> </p>
<p align="center"> <a href="https://www.npmjs.com/package/agentsys"><img src="https://img.shields.io/npm/v/agentsys.svg" alt="npm version"></a> <a href="https://www.npmjs.com/package/agentsys"><img src="https://img.shields.io/npm/dm/agentsys.svg" alt="npm downloads"></a> <a href="https://github.com/agent-sh/agentsys/actions/workflows/ci.yml"><img src="https://github.com/agent-sh/agentsys/actions/workflows/ci.yml/badge.svg" alt="CI"></a> <a href="https://github.com/agent-sh/agentsys/stargazers"><img src="https://img.shields.io/github/stars/agent-sh/agentsys.svg" alt="GitHub stars"></a> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a> <a href="https://agent-sh.github.io/agentsys/"><img src="https://img.shields.io/badge/Website-AgentSys-blue?style=flat&logo=github" alt="Website"></a> <a href="https://github.com/hesreallyhim/awesome-claude-code"><img src="https://awesome.re/mentioned-badge.svg" alt="Mentioned in Awesome Claude Code"></a> </p>
<p align="center"> <b>24 plugins · 49 agents · 44 skills (across all repos) · 30k lines of lib code · 3,518 tests · 5 platforms</b><br> <em>Plugins distributed as standalone repos under <a href="https://github.com/agent-sh">agent-sh</a> org - agentsys is the marketplace & installer</em> </p>
⚡ Running this agent 24/7? tiyuvta inference — hosted LLM inference built for always-on agents, OpenAI/Anthropic-compatible APIs.
<p align="center"> <a href="#commands">Commands</a> · <a href="#installation">Installation</a> · <a href="https://agent-sh.github.io/agentsys/">Website</a> · <a href="https://github.com/agent-sh/agentsys/discussions">Discussions</a> </p>
<p align="center"> <b>Built for Claude Code · Codex CLI · OpenCode · Cursor · Kiro</b> </p>
<p align="center"><em>New skills, agents, and integrations ship constantly. Follow for real-time updates:</em></p> <p align="center"> <a href="https://x.com/avi_fenesh"><img src="https://img.shields.io/badge/Follow-@avi__fenesh-1DA1F2?style=for-the-badge&logo=x&logoColor=white" alt="Follow on X"></a> </p>
---
AI models can write code. That's not the hard part anymore. The hard part is everything around it - task selection, branch management, code review, artifact cleanup, CI, PR comments, deployment. AgentSys is the runtime that orchestrates agents to handle all of it - structured pipelines, gated phases, specialized agents, and persistent state that survives session boundaries.
--- > Building custom skills, agents, hooks, or MCP tools? agnix is the CLI + LSP linter that catches config errors before they fail silently - real-time IDE validation, auto suggestions, auto-fix, and 423 rules for Claude Code, Codex, OpenCode, Cursor, Kiro, Copilot, Gemini CLI, Cline, Windsurf, Roo Code, Amp, and more.
where.exe instead of an assumed claude.cmd, and .cmd shims are launched through cmd.exe at every spawn site.agentsys install reports failures instead of printing success when Claude Code rejected a plugin, and exits non-zero.install.sh scripts, which deleted a working install and reported success; agentsys --tool codex / --tool opencode is the install path.Required: - Git - Node.js 18+
For GitHub workflows: - GitHub CLI (gh) authenticated
For GitLab workflows: - GitLab CLI (glab) authenticated
For /repo-intel: - agent-analyzer (installed automatically via npm)
For /agnix: - agnix CLI installed (npm install -g agnix, cargo install agnix-cli, or brew install agnix)
Local diagnostics (optional):
npm run detect # Platform detection (CI, deploy, project type)
npm run verify # Tool availability + versions
---
agentsys --tool claude # Single tool agentsys --tool cursor # Cursor (project-scoped skills + commands) agentsys --tool kiro # Kiro (project-scoped steering + skills + agents) agentsys --tools "claude,opencode" # Multiple tools agentsys --development # Dev mode (bypasses marketplace) ```
---
| Topic | Link |
|---|---|
| Slop Patterns | [docs/reference/SLOP-PATTERNS.md](./docs/reference/SLOP-PATTERNS.md) |
| Agent Reference | [docs/reference/AGENTS.md](./docs/reference/AGENTS.md) |
---
Plugins that provide skills without a / command. Installed alongside agentsys; skills become available to all agents.
| Workflow | Link |
|---|---|
| /next-task Flow | [docs/workflows/NEXT-TASK.md](./docs/workflows/NEXT-TASK.md) |
| /ship Flow | [docs/workflows/SHIP.md](./docs/workflows/SHIP.md) |
Same task, same repo, same prompt ("I want to improve docs"):
| Configuration | Cost | Output tokens | Result quality |
|---|---|---|---|
| Opus, no agentsys | $1.10 | 2,841 | Generic recommendations, no project-specific context |
| Opus + agentsys | $1.95 | 5,879 | Specific recommendations with effort estimates, convention awareness, breaking change detection |
| **Sonnet + agentsys** | **$0.66** | **6,084** | **Comparable to Opus + agentsys: specific, actionable, project-aware** |
Sonnet + agentsys produced more output with higher specificity than raw Opus - at 40% lower cost.
成熟的AI工作流框架,代理数量充足、插件生态完善。804星体现认可度,JavaScript实现便于部署,适合现代化自动化需求。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:agentsys Agent工作流 的核心功能完整,质量优秀。对于AI爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | agentsys |
| 原始描述 | 开源AI工作流:AI writes code. This automates everything else · 20 plugins · 49 agents · 41 ski。⭐804 · JavaScript |
| Topics | AI工作流自动化代理代码生成多插件开源 |
| GitHub | https://github.com/agent-sh/agentsys |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-05-17 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。