Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions website/data/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,3 +434,58 @@ tools:
- planning
- scheduling
- mcp

- id: agentsmesh
name: AgentsMesh
description: >-
Universal config sync for AI coding agents. Maintain rules, commands, agents,
skills, MCP servers, hooks, and permissions in a single canonical source
(.agentsmesh/), then auto-generate native config files for 18+ tools including
GitHub Copilot, Claude Code, Cursor, Gemini CLI, Windsurf, Codex CLI, and more.
Bidirectional sync lets you import existing configs losslessly and detect drift
in CI. Supports both project-level and global (user-level) configuration.
category: CLI Tools
featured: false
requirements:
- Node.js 20 or higher
- npm, pnpm, or yarn
links:
github: https://github.com/sampleXbro/agentsmesh
npm: https://www.npmjs.com/package/agentsmesh
documentation: https://samplexbro.github.io/agentsmesh/
features:
- "πŸ”„ One source, every tool: Write config once in .agentsmesh/, generate native files for 18+ AI coding tools"
- "πŸ“₯ Bidirectional sync: Import existing tool configs losslessly, generate back out with auto-rebased cross-file links"
- "πŸ›‘οΈ CI drift detection: agentsmesh check exits non-zero when generated files drift from lock, ideal for CI gates"
- "🌐 Global mode: Sync personal AI config to ~/.claude/, ~/.cursor/, and other tool directories across all projects"
- "πŸ“¦ Community packs: Install shared skills, rules, and agents from git repos with deterministic restoration"
- "πŸ”Œ Plugin system: Extend with new target support via standalone npm packages"
configuration:
type: bash
content: |
# Quick start (no install needed)
npx agentsmesh init

# Or install as a dev dependency
npm install -D agentsmesh

# Generate native configs for all targets
npx agentsmesh generate

# Import existing Copilot config into canonical form
npx agentsmesh import --from copilot

# Check for config drift in CI
npx agentsmesh check
tags:
- cli
- npm
- config-sync
- copilot
- claude-code
- cursor
- gemini
- ai-agents
- rules
- mcp
- devtools
Loading