新增 1 个原创智能体(214→215,原创 49→50,工程部 34→35): engineering/engineering-mechanical-design-engineer.md - 通用机械产品设计专家:方案选型、传动/机构/结构件/连接设计 - 计算校核四件套(强度/刚度/疲劳/振动)—— 振动按 issue #60 要求作为重中之重单列,给出避开共振 ±20% 的硬指标 - DFMA 检查清单(零件数/对称化/防呆/标准件占比) - GB/ISO/JIS 标准件优先 + GB/T 1800/1804/3480/T 17450 等国标体系 - 8 段技术交付物示例:齿轮接触强度、轴疲劳合成、螺栓预紧、 振动模态、流体压力损失、BOM 与图纸交付清单等 针对 issue #59「Trae 装好了几乎不自动触发」补齐文档: integrations/trae/README.md(新增) - 解释 alwaysApply: false + 空 globs = "agent-requested rule" 的设计行为,全装 215 条 description 互相稀释是预期不是 bug - 给出三种正确姿势:精选安装 / @ 显式调用 / 改 alwaysApply - 三种姿势对照表(按使用场景推荐)+ 故障排查清单 README.md / README.zh-TW.md - Trae 折叠区从 7 行扩成 ~25 行,与 Cursor 区块对齐 索引同步:AGENT-LIST/CATALOG/README/README.zh-TW/package.json 全部对齐到 215/50 原创/工程 35;package.json 1.2.0 → 1.2.1。 参考 issue #60 中 @H-i-m-s 给出的能力大纲(传动/结构件/运动机构/ 连接/流体气动液压/材料热处理 + 计算校核 + DFMA + 国标),#59 由 @liliy886 提出的"装好了不触发"反馈定位为文档缺失。 Co-Authored-By: H-i-m-s <H-i-m-s@users.noreply.github.com> Co-Authored-By: liliy886 <liliy886@users.noreply.github.com>
🔌 Integrations
This directory contains The Agency integrations and converted formats for supported agentic coding tools.
Supported Tools
- Claude Code —
.mdagents, use the repo directly - GitHub Copilot —
.mdagents, use the repo directly - Antigravity —
SKILL.mdper agent inantigravity/ - Gemini CLI — extension +
SKILL.mdfiles ingemini-cli/ - OpenCode —
.mdagent files inopencode/ - OpenClaw —
SOUL.md+AGENTS.md+IDENTITY.mdworkspaces - Cursor —
.mdcrule files incursor/ - Aider —
CONVENTIONS.mdinaider/ - Windsurf —
.windsurfrulesinwindsurf/
Quick Install
# Install for all detected tools automatically
./scripts/install.sh
# Install a specific home-scoped tool
./scripts/install.sh --tool antigravity
./scripts/install.sh --tool copilot
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool claude-code
# Gemini CLI needs generated integration files on a fresh clone
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cli
For project-scoped tools such as OpenCode, Cursor, Aider, and Windsurf, run the installer from your target project root as shown in the tool-specific sections below.
Regenerating Integration Files
If you add or modify agents, regenerate all integration files:
./scripts/convert.sh
Claude Code
The Agency was originally designed for Claude Code. Agents work natively without conversion.
cp -r <category>/*.md ~/.claude/agents/
# or install everything at once:
./scripts/install.sh --tool claude-code
See claude-code/README.md for details.
GitHub Copilot
The Agency also works natively with GitHub Copilot. Agents can be copied
directly into ~/.github/agents/ and ~/.copilot/agents/ without conversion.
./scripts/install.sh --tool copilot
See github-copilot/README.md for details.
Antigravity
Skills are installed to ~/.gemini/antigravity/skills/. Each agent becomes
a separate skill prefixed with agency- to avoid naming conflicts.
./scripts/install.sh --tool antigravity
See antigravity/README.md for details.
Gemini CLI
Agents are packaged as a Gemini CLI extension with individual skill files.
The extension is installed to ~/.gemini/extensions/agency-agents/.
Because the Gemini manifest and skill folders are generated artifacts, run
./scripts/convert.sh --tool gemini-cli before installing from a fresh clone.
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cli
See gemini-cli/README.md for details.
OpenCode
Each agent becomes a project-scoped .md file in .opencode/agents/.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool opencode
See opencode/README.md for details.
OpenClaw
Each agent becomes an OpenClaw workspace containing SOUL.md, AGENTS.md,
and IDENTITY.md.
Before installing, generate the OpenClaw workspaces:
./scripts/convert.sh --tool openclaw
Then install them:
./scripts/install.sh --tool openclaw
See openclaw/README.md for details.
Cursor
Each agent becomes a .mdc rule file. Rules are project-scoped — run the
installer from your project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool cursor
See cursor/README.md for details.
Aider
All agents are consolidated into a single CONVENTIONS.md file that Aider
reads automatically when present in your project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool aider
See aider/README.md for details.
Windsurf
All agents are consolidated into a single .windsurfrules file for your
project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool windsurf
See windsurf/README.md for details.