mirror of
https://github.com/Dvorinka/Devour.git
synced 2026-06-03 20:13:03 +00:00
34 lines
527 B
Markdown
34 lines
527 B
Markdown
# Devour
|
|
|
|
Devour is a context ingestion and management system for AI that scrapes, indexes, and serves documentation from multiple sources.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
go install github.com/yourorg/devour/cmd/devour@latest
|
|
```
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Initialize
|
|
devour init
|
|
|
|
# Scrape documentation
|
|
devour scrape https://docs.example.com
|
|
|
|
# Query indexed docs
|
|
devour query "authentication flow"
|
|
|
|
# Start MCP server
|
|
devour serve
|
|
```
|
|
|
|
## Documentation
|
|
|
|
See [README.md](README.md) for full documentation.
|
|
|
|
## License
|
|
|
|
MIT License
|