agentx
AgentX - Agent Extension: MCP Servers, Agent Skills and Plugins Manager
File Explorer
Download Latest Version (.zip)- release.yml
- agentx.js
- check.go
- install.go
- list.go
- plugins.go
- remove.go
- root.go
- skills.go
- update_notice.go
- agentx.rb
- Info.dev.plist
- Info.plist
- project.nsi
- wails_tools.nsh
- icon.ico
- info.json
- wails.exe.manifest
- appicon.png
- README.md
- nunito-v16-latin-regular.woff2
- OFL.txt
- logo-universal.png
- App.css
- App.tsx
- main.tsx
- style.css
- vite-env.d.ts
- App.d.ts
- App.js
- models.ts
- package.json
- runtime.d.ts
- runtime.js
- index.html
- package-lock.json
- package.json
- package.json.md5
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- .gitignore
- app.go
- go.mod
- go.sum
- main.go
- README.md
- wails.json
- agent.go
- claude.go
- codex.go
- cursor.go
- droid.go
- gemini.go
- mcp_helpers.go
- opencode.go
- config.go
- toml.go
- manager.go
- paths.go
- plugin.go
- registry.go
- source.go
- git.go
- manager.go
- parser.go
- paths.go
- registry.go
- skill.go
- source.go
- source_test.go
- update.go
- version.go
- plugins.json
- install.js
- footer.go
- header.go
- sidebar.go
- tabs.go
- theme.go
- agents.go
- mcp.go
- plugins.go
- skills.go
- view.go
- app.go
- layout.go
- model.go
- .gitignore
- .npmignore
- AGENTS.md
- CLAUDE.md
- go.mod
- go.sum
- LICENSE
- main.go
- Makefile
- package-lock.json
- package.json
- README.md
- README.zh-CN.md
- tui1.png
- tui2.png
# Installation Guide
git clone https://github.com/agentsdance/agentx
Downloads the entire project code from GitHub to your computer.
cd agentx
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommendednpm install -g @agentsdance/agentx
Installs the package published on the npm registry globally โ no need to clone the source.
brew tap agentsdance/agentx https://github.com/agentsdance/agentx.git
Registers this project's repository (tap) with Homebrew.
brew install agentx
Installs the pre-built package via Homebrew โ no source build required.
go install github.com/agentsdance/agentx@latest
Downloads and installs the specified version directly โ no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Node.js
Easynpm install -g @agentsdance/agentx
Installs the package published on the npm registry globally โ no need to clone the source.
Pulled directly from this repo's README.
4. Go
Mediumgo install github.com/agentsdance/agentx@latest
Downloads and installs the specified version directly โ no need to clone the repo yourself.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build
Compiles the code based on the generated build configuration to produce an executable.
make install
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
