agents-of-matrix
Sua coletania de agentes para Claude.ai
File Explorer
- dozer.md
- ghost.md
- zee.md
- agent-smith.md
- architect.md
- commander-locke.md
- counselor.md
- dozer.md
- ghost.md
- keymaker.md
- link.md
- merovingian.md
- morpheus.md
- neo.md
- niobe.md
- oracle.md
- persephone.md
- switch.md
- tank.md
- trinity.md
- zee.md
- config.json
- build-post-checks.sh
- build-validator.sh
- pre-deployment-checks.sh
- smart-hook-dispatcher.sh
- threat-intel-validator.sh
- wazuh-validator.sh
- xdr-soar-validator.sh
- CLAUDE.md
- hooks.json
- settings.local.json
- agentes-18-completo.md
- agentes.md
- agents-templates.md
- boas-praticas.md
- frameworks-trabalho.md
- hooks.md
- instalacao-configuracao.md
- mcp-servers.md
- mcp.md
- modelos-e-custos.md
- monitoramento-uso.md
- novos-agentes-matrix.md
- padroes-prompts.md
- plan-mode-completo.md
- plan-mode.md
- seguranca.md
- threat-modeling.md
- uso-basico.md
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
