开源AI工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
AI开发框架,任务管理,23个代理,116+技能,50+命令。支持多种语言的AI开发框架,提供任务管理、代理管理和技能管理等功能,适合于AI开发和研究人员。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
AI开发框架,任务管理,23个代理,116+技能,50+命令。支持多种语言的AI开发框架,提供任务管理、代理管理和技能管理等功能,适合于AI开发和研究人员。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install gald3r
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install gald3r
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/wrm3/gald3r
cd gald3r
pip install -e .
# 验证安装
python -c "import gald3r; print('安装成功')"
# 命令行使用
gald3r --help
# 基本用法
gald3r input_file -o output_file
# Python 代码中调用
import gald3r
# 示例
result = gald3r.process("input")
print(result)
# gald3r 配置文件示例(config.yml) app: name: "gald3r" debug: false log_level: "INFO" # 运行时指定配置文件 gald3r --config config.yml # 或通过环境变量配置 export GALD3R_API_KEY="your-key" export GALD3R_OUTPUT_DIR="./output"
<p align="center"> <img src="logo/Gald3r_Logo_Big.jpg" alt="gald3r banner" width="800"> </p>
<p align="center"> <strong>Song magic for your codebase.</strong><br> Persistent memory, multi-repo orchestration, and adversarial quality gates for AI coding agents across every major IDE. </p>
<p align="center"> <a href="LICENSE"><img src="https://img.shields.io/badge/License-FSL--1.1--Apache-purple.svg" alt="License: FSL-1.1-Apache"></a> <a href="CHANGELOG.md"><img src="https://img.shields.io/badge/version-1.5.2-green.svg" alt="Version"></a> <a href="https://www.python.org"><img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+"></a> <a href="https://github.com/wrm3/gald3r"><img src="https://img.shields.io/github/stars/wrm3/gald3r?style=social" alt="GitHub stars"></a> </p>
---
How activation works: All agents, skills, commands, hooks, and rules in this repo are inert markdown/script files until you copy the relevant platform folder into your project. Dropping.cursor/into a project activates the full gald3r surface for Cursor. Same for.claude/,.agent/,.codex/,.opencode/, and.copilot/. You pick which platforms you use — nothing runs without you copying the files first.
| Component | Count | What it covers |
|---|---|---|
| **Agents** | 22 | Task manager, code reviewer, QA engineer, project planner, infrastructure, ideas, verifier, project initializer, PCAC coordinator, and more |
| **Core Skills** | 100 | Recon suite (docs/file/repo/url/yt), research suite (deep/review/apply), release management, platform skills (21 platforms), medic, tier-setup, PCAC (10 skills), tasks, bugs, plan, project, features, subsystems, vault, constraints, code review, git, crawl, learn, subsystem-graph, swot, verify-ladder, and more |
| **Addon: Skill Packs** | 142 skills / 20 packs | Vercel, HuggingFace, Cursor Team Kit, Superpowers, AI Media, AI Video Tools, Cloud Providers, Blockchain, 3D Graphics, Community, Content Creation, Startup Tools, Phantom Connect, Context7, Continual Learning, Create Plugin, Firecrawl, Infrastructure, User Skills, and more |
| **Addon: Personality Packs** | 8 themes | Silicon Valley, Star Wars, Star Trek, BSG, Firefly, Hackers, Shoresy, gald3r |
| **Commands** | 149 | Full @g-* command surface — task management, bug management, feature pipeline, release management, recon, research, code quality, vault, multi-repo, ideas, constraints, subsystems, swarm, and maintenance |
| **Hooks** | 17 | Session start, agent complete, pre-commit, pre-push, PCAC inbox check, vault operations |
| **Rules** | 15 | Always-apply: documentation, git workflow, error reporting, task completion gates, TODO/stub lifecycle, bug discovery |
| **IDE Platforms** | 21 | 16 installer-managed + 5 reference-skill platforms (see Quick Start for full list) |
Ideas don't go straight to tasks. gald3r now provides a structured feature pipeline — a staging layer between idea capture and task creation. Features move through four phases with checkpoints at each transition.
``` @g-feat-new "Webhook retry with exponential backoff"
@g-recon-repo https://github.com/some/project
```
Feature lifecycle:
| Phase | Description |
|---|---|
staging | Research phase — collecting approaches from external analysis, discussions, external repos |
specced | Formal requirements written — acceptance criteria defined |
committed | Active tasks created in TASKS.md — being coded |
shipped | Fully implemented and verified |
Features only become tasks (and enter the TASKS.md backlog) when promoted via @g-feat-promote. This keeps the task backlog clean and intention-driven.
---
Step 1 — Clone the template for your tier:
```powershell
git clone https://github.com/wrm3/gald3r_template_full.git
powershell -ExecutionPolicy Bypass -File setup_gald3r_project.ps1 -TargetPath "C:\MyProject" -Platforms cursor,claude
If you already have gald3r installed (any version), the installer handles migration automatically:
```powershell
powershell -ExecutionPolicy Bypass -File setup_gald3r_project.ps1 -Platform auto # auto-detect running IDE powershell -ExecutionPolicy Bypass -File setup_gald3r_project.ps1 -Platform all # regenerate all installed platforms powershell -ExecutionPolicy Bypass -File setup_gald3r_project.ps1 -Platform all -Clean # wipe and regenerate ```
The update mode never touches your README.md, LICENSE, or CHANGELOG.md, never overwrites your non-gald3r skills and agents, and safely updates all g- prefixed framework files.
---
gald3r is fully functional without any server infrastructure — the file-first architecture means every feature works with plain files. For teams that want semantic search, session memory across machines, Oracle database access, or server-side crawling, the gald3r Docker MCP server adds 42 server-backed tools.
The Docker server is a separate companion component (not included in this template). See the gald3r Docker server repository for setup instructions.
| Category | Tools |
|---|---|
| **Memory** | memory_search, memory_capture_session, memory_context, memory_ingest_session, memory_sessions, memory_capture_insight, memory_search_combined, memory_setup_user |
| **Vault** | vault_search, vault_search_all, vault_sync, vault_read, vault_list, vault_export_sessions |
| **Install** | gald3r_install, gald3r_plan_reset, gald3r_health_report, gald3r_validate_task, gald3r_server_status |
| **Crawling** | platform_docs_search, platform_crawl_trigger, platform_crawl_status, crawl_add_target, crawl_list_targets, check_crawl_freshness |
| **Oracle** | oracle_query, oracle_execute |
| **MediaWiki** | mediawiki_page, mediawiki_search |
| **Video** | video_analyze, video_batch_process, video_extract_frames, video_extract_transcript, video_extract_metadata, video_get_playlist |
| **Utility** | md_to_html, config_reload, get_service_url |
---
Only needed if you run the optional Docker MCP server. Copy .env.example to .env:
POSTGRES_DB=rag_knowledge
POSTGRES_USER=gald3r
POSTGRES_PASSWORD=your_password_here
OPENAI_API_KEY=your-key-here
---
---
.\skill_packs\infrastructure\install.ps1
.\skill_packs\infrastructure\install.ps1 -ProjectRoot "C:\my-other-project" ```
To uninstall: delete the skill directories listed in the pack's PACK.md.
---
---
🤖 ai-media - AI video generation via Seedance 2.0 and Higgsfield cinematic models
| Skill | What it does |
|---|---|
skl-seedance | Seedance 2.0 text-to-video and image-to-video via fal.ai, VolcEngine, or Replicate |
skl-higgsfield | Higgsfield DoP cinematic image-to-video with NSFW handling and async status polling |
---
☁️ cloud-providers - Cloud infrastructure management across 8 major providers
| Skill | What it does |
|---|---|
skl-cloudflare-dns | DNS zones, records, SSL/TLS, wrangler CLI, bulk operations |
skl-cloudflare-workers | Workers, Pages, KV/D1/R2/Durable Objects, Cron triggers |
skl-cloudflare-tunnels | Tunnels, Zero Trust access policies, WARP, Docker integration |
skl-aws-iam | IAM users/roles/policies, STS, Secrets Manager, 5 policy templates |
skl-aws-compute | EC2, Lambda, ECS, App Runner, CDK patterns |
skl-aws-storage | S3, RDS, DynamoDB, EFS, Backup with bucket policy templates |
skl-aws-networking | VPC (3-tier template), Route 53, CloudFront, ALB, VPN, peering |
skl-hetzner | VPS, dedicated, Object Storage, hcloud CLI, Docker cloud-init |
skl-digitalocean | Droplets, App Platform, managed DBs, DOKS, Spaces |
---
💬 community - Community management across Discord, Telegram, and Slack
| Skill | What it does |
|---|---|
skl-discord | Discord server setup, bots, moderation, growth playbook, analytics, GitHub/CI webhooks |
skl-telegram | Telegram bots, channels, groups, moderation, notifications, growth, Mini Apps |
skl-slack | Slack workspace management, app/bot dev (Bolt SDK), Block Kit UI, Workflow Builder, webhooks |
| Skill | What it does |
|---|---|
ai-video-generation | 40+ models via inference.sh CLI: text-to-video, image-to-video, Veo, Wan, Seedance |
ai-avatar-lipsync | OmniHuman/Fabric/PixVerse models; audio-driven lipsync and dubbing workflows |
remotion-video | React-based video: compositions, audio, captions, 3D, transitions, cloud render |
animated-gif-creator | Composable animation primitives, Slack constraints (2MB/64KB), easing and optimization |
explainer-video | Script formulas (AIDA), pacing rules, scene planning, voiceover and music integration |
storyboard-creation | Shot composition, camera angles, movement, continuity; pre-production workflow |
video-ad-specs | TikTok/Instagram/YouTube/Facebook/LinkedIn dimensions, timing requirements, AIDA framework |
pipeline-validation | Multi-agent QA gates: specs, narrative, render readiness, asset handoff checks |
---
🧊 3d-graphics — 3D performance optimization, asset pipelines, animation principles, and generative art
| Skill | What it does |
|---|---|
3d-performance | LOD strategies, frustum/occlusion culling, draw call reduction, R3F-specific optimizations |
asset-optimization | gltf-transform pipeline: Draco mesh compression, WebP/KTX2 textures, LOD generation |
animation-principles | Disney's 12 animation principles applied to 3D/game contexts, timing and frame count guidelines |
algorithmic-art | p5.js generative art: seeded randomness, flow fields, particle systems, interactive parameters |
---
📱 content-creation — Social strategy, video scripting, storyboarding, and platform ad specs
| Skill | What it does |
|---|---|
social-media-marketing | YouTube/TikTok/Instagram/LinkedIn growth strategy, thumbnails, influencer workflows |
storyboard-creation | Shot composition, angles, movement, continuity for film and animation pre-production |
explainer-video | AIDA script formulas, pacing rules, scene planning, voiceover and music guidance |
video-ad-specs | Platform-specific dimensions, timing, and AIDA framework for paid social |
---
🤖 ai-ml-dev — AI/ML development, cloud GPU training, and mathematical animation
| Skill | What it does |
|---|---|
ai-ml-development | Model selection, training loops, evaluation, fine-tuning, RLHF, RAG, MLOps patterns |
cloud-gpu-training | RunPod/Lambda/Vast.ai: SCP workflow, batch sizing, cost estimates, checkpointing |
manim-animation | 3Blue1Brown-style math animations: scenes, LaTeX, graphs, algorithm demos in Python |
---
🚀 startup-tools — VC fundraising, business formation, product development, and resource access
| Skill | What it does |
|---|---|
startup-vc-fundraising | Pre-seed through Series C+: pitch decks, investor targeting, term sheets, due diligence |
startup-business-formation | Delaware C-Corp, cap table, 83(b) election, founder vesting, foreign q
git clone https://github.com/wrm3/gald3r_template_slim.git
**Step 2 — Run the installer:**
> **Windows users:** Do not double-click the `.ps1` file — Windows will ask "Open with what?". Instead, open PowerShell and run:
powershell
Beyond the 195 built-in gald3r system skills, skill_packs/ contains 142 optional, domain-specific packs across 20 categories you install on demand. These are not loaded by default — nothing installs until you run the pack's install.ps1. Each pack deploys to all IDE targets (.cursor/, .claude/, .agent/, .codex/, .opencode/).
| Category | Packs | Description |
|---|---|---|
vercel | 25 | AI SDK, AI Gateway, Next.js, Next Cache, Turbopack, Routing Middleware, Runtime Cache, Vercel Functions, Blob/Storage, Deployments/CI-CD, Chat SDK, Sandbox, Marketplace, Auth, next-forge, next-upgrade, shadcn, Vercel CLI, Vercel Agent, Vercel Workflow, env-vars, knowledge-update, react-best-practices, bootstrap, verification |
cursor-team-kit | 19 | compiler-errors-check, cli-control, ui-control, deslop, ci-fix, merge-conflicts-fix, pr-comments-get, ci-loop, pr-easy-review, branch-pr-new, pr-review-canvas, review-ship, smoke-tests-run, verify-this, review-weekly, work-summary, workflow-from-chats, receiving-code-review, requesting-code-review |
superpowers | 13 | brainstorming, agents-parallel-dispatch, plans-execute, branch-finish, code-review-receive, code-review-request, subagent-development, debug-systematic, tdd, git-worktrees, superpowers-guide, verify-completion, writing-plans, writing-skills |
huggingface | 10 | hf-cli, hf-dataset-viewer, hf-datasets, hf-evaluation, hf-jobs, hf-model-trainer, hf-paper-publisher, hf-tool-builder, hf-trackio, huggingface-gradio |
user-skills | 12 | babysit, canvas, hook-create, rule-create, skill-create, subagent-create, cursor-sdk, skills-migrate, shell, prs-split, statusline, cursor-settings-update |
ai-video-tools | 8 | (AI video generation and editing tools) |
cloud-providers | 16 | Cloudflare DNS, AWS, GCP, Azure, Hetzner, Oracle Cloud, and more |
phantom-connect | 7 | social-login-add, phantom-wallet-mcp, sol-transaction-send, browser-app-setup, react-app-setup, react-native-app-setup, message-sign |
startup-tools | 4 | (Startup toolchain and growth skills) |
ai-ml-dev | 3 | (AI/ML development and training skills) |
ai-media | 2 | Seedance 2.0, Higgsfield cinematic video generation |
3d-graphics | 5 | (3D modeling and rendering skills) |
community | 4 | (Community building and management skills) |
content-creation | 4 | (Content writing and marketing skills) |
infrastructure | 4 | MCP builder, project scaffolding, GitHub integration |
blockchain | 1 | (Blockchain/Web3 development) |
create-plugin | 2 | plugin-scaffold-create, review-plugin-submission |
context7 | 1 | context7-mcp — live library docs via Context7 MCP |
firecrawl | 1 | Full web crawling and scraping with LLM-optimized output |
continual-learning | 1 | Continual learning patterns for agent sessions |
```powershell
Task & Bug Management
| Command | What it does |
|---|---|
@g-task-new | Create a task with full spec and acceptance criteria |
@g-task-add | Add a task quickly with minimal spec |
@g-task-update | Update task status, priority, or metadata |
@g-task-upd | Update specific task fields |
@g-task-del | Delete a task and remove from TASKS.md |
@g-task-sync-check | Validate TASKS.md ↔ tasks/ file sync |
@g-bug-report | Log a bug with severity, file, and description |
@g-bug-fix | Fix a reported bug and update BUGS.md |
@g-bug-add | Add a bug entry to BUGS.md |
@g-bug-upd | Update an existing bug entry |
@g-bug-del | Delete a bug entry |
@g-go | Full autonomous cycle (implement + verify in sequence) |
@g-go-code | Implement-only: marks completed items [🔍], never [✅] |
@g-go-review | Verify-only: run in a new agent session to confirm [🔍] items |
@g-status | Project status: active tasks, goals, open bugs, ideas |
@g-workflow | Task expansion and sprint planning |
Planning & Goals
| Command | What it does |
|---|---|
@g-plan | Create or update PLAN.md and milestone docs |
@g-setup | Initialize gald3r in a new project |
@g-goal-update | Update PROJECT_GOALS.md |
@g-phase-add | Add a new project phase |
@g-phase-pivot | Pivot project direction |
@g-subsystems | Sync check, add, update subsystem Activity Logs |
@g-subsystem-add | Add a new subsystem to the registry |
@g-subsystem-upd | Update subsystem spec or Activity Log |
@g-subsystem-del | Delete a subsystem from the registry |
@g-subsystem-graph | Generate visual subsystem dependency graph |
@g-prd-add | Create a new Product Requirements Document (governance/audit artifact) |
@g-prd-upd | Update a PRD (blocked on released/superseded status) |
@g-prd-del | Archive a PRD (soft-delete; audit trail preserved) |
@g-prd-revise | Create v2 of a released PRD; atomically supersedes the original |
Feature Pipeline
| Command | What it does |
|---|---|
@g-feat-new | Stage a new feature and create the feature spec file |
@g-feat-add | Add to an existing feature (collect approach, deliverable) |
@g-feat-upd | Update feature status, metadata, or notes |
@g-feat-promote | Promote a specced feature to committed — creates tasks |
@g-feat-rename | Rename a feature slug and update all references |
@g-feat-del | Delete a feature and remove from FEATURES.md |
@g-recon-repo | 5-pass deep analysis of an external repo → recon report |
@g-recon-url | One-time URL capture into vault |
@g-recon-docs | Crawl platform docs with freshness tracking |
@g-recon-yt | Extract and save YouTube transcript |
@g-recon-file | Analyze local files/folders for patterns |
@g-res-review | Review recon report — approve/reject findings |
@g-res-deep | Deep dive on a specific approved finding |
@g-res-apply | Apply approved findings into feature staging |
Knowledge & Vault
| Command | What it does |
|---|---|
@g-vault-ingest | Manual vault file ingest with frontmatter |
@g-vault-search | Search the vault |
@g-vault-status | Vault health and freshness report |
@g-vault-lint | Audit vault frontmatter compliance |
@g-vault-process-inbox | Process pending vault inbox items |
@g-learn | Capture insights to vault memory files |
Multi-Project (PCAC)
| Command | What it does |
|---|---|
@g-pcac-adopt | Register a child project (bidirectional link) |
@g-pcac-claim | Register a parent project (bidirectional link) |
@g-pcac-status | View topology position and open INBOX items |
@g-pcac-order | Broadcast a task to child projects with cascade depth |
@g-pcac-ask | Send a request to the parent project |
@g-pcac-sync | Initiate contract sync with a sibling project |
@g-pcac-read | Review and action all INBOX items |
@g-pcac-notify | Send a lightweight FYI notification across topology |
@g-pcac-move | Transfer files/folders to another project in topology |
@g-pcac-spawn | Spawn a new gald3r project — creates, installs gald3r, seeds with features/code, links topology |
@g-pcac-send-to | Send files, features, ideas, or code to any related project with INBOX notification |
Code Quality & Git
| Command | What it does |
|---|---|
@g-code-review | Structured review: security, performance, quality, architecture |
@g-test | Create or run test plans (L1 fast, L2 comprehensive, L3 regression) |
@g-crr | Clean-room rewrite pipeline: analyze external patterns then produce original implementation |
@g-git-commit | Conventional commit with task reference and agent footer |
@g-git-sanity | Pre-commit check: staged secrets, large files, sync drift |
@g-git-push | Pre-push gate: regular vs release validation |
Constraints & Compliance
| Command | What it does |
|---|---|
@g-constraint-add | Add a new architectural constraint |
@g-constraint-check | Run compliance check against all active constraints |
@g-constraint-upd | Update an existing constraint |
@g-constraint-del | Delete a constraint |
Ideas & Discovery
| Command | What it does |
|---|---|
@g-idea-capture | Capture an idea to IDEA_BOARD.md |
@g-idea-review | Review and evaluate IDEA_BOARD entries |
@g-idea-farm | Proactive codebase scan for improvement opportunities |
Autonomous Execution
| Command | What it does |
|---|---|
@g-go | Run autonomously through the backlog (self-review mode — both phases) |
@g-go-code | Implementation-only run — marks tasks [🔍], never [✅] |
@g-go-review | Verification-only run — run in a **new agent session** from the coder |
@g-go-swarm | Coordinate multi-agent swarm execution across the backlog |
@g-go-code-swarm | Multi-agent implementation swarm |
@g-go-review-swarm | Multi-agent review swarm |
@g-go-go | Autopilot loop - repeatedly calls @g-go until the backlog is clear or all remaining tasks are blocked |
@g-mission | Autonomous completion loop - runs @g-go iterations until your stated verifiable condition is met; evaluator self-checks each iteration; turn-budgeted |
@g-juggernaut | Alias for @g-mission — unstoppable forward momentum flavor |
@g-kamikaze | Alias for @g-mission — all-in commitment flavor |
Release Management
| Command | What it does |
|---|---|
@g-release-new | Create a new release entry in .gald3r/releases/ |
@g-release-assign | Assign tasks/features to a release |
@g-release-status | Show current release status and progress |
@g-release-accelerate | Identify what can be fast-tracked to hit a release target |
@g-release-publish | Finalize and publish a release (CHANGELOG, VERSION, tag) |
@g-ship | Ship a versioned release from [Unreleased] CHANGELOG entries - bumps VERSION, tags, optionally publishes GitHub release |
Personality & Skill Pack Management
| Command | What it does |
|---|---|
@g-pers-list | List all available personality packs and show which is currently active |
@g-pers-pick | Swap the active personality pack - removes old rules/skills from all platform dirs, installs new ones |
@g-skill-pack-list | List available skill packs and per-skill install status across active platform dirs |
@g-skill-pack-add | Install a skill pack or individual skill to all active platform dirs |
@g-skill-pack-del | Remove a skill pack or individual skill from all active platform dirs |
@g-skill-pack-save | Save a user-evolved skill back into the pack with _evolved suffix to survive updates |
Maintenance
| Command | What it does |
|---|---|
@g-medkit | .gald3r/ health check, repair, and version migration |
@g-medic | Targeted repair for a specific .gald3r/ file or subsystem |
@g-tier-setup | Set up or upgrade gald3r tier in a project (slim → full → adv) |
@g-swot-review | SWOT analysis for the current project phase |
@g-dependency-graph | Generate DEPENDENCY_GRAPH.md from task dependencies |
@g-cli-cursor | Cursor CLI reference and usage patterns |
@g-cli-claude | Claude Code CLI reference and usage patterns |
@g-cli-gemini | Gemini CLI reference and usage patterns |
@g-cli-codex | Codex CLI reference and usage patterns |
@g-cli-copilot | GitHub Copilot CLI reference and usage patterns |
---
该框架提供了丰富的功能和API,适合于AI开发和研究人员使用。但是,框架的文档和示例代码需要进一步完善。
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
经综合评估,开源AI工作流 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | gald3r |
| 原始描述 | 开源AI工作流:AI dev framework: task management, 23 agents, 116+ skills, 50+ commands. Runs on。⭐17 · Python |
| Topics | workflowagent-frameworkaiai-agentsai-memoryaiderpython |
| GitHub | https://github.com/wrm3/gald3r |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-05-19 · 更新时间:2026-05-24 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端