经 AI Skill Hub 精选评估,Adnify AI工作流编辑器 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
轻量级高定制化的开源AI Agent编辑器,专为开发者设计的AI工作流平台。支持Claude等多种AI模型集成,提供可视化工作流编排,适合需要构建智能自动化流程的开发者和企业用户。
Adnify AI工作流编辑器 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
轻量级高定制化的开源AI Agent编辑器,专为开发者设计的AI工作流平台。支持Claude等多种AI模型集成,提供可视化工作流编排,适合需要构建智能自动化流程的开发者和企业用户。
Adnify AI工作流编辑器 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g adnify # 方式二:npx 直接运行(无需安装) npx adnify --help # 方式三:项目依赖安装 npm install adnify # 方式四:从源码运行 git clone https://github.com/ad-naan/Adnify cd Adnify npm install npm start
# 命令行使用
adnify --help
# 基本用法
adnify [options] <input>
# Node.js 代码中使用
const adnify = require('adnify');
const result = await adnify.run(options);
console.log(result);
# adnify 配置说明 # 查看配置选项 adnify --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export ADNIFY_CONFIG="/path/to/config.yml"
<p><a href="README_CN.md">中文</a> | <strong>English</strong></p>
<p><strong>Connect AI to Your Code.</strong></p> <p>A next-generation code editor with stunning visual experience and deeply integrated AI Agent.</p>
<p> <a href="https://deepwiki.com/ad-naan/Adnify"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki" /></a> <img src="https://img.shields.io/badge/license-Custom%20License-blue.svg" alt="License" /> <img src="https://img.shields.io/badge/Electron-39.0-blueviolet" alt="Electron 39.0" /> <img src="https://img.shields.io/badge/React-18-blue" alt="React 18" /> <img src="https://img.shields.io/badge/TypeScript-5.0-blue" alt="TypeScript 5.0" /> </p> </div>
Adnify is more than just an editor—it's your intelligent programming companion. It replicates and surpasses traditional IDE experiences, blending Cyberpunk glassmorphism design with a powerful built-in AI Agent that supports full-process automation from code generation to file operations.
---
Security Features - Workspace isolation, sensitive path protection (.ssh, .aws, .gnupg, etc.) - Command whitelist, Shell injection detection - Git subcommand whitelist, permission confirmation - Customizable security policies, audit logging
Multi-Window & Workspace - Supports multiple windows for different projects simultaneously - Multi-workspace management with quick workspace switching - Automatic workspace state save and restore - Supports monorepo multi-root workspaces
Other Features - Command Palette (Ctrl+Shift+P) for quick access to all features - Session management with persistent conversation history - Token statistics with real-time consumption display - Complete Chinese and English support with automatic system language detection - Custom shortcuts supporting VSCode-style keybindings - Onboarding wizard for beginner-friendly experience - Tree-sitter parsing for 20+ languages with precise code analysis - Auto-update with silent download of new versions
---
npm install
```bash
npm run dist
Skills are instruction packages that give AI specialized capabilities (e.g., optimization for specific frameworks, complex test writing).
1. Browse & Install: - Open Settings → Skills tab. - Search Market: Click "Search Market" to find community-contributed skills on skills.sh. - GitHub Install: Enter a GitHub repo URL containing a SKILL.md file to clone it directly. - Create Manually: Create an exclusive skill for the current project and edit the generated SKILL.md template. - Use Existing Local Skills: Open the project or global Skills directory from settings, place an existing skill folder there, then refresh the Skills list. 2. How it Works: - Enabled skills are automatically injected into the AI's System Prompt. - When a task touches on the skill's domain, the AI will automatically follow the expert instructions in the skill package. 3. Management: - You can enable/disable specific skills in settings at any time, or click the "Folder" icon to edit the skill's source code directly. - Recognized local skills use a dedicated folder per skill with a SKILL.md file plus optional supporting files such as scripts/, templates/, or data/.
---
```bash
Ctrl+,Supports OpenAI, Anthropic, Google, DeepSeek, Ollama, and custom APIs
Renderer UI - React components in src/renderer own panels, editor surfaces, chat, plan views, and user-facing interaction flows.
Agent Runtime - src/renderer/agent is now a first-class runtime subsystem covering orchestration, planning, context flow, tool invocation, and application-level coordination.
State and Session - Renderer-side stores and modes manage UI state, conversation state, checkpoints, branches, and session lifecycle.
Frontend Services - Lightweight client services in the renderer coordinate terminal UX, completions, workspace/session helpers, and requests that cross into Electron APIs.
Renderer Workers - Browser workers handle compute-heavy renderer work such as text/diff processing, while Monaco language workers keep editor language features off the UI thread.
Preload Bridge - src/main/preload.ts exposes a typed contextBridge surface so the renderer can access privileged features without direct Node access.
IPC Handlers - src/main/ipc/*.ts is the contract boundary where renderer requests are validated and routed into main-process capabilities.
Shared Contracts - src/shared contains cross-process types, config, utilities, and shared error definitions used by both renderer and main code.
Main Process Services - src/main owns privileged capabilities: window/app lifecycle, filesystem and shell boundaries, LLM backends, MCP backends, LSP management, indexing, and auxiliary desktop services.
Indexing Worker - src/main/indexing/indexer.worker.ts moves indexing work onto a Node worker thread so parsing, embedding, and vector-store updates do not block the Electron main thread.
read_file (supports single/batch file reading), list_directory (supports recursive traversal)edit_file (9-strategy intelligent matching), write_file, create_directory, delete_file_or_foldersearch_files (ultra-fast regex scan, supports | pattern combination), codebase_search (LanceDB vector semantic insight)find_references, go_to_definition, get_hover_info, get_document_symbols, get_lint_errors (supports force refresh)run_command (supports background execution), read_terminal_output, send_terminal_input (supports Ctrl key combinations), stop_terminalweb_search (multi-strategy fusion), read_url (Jina deep parsing)ask_user (supports manual approval and confirmation)create_task_plan, update_task_plan, start_task_execution (supports task dependencies and parallel execution)uiux_search (global design aesthetics knowledge base and industry best practices)read_memory, write_memory (supports manual approval mechanism)@filename - Reference file context with fuzzy matching support@codebase - Semantic codebase search based on AI Embedding@git - Reference Git changes, auto-fetch diff info@terminal - Reference terminal output for quick error analysis@symbols - Reference current file symbols, quick navigation to functions/classes@web - Web search for latest technical documentation
Adnify builds upon mainstream AI editors with multiple innovative features:
Q: Why so many requirements in your license? Looks more complex than MIT?
A: Because I've been hurt before 😭
Seriously, I've seen too many of these operations: - Fork an open-source project, change the name and skin, claim it's "independently developed" - Delete author info and repo address completely, as if the code appeared from nowhere - Sell it for money, take outsourcing projects, don't give the original author a penny, won't even give a star - Even worse, some use it as training materials, students think the teacher wrote it - Companies directly bundle it into their products for sale without mentioning the original author
I'm not against commercialization, really. Want to use it commercially? Come on, send an email, maybe we can even collaborate. But sneakily erasing my name to make money? That's too much, right?
Q: Will I accidentally violate the rules if I use it for personal learning?
A: No! Personal learning, research, graduation projects, side projects—use it freely! As long as you: 1. Don't delete my name and repo address 2. Don't sell it or provide paid services 3. Don't bundle it into other products for sale
That simple, I'm not trying to make things difficult 😊
Q: If I want to use it internally at my company/team, does that count as commercial use?
A: - Small teams (≤5 people) internal use: If it's a startup team or small studio internal tool, not sold externally, generally okay, but recommend sending an email to notify - Company/large team use: Requires written authorization, even for internal tools - External services: Regardless of team size, if providing paid services or selling products externally, commercial authorization is required
If unsure, send me an email, I'm easy to talk to (really). Authorization process is simple, fees are reasonable.
Q: Can I modify the code? Can I distribute it?
A: - Personal modification: Yes, but for personal use only - Distribute modified version: No, unless you get written authorization - Contribute code: Welcome to submit PRs to the official repository, this is encouraged!
Q: Why not just use GPL or MIT?
A: - MIT is too permissive: Allows anyone to use commercially freely, can't protect author's rights - GPL is too strict: Requires derivative works to also be open source, limits reasonable commercial cooperation - Custom license: Protects author's rights while allowing reasonable commercial cooperation, it's a balance
My license core is one thing: You can use it, you can learn from it, but commercial use and team distribution require authorization, don't pretend you wrote it.
Simply put, open source isn't "free for you to abuse," it's "I'm willing to share, but please respect my work."
If you agree with this philosophy, welcome to star ⭐️, that's more important than anything.
Adnify是专业级AI工作流编辑器,轻量高效的架构设计、强大的定制能力和活跃的社区使其成为构建AI应用的理想选择。TypeScript实现保证了跨平台兼容性。
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:Adnify AI工作流编辑器 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | Adnify |
| 原始描述 | 开源AI工作流:Adnify—A lightweight, highly customizable AI Agent Editor.It delivers a superior。⭐218 · TypeScript |
| Topics | AI工作流Agent编辑器可视化编排开源工具TypeScript |
| GitHub | https://github.com/ad-naan/Adnify |
| License | NOASSERTION |
| 语言 | TypeScript |
收录时间:2026-05-21 · 更新时间:2026-05-22 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端