| .agents/skills | ||
| app | ||
| docs/plans | ||
| src/opengraph | ||
| static | ||
| templates | ||
| tests | ||
| .dockerignore | ||
| .gitignore | ||
| Dockerfile | ||
| Justfile | ||
| llms.txt | ||
| ogcli | ||
| opengraph.py | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
| uv.lock | ||
OpenGraph Analyzer
Install reproducibly with uv sync, then run uv run ogcli URL.
The CLI prints a colorized summary table on interactive terminals. Use
-f/--format with json, yaml, toon, or table; --color and
--no-color control color in the table output. Results and structured output
go to stdout. JSON is syntax-highlighted when color is enabled. Errors go to
stderr.
uv run ogcli https://example.com/ --format json
uv run ogcli https://example.com/ -f yaml --no-color
uv run ogcli issues https://example.com/
The web deployment entrypoint is opengraph.web:app (or uv run uvicorn opengraph.web:app --app-dir src).
app/opengraph.py is retained only as a compatibility forwarder.
Containers
The default image is registry.wayl.one/opengraph-analyzer:latest.
just dev
just build # Podman build with registry-backed layer cache
just push
just release
For Docker with Buildx, use just docker-build or just docker-release.
The recipe creates a dedicated docker-container Buildx builder when needed so
registry cache export works with standard Docker installations.
Override IMAGE and TAG when needed:
IMAGE=registry.wayl.one/opengraph-analyzer TAG=1.0.0 just release