https://github.com/redhat-documentation/redhat-docs-agent-tools
A collection of AI plugins, skills, and agent tools for Red Hat documentation workflows.
https://github.com/redhat-documentation/redhat-docs-agent-tools
Last synced: 2 months ago
JSON representation
A collection of AI plugins, skills, and agent tools for Red Hat documentation workflows.
- Host: GitHub
- URL: https://github.com/redhat-documentation/redhat-docs-agent-tools
- Owner: redhat-documentation
- License: apache-2.0
- Created: 2026-03-05T12:29:01.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-30T19:45:34.000Z (2 months ago)
- Last Synced: 2026-03-30T20:31:59.668Z (2 months ago)
- Language: Python
- Homepage: https://redhat-documentation.github.io/redhat-docs-agent-tools/
- Size: 1.22 MB
- Stars: 12
- Watchers: 1
- Forks: 9
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Red Hat Docs Agent Tools
A collection of Claude Code plugins, skills, and agent tools for Red Hat documentation workflows.
## Quick start
### Install from marketplace
```bash
# Add the marketplace
/plugin marketplace add https://github.com/redhat-documentation/redhat-docs-agent-tools.git
# Install a plugin
/plugin install hello-world@redhat-docs-agent-tools
# Update all plugins
/plugin marketplace update redhat-docs-agent-tools
```
### Available plugins
Run `make update` to generate the plugin catalog locally, or browse the [live site](https://redhat-documentation.github.io/redhat-docs-agent-tools/).
## Documentation
The documentation site is built with [Zensical](https://zensical.org/) and auto-deployed to GitHub Pages on every merge to main.
**Live site:** https://redhat-documentation.github.io/redhat-docs-agent-tools/
### Local development
```bash
# Install zensical
python3 -m pip install zensical
# Start dev server
make serve
# Build site
make build
# Regenerate plugin docs
make update
```
## Repository structure
```
.
├── .github/workflows/ # CI: docs build + deploy on merge to main
├── .claude-plugin/ # Plugin marketplace configuration
├── docs/ # Zensical site source (Markdown)
├── plugins/ # Plugin implementations
│ ├── docs-tools/ # Documentation review, writing, and workflow tools
│ ├── hello-world/ # Reference plugin
│ └── vale-tools/ # Vale linting tools
├── scripts/ # Doc generation scripts
├── zensical.toml # Zensical site config
├── Makefile # Build automation
├── CLAUDE.md # Claude Code project config
├── CONTRIBUTING.md # Contribution guidelines
└── LICENSE # Apache-2.0
```
## Contributing
Contributions are welcome from anyone using any editor or AI coding tool. See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on creating plugins and submitting changes.
## License
Apache-2.0. See [LICENSE](LICENSE).